How do you write a variable like if in one function you had %client.hello and then in abother you needed to use that again but you didnt have %client in the Arguments. Example:
function serverCmdblah(%client){
%client.blah = 1;
}
datablock TriggerData(Blah){
tickPeriodMS = 100;
};
function Blah::onEnterTrigger(%this, %trigger, %obj){
if(//%client.blah?????????){}
}