Heys guys, this is my first post.
Ive got a few tuts that you rsps owners might find helpful.
Firstly, how to make a command that tele's you to somewhere.
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 "}"
CODE
if (command.equalsIgnoreCase("command name without ::"))
{
sM("You are teleported to enter what you want");
toX = XCOORDS;
toY = YCOORDS;
}
Copy till the last "}".
Save, close, compile & run.
Test out the command and it should work.
If you get any errors, please do not hesitate to tell me.
100% created by me, not leeched.
Thank me plawks