Quote:
|
Originally Posted by falco10291029
*script*
AM I right? Well I will try it.
|
You miss a ')' in the condition there.
Also:
NPC Code:
for (i=o;i<weaponscount;i++)
You have 'o' there not '0' (zero). This works, because the variable 'o' has not been set to anything, so it is zero. But if you need to use the var 'o' once, you shouldn't have it in the for loop... This will not be a problem if you don't set 'o' or you can just use zero there.