Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[HELP] Casino-Server

Newbie Spellweaver
Joined
Jul 29, 2013
Messages
41
Reaction score
2
hai guys,

I found a game source casino server in github,
but i do not know how to build it, i've tried from learning node.js redis and pm2, but i did not find the slightest way of building this server,
maybe from the master here can explain or rather make a tutorial to build a casino server from this source,

I am very grateful if anyone would help me patiently

Code:
https://github.com/floatinghotpot/casino-server


nb: im from indonesia and I'm not very fluent in English, so please understand if there is a mistake from me
 
Newbie Spellweaver
Joined
Mar 27, 2017
Messages
73
Reaction score
5
You didn't need to learn it's on README.md itself
[h=1]Installation[/h]
  • Installing globally and run as service with PM2:
[sudo] npm install pm2 -g
[sudo] npm install casino-server -g

# run redis-server first
redis-server &

# run as service and cluster mode
pm2 start `which casino-server` -i 0


  • Installing as a node app, and run in current folder:
git clone casino
cd casino
npm install
# sudo npm install -g gulp
# gulp build
node bin/casino-server [options]

Now you can visit , it's a web-based game client for testing and demo purpose.
# open a browser to access the test web page

open
 
Upvote 0
Back
Top