HiddenTradition_PRC8/_module/nss/sc_wizteleport.nss
2024-06-20 15:47:42 -04:00

17 lines
231 B
Plaintext

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