RATDOG/_module/nss/sc_chk_looted.nss
Jaysyn904 d168e90e83 Remade Dungeon Level One: Central
Remade Dungeon Level One: Central.  Added Didiamus' creature overrides.  Full compile.
2023-09-17 23:08:55 -04:00

21 lines
529 B
Plaintext

int StartingConditional()
{
object oPC = GetPCSpeaker();
object oSelf = OBJECT_SELF;
string sPlacableTag = GetTag(oSelf);
int nPlayerLooted = GetLocalInt(oPC, "PlayerLooted_" + sPlacableTag); // Unique flag for each player
int nBeenLooted1 = GetLocalInt(oSelf, "BeenLooted1_" + sPlacableTag);
// Check if the player has already attempted searching this placable
if (nPlayerLooted == 1 || nBeenLooted1 == 1)
{
return FALSE;
}
else
{
return TRUE;
}
}