18 lines
510 B
Plaintext
18 lines
510 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName bookie_talked_to
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 8/21/2002 1:42:14 PM
|
||
|
//:://////////////////////////////////////////////
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
|
||
|
// Inspect local variables
|
||
|
object oBookie = GetObjectByTag("Bookie");
|
||
|
if(!(GetLocalInt(oBookie, "nBookieTalkedTo") == 0))
|
||
|
return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|