REO-EE/_module/nss/welcomeconfirm3.nss
Jaysyn904 f82740bbbd Initial commit
Initial commit
2024-02-22 13:22:03 -05:00

19 lines
305 B
Plaintext

int StartingConditional()
{
object oPC = GetPCSpeaker();
object oNPC = OBJECT_SELF;
object oItem = GetItemPossessedBy(oPC, "database001");
//if (GetCampaignInt("REOnline_PC_Database", "NewPlayerConfirm1) == 1)
if (GetLocalInt(oItem, "NewPlayerConfirm1") != 1)
{
return FALSE;
}
else
{
return TRUE;
}
}