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