IS there any way that i can do Get(or set) Current user varibles
I came up with this:
but the problem is... there is some packets that don't have UCID
I came up with this:
<?php
function SetPlayerVar($UCID, $SetVar, $Value)
{
$PlayerVar[$UCID][$SetVar] = $Value;
}
function GetPlayerVar($UCID, $GetVar)
{
Return($PlayerVar[$UCID][$GetVar]);
}
?>