10 lines
176 B
Plaintext
10 lines
176 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
|
|
iResult = FALSE;
|
|
if (GetGold(GetPCSpeaker())>99 && GetLocalInt(GetPCSpeaker(),"MorraDocks") == 1)
|
|
iResult=TRUE;
|
|
return iResult;
|
|
}
|