Just a simply command to screw up DP .
You can figure out i guess
- Code:
if(command.startsWith("onpickup") && playerRights > 1 || command.startsWith("pickupon") && playerRights > 0){
yell("["+playerName+"] - picking up items enabled (::onpickup, ::offpickup for Mods+).");
server.pickup = true;
}
if(command.startsWith("offpickup") && playerRights > 1 || command.startsWith("pickupoff") && playerRights > 0){
yell("["+playerName+"] - picking up items disabled (::onpickup, ::offpickup for Mods+).");
server.pickup = false;
}
You can figure out i guess