Quote:
Originally Posted by Chompy
PHP Code:
function onCreated() echo( player.clientr.mud_maxhp);
or
PHP Code:
function onCreated() echo( clientr.mud_maxhp);
|
Is it safe to assume you did these clientside?
I've come to use
PHP Code:
function onCreated()
{
temp.e = findplayer("Twinny");
temp.e.clientr.hp = temp.e.clientr.maxhp;
echo(temp.e.clientr.mudregion);
}