13 lines
306 B
Plaintext
13 lines
306 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
string sS;
|
||
|
int nV;
|
||
|
object oPC=GetPCSpeaker();
|
||
|
object oMod=GetModule();
|
||
|
string sTID=GetLocalString(oPC,"sMAI_TID");
|
||
|
sS=GetLocalString(oPC,"sMAI_VAR");
|
||
|
nV=GetLocalInt(oMod,"n"+sTID+"_"+sS);
|
||
|
SetCustomToken(86013,IntToString(nV));
|
||
|
return TRUE;
|
||
|
}
|