Hi guys, ive recently made my own private server and I have a couple of questions - Well alot! but I dont want to be bugging you people with things I can find out for myself :) Ok well to the point. I have looked all over the web for a tutorial or something explaining how you can run a private server without Hamachi and I just cant stumble over anything. Secondly I would love to know how to add ingame GM commands. Thanks for your time and im very grateful for any help you can forward to me. :)
Ive just maybe found something out.. I found this code in the Client.cs
Starting to wonder if I have to edit the code in something like Visual Basic or something lol.
Ive just maybe found something out.. I found this code in the Client.cs
Now I added the "ja" command myself but it doesnt work ingame. Id love help or advice on why it wont work :) thanks.Quote:
if (Splitter[0] == "/scroll")
{
if (Splitter[1] == "pc")
MyChar.Teleport(1011, 188, 264);
if (Splitter[1] == "dc")
MyChar.Teleport(1000, 500, 650);
if (Splitter[1] == "bi")
MyChar.Teleport(1015, 723, 573);
if (Splitter[1] == "am")
MyChar.Teleport(1020, 565, 562);
if (Splitter[1] == "market")
MyChar.Teleport(1036, 198, 194);
if (Splitter[1] == "tc")
MyChar.Teleport(1002, 429, 378);
if (Splitter[1] == "ja")
MyChar.Teleport(6000, 100, 100);
}
}
Starting to wonder if I have to edit the code in something like Visual Basic or something lol.