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