First of all, search for this in client.java:
Code:
else if (command.equalsIgnoreCase("home"))
You Should see something like:
Code:
else if (command.equalsIgnoreCase("home"))
{
if(teleblock == true){
sendMessage("A magical force stops you from teleporting.");
}
else
{
teleportToX = 2899;
teleportToY = 3557;
sendMessage("You teleport to Home.");
}
}
Change the
Code:
teleportToX = 2899;
teleportToY = 3557;
To what ever you want, if you want to change the coords
And change
to the name of the command you want your tab to run on.
Next, if you are using project czar, which sounds to me like you are, find
This is the name of the tab. If you want to change the name, of the tab, thats how you do so.
Next, search
The 168 is the case it is in. If you wanted to move it to the second emote slot, then you would change 168 to 169. But you have to make sure you don't already have something in Case 169:, and if you do, delete it. THis goes for all emote slots.
Emote List:
Code:
Case 168: 1st slot
Case 169: 2nd slot
Case 162: 3rd slot
Case 164: 4th slot
Case 165: 5th slot
Case 161: 6th slot
Case 170: 7th slot
Case 171: 8th slot
Case 163: 9th slot
Case 167: 10th slot
Case 172: 11th slot
Case 166: 12th slot
If you need more, just ask.
Now, to change the names of the slots.
Open up your Texthandler if you have one, It doesn't matter if you don't.
IF YOU DON'T HAVE A TEXTHANDLER, SEARCH THIS IN CLIENT.JAVA
Search this:
Code:
p.sendFrame126("", 180);
You should see:
Code:
p.sendFrame126("", 180);
p.sendFrame126("",181);
p.sendFrame126("", 178);
p.sendFrame126("",175);
p.sendFrame126("",177);
p.sendFrame126("",185);
p.sendFrame126("",186);
p.sendFrame126("",173);
p.sendFrame126("",179);
p.sendFrame126("",187);
p.sendFrame126("",176);
p.sendFrame126("",13371);
p.sendFrame126("",13372);
p.sendFrame126("",13373);
p.sendFrame126("",13374);
p.sendFrame126("",13376);
p.sendFrame126("",13378);
p.sendFrame126("",13380);
p.sendFrame126("",13381);
p.sendFrame126("",13382);
p.sendFrame126("",11102);
p.sendFrame126("",13379 );
p.sendFrame126("",13377 );
p.sendFrame126("",13375 );
p.sendFrame126("",11103 );
p.sendFrame126("",182 );
If you are using project czar, you don't need to worry about
Code:
p.sendFrame126("", 180);
Since it is in client.java here:
You put the name of the tab you want between the
.
the
Represents the case for example. This would be case 178, so I would name it corresponding with my Case 178: in client.java.
Save, compile run, lol. Hope I helped.