18 lines
543 B
Plaintext
18 lines
543 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName olina_getvar1
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 10/10/2003 22:16:42
|
||
|
//:://////////////////////////////////////////////
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
if(GetLocalInt(GetPCSpeaker(), "warlord_head") == 1)
|
||
|
return TRUE;
|
||
|
return FALSE;
|
||
|
// Inspect local variables
|
||
|
if(GetLocalInt(GetPCSpeaker(), "sarumseal") == 1)
|
||
|
return TRUE;
|
||
|
return FALSE;
|
||
|
}
|