[Dev/Rel] Dark Realms- 8 bit MMORP [WebSocket/HTML5/Javascript]

Do you think this game will be successfull?

  • Yes indeed

    Votes: 4 44.4%
  • No, sorry.

    Votes: 5 55.6%

  • Total voters
    9
Status
Not open for further replies.

DaLightz

See ya'll in the afterlife.
May 19, 2012
1,136
262
sppA9P9.png
Dark Realms
- By LiquidDoZe (CookieMonsta, DaLights)

Introduction-
Dark Realms is a small game I've been working on for about a good 2 weeks. It's an in-browser game that requires no flash whatsoever. It can be used on moblie deveices aswell as a home pc. This will be the development thread for it, it's the first game i've ever worked on! This is based off of an old isometirc javascript game engine called: MelonJSO. And the base comes from Mozilla's BrowserQuest.

Technologies-
  • HTML5
  • Javascript
  • WebSocket
  • Node
  • Python
Current features-
  • Login using localStorage (Temporary for now.)
  • Pathfinding
  • Health meter
  • Mobs, entities, terrain.
  • Chat and real-time connection.
  • Player count+ more!
Planned features-
  • Guilds
  • Global chat.
  • Quests
  • Secure login
  • Economy
  • Expeirience+ Level up.
Demo site(s)-
(Hosted by self.)
Want to be a beta tester and have your site listed here? Pm me!
Some code!-
PHP:
        loadSprite: function(name) {
            if(this.renderer.upscaledRendering) {
                this.spritesets[0][name] = new Sprite(name, 1);
            } else {
                this.spritesets[1][name] = new Sprite(name, 2);
                if(!this.renderer.mobile && !this.renderer.tablet) {
                    this.spritesets[2][name] = new Sprite(name, 3);
                }
            }
        },

Screenshots-
lgtc123.png

d0HV4CP.png

p608YFb.png

KFH8gAz.png

lgt55f6c.png


Credits were they are needed-

LiquidDoZe [me]
MelonJSO [Engine]
Zelda4life [Graphic]
Google [Node help]
Mozilla [Node.js help]
 

wite

Posting Freak
Aug 3, 2012
593
131
I like what you have done so far - looks very nice.

I am actually quite interested on seeing what the future is for this, though it still needs a lot more features.

Good luck. :)
 

DaLightz

See ya'll in the afterlife.
May 19, 2012
1,136
262
I like what you have done so far - looks very nice.

I am actually quite interested on seeing what the future is for this, though it still needs a lot more features.

Good luck. :)

Thanks for the feedback! 
Thanks to those who have been playing the demo! You guys have helped me track quite a few bugs.
5voJ6sb.png
 

Kaz

BooYah
Staff member
Nov 16, 2010
3,064
1,025
A game you have been developing for 2 weeks? seems legit -


p608YFb.png



Mozilla [Node.js help]
Looks identical -


To anybody else that wishes to 'make their own game' -
The source code for Mozilla's Work, which this is based off
 

ViiTactiiCZz

Member
Mar 19, 2013
35
5
A game you have been developing for 2 weeks? seems legit -



Looks identical -


To anybody else that wishes to 'make their own game' -
The source code for Mozilla's Work, which this is based off

I shall create a game called DarkScape and call it my own code :D
 

BIOS

ಠ‿ಠ
Apr 25, 2012
906
247
Looking really nice , i am going to have to try this some time.​
 

Legion

Gaming Lord
Staff member
Nov 23, 2011
1,801
669
Looking really nice , i am going to have to try this some time.​
DaLightz just took an open source and tried to name it his. I would not recommend playing his, but like Kaz says, you can use the open source at
 

BIOS

ಠ‿ಠ
Apr 25, 2012
906
247
DaLightz just took an open source and tried to name it his. I would not recommend playing his, but like Kaz says, you can use the open source at
Oh, do you know what browserd this supports?​
 

DaLightz

See ya'll in the afterlife.
May 19, 2012
1,136
262
A game you have been developing for 2 weeks? seems legit -



Looks identical -


To anybody else that wishes to 'make their own game' -
The source code for Mozilla's Work, which this is based off

That's the engine? >

And I didn't say it was from scratch:
This is based off of an old isometirc javascript game engine called: MelonJSO.

I'm only developing on to it. Not scratch :x
 

Kaz

BooYah
Staff member
Nov 16, 2010
3,064
1,025
"I have been developing a game for a good 2 weeks"

MelonJS does not look like BrowserQuest by default, the sprites/layout your using are for BrowserQuest.
What have you changed? the footer on the 'Play now screen' thats all i can see that has changed from the original
 

Find

Posting Freak
Jun 21, 2012
597
189
Dark Realms is a small game I've been developing for about a good 2 weeks. It's an in-browser game that requires no flash whatsoever. It can be used on moblie deveices aswell as a home pc. This will be the development thread for it, it's my first ever game! This is based off of an old isometirc javascript game engine called: MelonJSO.

bold parts are all the places you make out like it's your own
 

DaLightz

See ya'll in the afterlife.
May 19, 2012
1,136
262
"I have been developing a game for a good 2 weeks"

MelonJS does not look like BrowserQuest by default, the sprites/layout your using are for BrowserQuest.
What have you changed? the footer on the 'Play now screen' thats all i can see that has changed from the original

Well I didn't mean to say developing. I meant to say been working on or something similar to that :p. And No I haven't changed much, Yet. I have alot of plans for this game. And as you can see, the game hasn't been developed upon in a while:
lgtb40d.png

So I figured I'd take it into my own wing. And I did give credits to Little Workshop:
(Franck is him)
lgt9eaa.png
 
Edit: I'll add to the op
 

DaLightz

See ya'll in the afterlife.
May 19, 2012
1,136
262
This looks awesome, keep up the good work.

Hey, thanks. And I forgot to mention, I havn't really done client work yet. Just server work. As you may figure out, Browserquest don't come with a server so I made one. 

Dark Realms
Global Update 4 (gu4)

Added-
  • Copper, Iron and gold armor.
  • Finished server for Windows, aswell as Linux. (.exe / bash)
  • Chat logging and /commands.
  • Mob dificulty counter. (inCode)
Changed-
  • User storgage is no longer through localStorage.
I found out that using localSotarge to store user data wasn't really that great. It was easily cheatable as you can see here:
THm3Xka.png
 


Dark Realms
Global Update 5 (gu5)

Added-
  • XP System
  • Inventory slots.
  • Ranks / player levels.
  • FPS Meter.
  • Corrected HP Meter.
Removed-
  • localStorage methods.
  • Bosses. (for now)
  • Achievment system.
Sneak peek!
lgte01f.png
 

Magic

Posting Freak
Oct 11, 2012
1,026
196
looks alright apart from that you didn't make the original game
 

DaLightz

See ya'll in the afterlife.
May 19, 2012
1,136
262
Gave the edited source to someone for them to work on it. ( [email protected] ) I got board to so yeah.

Close thread, no longer working on this.
 
Status
Not open for further replies.

Users who are viewing this thread

Top