Well after reading his tutorial it had come to my attention that many people won't understand how to add a 'construction' area so allow me.
First open up client.java and add this command anywhere underneath and existing command
if (command.startsWith("construction") && playerLevel[11] > 0){ //need at least 0 firemaking, you can change this if you want.
triggerTele(2069, 3221, 0);
} else {
("You need a firemaking level of 0 to teleport there!");
}
}Then, search for:
public boolean pickUpItem(int item, int amount) {
Now replace his boolean for construction area with this:
public boolean inConstruction() {
if(absX >= 2048 && 2108 <= 3250 && absY >= 3136 && absY <= 3263)
return true;
else
return false;
}If your XCoord is between 2048 and 2108 and your YCoord is between 3136 and 3263 you can build objects, if it's not, you can't! That's what the command is for! Have fun! :) If you get 100 errors adding the command, remove one of the braces. I've typed this by hand so it probably fails
