[Solved]Disabling taking weapons from the groundCan I have the code so noone can pick up weapons from the ground?
Code: while(1) { curwep = self getCurrentWeapon(); if(self UseButtonPressed()) { wepchange = self getCurrentWeapon(); if(curwep != wepchange) { self DropItem( wepchange ); } } wait 0.1; }