19 lines
514 B
Plaintext
19 lines
514 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName finishedhorde
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 7/21/2002 11:33:58 PM
|
||
|
//:://////////////////////////////////////////////
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
|
||
|
// Inspect local variables
|
||
|
object oPrimaryNPC = GetObjectByTag("Henrick");
|
||
|
if(!(GetLocalInt(oPrimaryNPC, "nWarlordDead") > 0))
|
||
|
return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|
||
|
|