13 lines
354 B
Plaintext
13 lines
354 B
Plaintext
int StartingConditional()
|
|
{
|
|
int nV;
|
|
object oPC=GetPCSpeaker();
|
|
object oMod=GetModule();
|
|
string sTID=GetLocalString(oPC,"sMAI_TID");
|
|
int nUR=GetLocalInt(oPC,"nMAI_UR");
|
|
string sS=GetLocalString(oPC,"sMAI_VAR");
|
|
nV=GetLocalInt(oMod,"n"+sTID+"_"+sS);
|
|
if (GetLocalInt(oPC,"nMAI_UR")<36&&nV>4) return TRUE;
|
|
return FALSE;
|
|
}
|