Dice-rolling challenge
-
- Posts: 141
- Joined: Sat Sep 19, 2015 15:25
- Gender: male
- Favorite Class: Trickster Rogue
- Preferred Gametype: PVP
Dice-rolling challenge
Hi,
In an alternative universe, long time ago, there was a funny web-browser game called "Sword Coast Adventures" playable in Neverwinter Gateway platform.
I would like to try to make a game on the same model (but simpler) to learn the code with a fun goal in mind (I need it to motivate me). Would anyone have any advice on the way to go ?
Sorry if it's not the good place to ask this.
In an alternative universe, long time ago, there was a funny web-browser game called "Sword Coast Adventures" playable in Neverwinter Gateway platform.
I would like to try to make a game on the same model (but simpler) to learn the code with a fun goal in mind (I need it to motivate me). Would anyone have any advice on the way to go ?
Sorry if it's not the good place to ask this.
-
- Posts: 72
- Joined: Tue Nov 10, 2015 07:27
- Favorite Class: Devoted Cleric
- Preferred Gametype: PVE
Re: Dice-rolling challenge
I'd suggest to take a look at Unity. You can make games with it and compile them to different platforms like windows or web (html5), afaik.
https://www.youtube.com/user/quill18creates
has some educating and entertaining tutorials for it, iirc even for a board game with dice rolls, so you could learn a lot there.
https://www.youtube.com/user/quill18creates
has some educating and entertaining tutorials for it, iirc even for a board game with dice rolls, so you could learn a lot there.
-
- Posts: 141
- Joined: Sat Sep 19, 2015 15:25
- Gender: male
- Favorite Class: Trickster Rogue
- Preferred Gametype: PVP
Re: Dice-rolling challenge
Thanks a lot !
-
- Posts: 1211
- Joined: Wed Jul 13, 2016 15:00
- Favorite Class: Control Wizard
- Preferred Gametype: PVE
Re: Dice-rolling challenge
I think that was Schicoff's baby. Maybe ask him.
- Mr.Linux
- Posts: 68
- Joined: Wed Nov 22, 2017 10:42
- Gender: male
- Favorite Class: Control Wizard
- Preferred Gametype: PVE
Re: Dice-rolling challenge
Scott Schicoff is the one who burnt it down. I think I have the very old source code from the game floating around here someplace. It all depends on how much time you want to invest and what program model you want to use. Unity would not be my first recommendation, since you are just looking at a simple 2D web browser based script. If you really desire to remake it, from scratch, you could just learn some Java and real basic web scripting. I will look for the original coding and see if that will assist you.
Re: Dice-rolling challenge
I'm pretty sure the original Gateway (and SCA) was set up purely in Javascript (node.js). As Mr. Linux said the source code would be a good place to start, I can sure dig it up if you like.
"This information is not official and is not supported by PWE. This content was removed from the official neverwinter forums because it provides information that is potentially false and sheds a negative light on unpublished and unknown drop rates within the game." -melodywhr
-
- Posts: 141
- Joined: Sat Sep 19, 2015 15:25
- Gender: male
- Favorite Class: Trickster Rogue
- Preferred Gametype: PVP
Re: Dice-rolling challenge
I'm open to all options.
But Javascript should be the most interesting path if possible cause i work on another project using it (an ethereum project) but not on the code side.
Original source code would be a huge help for sure !
For now i'm only a html/css/php user, but i like to learn.
But Javascript should be the most interesting path if possible cause i work on another project using it (an ethereum project) but not on the code side.
Original source code would be a huge help for sure !
For now i'm only a html/css/php user, but i like to learn.
- Mr.Linux
- Posts: 68
- Joined: Wed Nov 22, 2017 10:42
- Gender: male
- Favorite Class: Control Wizard
- Preferred Gametype: PVE
Re: Dice-rolling challenge
Sorry got busy, here is the file link: SCA - minigame This is very old version. Had I known what Cryptic had planned to do I would have tried my best get more up to date code.
In this zip file you will have folders;
Night-->Game-->SCA
This path is where a lot of the old dice tosser is held.
It is non functional, because there is too much pointing to servers, that no longer contain the data, or have no access to your account data. Poke about in there you will see most of the code files are JSPP. JSPP is an untyped, java-like scripting language designed to be embedded in applications. You can read this with any text editor.
In this zip file you will have folders;
Night-->Game-->SCA
This path is where a lot of the old dice tosser is held.
It is non functional, because there is too much pointing to servers, that no longer contain the data, or have no access to your account data. Poke about in there you will see most of the code files are JSPP. JSPP is an untyped, java-like scripting language designed to be embedded in applications. You can read this with any text editor.
-
- Posts: 141
- Joined: Sat Sep 19, 2015 15:25
- Gender: male
- Favorite Class: Trickster Rogue
- Preferred Gametype: PVP
Re: Dice-rolling challenge
Thanks a lot !