19 lines
549 B
Plaintext
19 lines
549 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName ahkmobscheck
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 2/22/2009 2:12:15 PM
|
||
|
//:://////////////////////////////////////////////
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
|
||
|
// Inspect local variables
|
||
|
if (!(GetLocalInt(GetModule(), "AhkMobs") == 0))
|
||
|
return FALSE;
|
||
|
if (GetItemPossessedBy(GetPCSpeaker(), "dcq07") == OBJECT_INVALID)
|
||
|
return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|