18 lines
261 B
Plaintext
18 lines
261 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC;
|
||
|
int iCamp;
|
||
|
int iResult;
|
||
|
string sZone;
|
||
|
|
||
|
oPC = GetPCSpeaker();
|
||
|
iCamp = GetLocalInt(oPC,"QuestCamp");
|
||
|
sZone = GetLocalString(oPC,"QuestCampzone");
|
||
|
|
||
|
iResult = FALSE;
|
||
|
if (sZone == "MHC")
|
||
|
iResult = TRUE;
|
||
|
|
||
|
return iResult;
|
||
|
}
|