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!

Dayz sa hive mysql database

Status
Not open for further replies.
Initiate Mage
Joined
Jul 11, 2014
Messages
1
Reaction score
0
This is an application which simulates DayZ's hive/saving system. In comparision to other implementations, mine saves the character data in a MySQL database.

GitHub repo:

https://github.com/matsuiman/DayZHive
was modified to save each separately status.

Requirements:


  • Node.js
  • wampserver

How to use:

1. extract the attachment and run the install.bat
2. configure server.js :

PHP:
 host: 'localhost', // HOSTO    user: 'root', // USER DB  password: '',// PASSWORD   database: 'dayztest' // DATABASE

and

PHP:
exports.start = function () { 
   app.listen(8081); //port that will be executed.  
   console.log('Server running on port 8081');}

(dayztest.sql ) run the database created.

configure init.sqf
dbSelectHost "http://localhost:8081/DayZServletv46/";

end.


View attachment DayzHive.rar
 

Attachments

You must be registered for see attachments list
Status
Not open for further replies.
Back
Top