Quote:
Originally posted by Stefan
A more common 'error' is
NPC Code:
if (playerenters) toweapons Blabla;
That needs to be changed to
NPC Code:
if (playerenters && !isweapon) toweapons Blabla;
|
thanx stefan!
I had this problem and somebody who noticed it before me totally screwed up my npc becouse he didn't know what he was doing.