Ok 2 more things. One big nono.
Don't do things like
Code:
if ( ! ( gf_valuefromplayer == gf_calfloatvalue ) )
instead write it like so
Code:
if( gf_valuefromplayer != gf_calfloatvalue )
It does the same thing but it's way easier to understand and not prone to be misunderstood (wich just happened to me)
Also there's no need for these extra brackets
Code:
if ( ! ( is_user_admin ( gi_playerID2 ) ) )
This also does the job
Code:
if( !is_user_admin( gi_playerID2 ))
Maybe you should have a look at the
Good programming habits thread.
http://<br />
<a href="http://forum...6481</a><br />