Let's see, I've had a quite annoying problem, sometimes I can't read clientr. strings serverside, some cleintr strings are readable, and some are not.
Here's some examples of my problem:
PHP Code:
function onCreated()
echo( findplayer( "Chompy").clientr.mud_maxhp);
returns 5 (clientr.mud_maxhp is setted to 5 in player attributes)
PHP Code:
function onCreated()
echo( player.clientr.mud_maxhp);
or
PHP Code:
function onCreated()
echo( clientr.mud_maxhp);
Returns nothing...
the clientr string is setted serverside in a class..
Well, any thoughts?