NWNDS/nwnds_module/ds_hasclockmap.nss

19 lines
524 B
Plaintext
Raw Normal View History

//::///////////////////////////////////////////////
//:: FileName ds_hasclockmap
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 9/14/02 7:12:43 PM
//:://////////////////////////////////////////////
#include "nw_i0_tool"
int StartingConditional()
{
object oItemToTake;
oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "MapofClockworkIsle");
if(GetIsObjectValid(oItemToTake) != 0)
return TRUE;
// else
return FALSE;
}