Page 1 of 1

New top down rpg

Posted: Thu Jan 28, 2016 1:01 pm
by Oroton
I created a card/board game I've been playing with friends recently and a few guys said it would be cool to play as an online game

After looking at it I thought a lot of it could be done in php with database storage saving progress.
How ever the travel system in my board game would be a lot
Smoother and cleaner in a 2d JS game.
The Samlan tutorials were great 4yrs ago but he's removed them
And I was hoping there was something newer to bridge off.


As simple as it goes the game play doesn't need to include fighting or battling monsters all it needs is
To do is.
Load a tiled sprite sheet. Or something to this effect.
Have a 2d character/actor that can move with animations
Load NPCs with simple movement/collision no need for A* movement.
Collision, load new rooms/maps.
Simple quest like "if no itemX can't walk through door."
And Ajax or something to run, small scripts updating a database or check db.I don't tend to want to update the database with every character movement but say on map change or updating db that you have located itemX
So only small queries and not every second.


I've found. Some tutorials. Which I'll link it is there and open source demos which already do this?
The Samlan ones I posted a while ago did but I couldn't get the sprite to animate.



Here are the tutorials ive briefly read

http://www.creativebloq.com/html5/build ... e-31410992


http://www.lessmilk.com/games/11/

Re: New top down rpg

Posted: Thu Jan 28, 2016 5:00 pm
by hallsofvallhalla
Use a javascript library or engine, it will make your life much easier

https://html5gameengine.com/

http://phaser.io/learn

Re: New top down rpg

Posted: Fri Jan 29, 2016 7:31 am
by Oroton
yeah the phaser tutorials are good. That is the ones i've linked

Any if there are some wireframe demo's already made?