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

13 lines
482 B
Plaintext

// this returns if anyone has bet on a rat
// if so, the race can begin
int StartingConditional()
{
// handle to module
object oMod = GetModule();
// see if someone has bet on a rat
return GetIsObjectValid(GetLocalObject(oMod, "IC_RAT_PLAYER_1"))
|| GetIsObjectValid(GetLocalObject(oMod, "IC_RAT_PLAYER_2"))
|| GetIsObjectValid(GetLocalObject(oMod, "IC_RAT_PLAYER_3"))
|| GetIsObjectValid(GetLocalObject(oMod, "IC_RAT_PLAYER_4"));
}