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;
}