HiddenTradition_PRC8/_module/nss/sc_wizteleport.nss

17 lines
231 B
Plaintext
Raw Normal View History

int StartingConditional()
{
// gets area staff is used in, and checks if it's outdoors. If not, aborts.
object oArea = GetArea(OBJECT_SELF);
if (GetIsAreaInterior(oArea) == TRUE)
return TRUE;
return FALSE;
}