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 Build

Initiate Mage
Joined
Oct 22, 2013
Messages
75
Reaction score
2
Help plz build program

 
Initiate Mage
Joined
Jul 17, 2013
Messages
90
Reaction score
18
Here you go.

If you want to do it yourself just use visual studio 2015 and set the targeted .net framework to 3.5

Right click on the project in VS -> Properties -> Application Tab -> Target Framework -> .NET Framework 3.5

Than compile it.
 

Attachments

You must be registered for see attachments list
Upvote 0
Initiate Mage
Joined
Oct 22, 2013
Messages
75
Reaction score
2
It does not work when there is an error debug mode help fix



lxtopxm - help Build - RaGEZONE Forums
 
Upvote 0
Initiate Mage
Joined
Jul 17, 2013
Messages
90
Reaction score
18
It does not work when there is an error debug mode help fix

Fine here it runs, do not ask me to do anything else with it as your original request just asked for it to be compiled.



It does not work when there is an error debug mode help fix

Just comment those lines out, all it is doing is telling it to set the default list to 0. Should have to do that to at least a few of them, after that it will run.
 

Attachments

You must be registered for see attachments list
Upvote 0
Initiate Mage
Joined
Oct 22, 2013
Messages
75
Reaction score
2
Help write configuration
xml.Load("cfg/ServerConfig.xml");
XmlNodeList serverNodeList = xml.SelectNodes("/Servers/Server");
if (null != serverNodeList)
{
foreach (XmlNode serverNode in serverNodeList)
{
string name = serverNode.SelectSingleNode("name").InnerText;
string ip = serverNode.SelectSingleNode("ip").InnerText;
string port = serverNode.SelectSingleNode("port").InnerText;
string key = serverNode.SelectSingleNode("key").InnerText;
CenterServer server = new CenterServer();
server.Name = name;
server.Ip = ip;
server.Port = port;
server.Key = key;
serverList.Add(server);
}
}


LoadMailDbCfg();
LoadDBQueryInfo();
}
 
Upvote 0
Initiate Mage
Joined
Jul 17, 2013
Messages
90
Reaction score
18
Just google how to create a XML file and you will have the layout you need to use and all you have to do is rename the elements.
 
Upvote 0
Back
Top