Jaysyn904 ee1dc35889 Initial Commit
Initial Commit
2025-04-03 10:29:41 -04:00

11 lines
198 B
Plaintext

int StartingConditional()
{
// Inspect local variables
object oDog1 = GetObjectByTag("RaceDog1");
if(!(GetLocalInt(oDog1, "nBetPlaced") == 1))
return FALSE;
return TRUE;
}