14 lines
259 B
Plaintext
14 lines
259 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
int iResult;
|
||
|
object oPC;
|
||
|
|
||
|
iResult = FALSE;
|
||
|
oPC = GetPCSpeaker();
|
||
|
|
||
|
if (GetLocalInt(oPC,"PCHardCorePNP") == 0 && GetLocalInt(oPC,"PCHardcore") == 0 && GetLocalInt(oPC,"PCHardCoreSpecial") == 0)
|
||
|
iResult = TRUE;
|
||
|
|
||
|
return iResult;
|
||
|
}
|