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)
This commit is contained in:
16
_module/nss/sc_isnotsmall.nss
Normal file
16
_module/nss/sc_isnotsmall.nss
Normal file
@@ -0,0 +1,16 @@
|
||||
int StartingConditional()
|
||||
{
|
||||
object oPC = GetPCSpeaker();
|
||||
|
||||
// Check if the PC's size is small, tiny, diminutive, or fine
|
||||
int nSize = GetCreatureSize(oPC);
|
||||
|
||||
// Check if the size is small, tiny, diminutive, or fine
|
||||
if (nSize == CREATURE_SIZE_SMALL || nSize == CREATURE_SIZE_TINY ||
|
||||
nSize == 20 || nSize == 21)
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
}
|
Reference in New Issue
Block a user