RATDOG/_module/nss/sc_small_hasrope.nss
Jaysyn904 2e30722043 Level One rework
Revamped Level One: North & Level One: Central to be as close to PnP as possible.  Added Level One: Latrene 3 area.  Added efreeti appearance from CEP3.  Revamped efreeti bottle to be like PnP (no wishes, yet)
2023-09-23 22:02:32 -04:00

24 lines
676 B
Plaintext

#include "prc_inc_nwscript"
int StartingConditional()
{
object oPC = GetPCSpeaker();
// Check if the PC's size is small, tiny, diminutive, or fine
int nSize = PRCGetCreatureSize(oPC);
// Check if the size is small, tiny, diminutive, or fine
if (nSize == CREATURE_SIZE_SMALL || nSize == CREATURE_SIZE_TINY ||
nSize == 20 || nSize == 21)
{
// Check if the PC has either "itm_hemp_rope001" or "itm_silk_rope001"
if (GetItemPossessedBy(oPC, "ITM_HEMP_ROPE001") != OBJECT_INVALID ||
GetItemPossessedBy(oPC, "ITM_SILK_ROPE001") != OBJECT_INVALID)
{
return TRUE;
}
}
return FALSE;
}