jdfabs
June 25th, 2010, 17:05
how can i update map (addind gws and outrer stuff plz help :S)
tlozoot
June 25th, 2010, 18:19
I suppose your source is Delta-based so look
Basicly, we go to client.java.
Then, we press ctrl+f and find one of your commands that is already in the source. lets say.. ::master.
ctrl+f -> master
Once we are there, we should be able to see loads of commands.
Scroll up till you see the FIRST command.
This is what it should look like ;
private void customCommand(String command) {
if (command.startsWith("resetdrop")) {
ItemHandler.resetItemDrop();
yell("["+playerName+"] - turned on drops.");
}
Now, copy this and paste under the last "}"
if(command.startsWith("home")){
triggerTele(3092, 3492, 0);
sM("home sweet home");
}
okay now you see this home command change it to like this
if(command.startsWith("gwd")){//GWD=godwars dungeon(Name of command like ::gwd dont add the :: though)
triggerTele(3092, 3492, 0);// The first 3092 is X and 3492 us Y coord
sM("Welcome to Godwars Dungeon");//when you tele it'll tell you this
}
Now the triggertele 3092 3492 change that to godwars dungeon tele by going to anotehr server going to godwars and then type ::mypos and change.
Powered by vBulletin® Version 4.1.9 Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.