Alangara_PRC8/_module/nss/sk_pc_gamble_rat.nss
Jaysyn904 86feb9ca6f Initial commit
Initial commit.
2024-06-05 21:21:06 -04:00

15 lines
529 B
Plaintext

// this checks if the player has bet on any rats
// we only allow them to bet on one rat
int StartingConditional()
{
// handle to the pc
object oPC = GetPCSpeaker();
// handle to the module
object oMod = GetModule();
// now check if any rats relates to the player
return GetLocalObject(oMod, "IC_RAT_PLAYER_1") == oPC
|| GetLocalObject(oMod, "IC_RAT_PLAYER_2") == oPC
|| GetLocalObject(oMod, "IC_RAT_PLAYER_3") == oPC
|| GetLocalObject(oMod, "IC_RAT_PLAYER_4") == oPC;
}