18 lines
275 B
Plaintext
18 lines
275 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 == "MH1" && iCamp == 3)
|
|
iResult = TRUE;
|
|
|
|
return iResult;
|
|
}
|