NWNDS/nwnds_module/ds_hasclockmap.nss
Jaysyn904 de24f81734 Added NWN Dark Sun module contents
Added NWN Dark Sun module contents.
2021-07-12 21:24:46 -04:00

19 lines
524 B
Plaintext

//::///////////////////////////////////////////////
//:: 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;
}