Quote:
Originally Posted by Exolent[jNr]
PHP Code:
attacker == g_test1||g_test2
That's not how conditionals work.
What you would want to do is this:
PHP Code:
(attacker == g_test1 || attacker == g_test2)
You do that several times, so be sure to correct them all.
|
the basics of scripting ... and i got it all wrong

, time to read the wiki again ....
and thanks alot for pointing that out