Anyone know a way i can make my :: pickup command spawn nearly anything but a few items i would like to not be able to be spawned?
Thanks,
Nathan
Printable View
Anyone know a way i can make my :: pickup command spawn nearly anything but a few items i would like to not be able to be spawned?
Thanks,
Nathan
There's a thread and fix posted, use the search button.
send me a link cuz i cant seem to find it
Code:if (cmd[0].equals("pickup")) {
for (int i = 0; i < p.BannedItems.length; i++) {
if (Integer.parseInt(cmd[1]) == p.BannedItems[i]) {
return;
Code:public int[] BannedItems = {Ids,Ids,Ids,};