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