Please check out my other thread here: [Only registered and activated users can see links. ]
Known bugs: QP cape deletes your other cape if you have one on. Read why it kicks you out. If you know how to fix, please post the fix here and I'll update my thread. Other than that, none are known.
Wipe bank method has been added in thanks to Pea2nuts. Was too lazy to do it myself.
case 5733:
if(c.playerRights == 3) {
c.getPA().handleCommands(itemId);
}
break;
In ItemClick2, under
Code:
switch (itemId) {
Add..
Code:
case 5733:
if(c.playerRights == 3) {
c.getPA().handleExtra(itemId);
}
break;
Now, they will open interfaces. For the good stuff!
In class ClickingButtons
Code:
/*
* Rotten potato shit
*/
case 9190: //Commands -> Keep me logged in
if(c.playerRights <= 1) {
c.sendMessage("You do not have sufficient permissions to do that.");
c.sendMessage("Please send a message to Anfernio telling how you received this.");
return;
} else {
c.sendMessage("Your account has not been kicked.");
c.getPA().removeAllWindows();
}
break;
case 9191: // Commands -> Kick me out
if(c.playerRights <= 1) {
c.sendMessage("You do not have sufficient permissions to do that.");
c.sendMessage("Please send a message to Anfernio telling how you received this.");
return;
} else {
if(c.playerRights > 1 && !c.inWild()) {
c.logout();
}
}
break;
case 9192: //Commands -> Never mind logging, just wipe my bank.
if(c.playerRights <= 1) {
c.sendMessage("You do not have sufficient permissions to do that.");
c.sendMessage("Please send a message to Anfernio telling how you received this.");
return;
} else {
if(c.playerRights > 1 && !c.inWild()) {
for (int i = 0; i < c.bankItems.length; i++) { // Setting bank items
c.bankItems[i] = 0;
c.bankItemsN[i] = 0;
}
c.getItems().resetBank();
c.getItems().resetItems(5064);
c.sendMessage("Your bank has been wiped!");
c.getPA().removeAllWindows();
}
}
break;
case 9193: //QP cape please!
c.sendMessage("Putting QP cape in your cape slot...");
c.getPA().removeAllWindows();
c.playerEquipment[c.playerCape] = 9813;
c.getPA().requestUpdates();
c.logout(); //If this isn't done, cape is bugged (cannot be dropped/banked/worn)
break;
case 9194: //Qp hood please!
c.sendMessage("Putting QP hood in your hood slot...");
break;
Oh lord lol thanks for the snippet wish that video was never released now
Listen children don't become this guy.
Originally Posted by Owner Spikey
Why can I attack lower level npc's in a matter of a mouse hover but for a higher level npc the only choice to attack is by right clicking option attack?
Config.java Untradeable items add the id is easier?
Undroppable item etc.
Listen children don't become this guy.
Originally Posted by Owner Spikey
Why can I attack lower level npc's in a matter of a mouse hover but for a higher level npc the only choice to attack is by right clicking option attack?