I am trying to make a script that wil totally
disable the players sword, but still allow
the use of their other weapons.
NPC Code:
// NPC made by Prozac
if (playerenters) {timereverywhere; timeout=.05;}
if (timeout) {
if (keydown(5))
{disabledefmovement;
setplayerprop #c,sword disabled!;
sleep 1;
enabledefmovement}
timeout=.05;
}
That makes the player not able to see their sword,
but if you are up next to a bush it still
cuts the bush down.
Any idea how to turn just the sword completely off?