11 lines
183 B
Plaintext
11 lines
183 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
|
|
iResult = FALSE;
|
|
if (GetLocalInt(OBJECT_SELF,"Reward") == 2 && GetGoodEvilValue(GetPCSpeaker()) < 40)
|
|
iResult = TRUE;
|
|
|
|
return iResult;
|
|
}
|