17 lines
231 B
Plaintext
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;
|
|
}
|