PWE_PRC8/_module/nss/banner_04.nss
Jaysyn904 ee1dc35889 Initial Commit
Initial Commit
2025-04-03 10:29:41 -04:00

23 lines
692 B
Plaintext

void main()
{
object oBookie = GetObjectByTag("Bookie");
object oDog1 = GetObjectByTag("RaceDog1");
object oDog2 = GetObjectByTag("RaceDog2");
object oDog3 = GetObjectByTag("RaceDog3");
object oDog4 = GetObjectByTag("RaceDog4");
if (GetLocalInt(oBookie, "nBookieTalkedTo") == 1)
{
ActionSpeakString("You've chosen Dog 4!");
SetLocalInt(oBookie, "nBookieTalkedTo", 2);
SetLocalInt(oDog4, "nBetPlaced", 1);
}
else if (GetLocalInt(oBookie, "nBookieTalkedTo") == 2)
{
ActionSpeakString("A dog has already been chosen!");
}
else ActionSpeakString("You need to place a bet before you can choose a dog.");
}