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!

[RotMG] How to setup Seraphs Dominion source (Fsv3 version by vool)

Newbie Spellweaver
Joined
Jan 27, 2016
Messages
50
Reaction score
32
First you download the source from http://forum.ragezone.com/f857/seraphs-dominion-source-fsv3-vools-1101375/#post8627471 You open the server source with visual studio then you go into Server>Server.cfg
port:8080
conn:Server=localhost;Database=rotmg;uid=root;password=botmaker //if you do not have a password leave this blank or change to your xampp password remove this text including the 2 dashes you dont have to but will be easier for you
webUrl:
svrNum:1
svr0Name:Localhost //change to your server name
svr0Adr:127.0.0.1 //insert your hamachi ip or vps ip or keep it as 127.0.0.1 which is localhost
svr0Admin:false
svr1Name:Local
svr1Adr:127.0.0.1
svr1Admin:false


Then you go into wServer>wServer.cfg
port:2769
conn:Server=localhost;Database=rotmg;uid=root;password=botmaker //if you do not have a password leave this blank or change to your xampp password remove this text including the 2 dashes you dont have to but will be easier for you
tps:10
hasRealm:True //true if you want realm or false if you dont
then rebuild the source..
Now we move onto the Client source which is also on in the download you open that with INTELLIJ then go into Com>Company>assembleegameclient>Parameters>Parameters.as you then press ctrl+f then search for :8 and it should come up as public static function _fK_():String {
if (_I_O_()) {
return ("127.0.0.1:8080"); // _I_O_() -> TRUE -- Testing Enabled
}
return ("127.0.0.1:8080"); // _I_O_() -> FALSE -- Testing Disabled
}
change 127.0.0.1 to your hamachi ip or vps ip or keep it 127.0.0.1 if you want to keep it localhost you then press ctrl+shift+alt+s together and a pop up window should come up go to the dependencies tab press new and then locate where your Flex SDK
file and it should be extracted to a folder containing only the files in the flex sdk zip archive,
the download for the adobe flex SDK file is
if this last picture is already there then you dont have to redo that one then you press the green button
at the top well done you have now made your client! now you go to the client source which is seraphs dominion public client master>Out>Production>realmclient>webmain.swf is your client!
Enjoy! be sure to leave a like and a rep if it helped you :) Comment if you are having trouble :)
 
Back
Top