9 lines
142 B
Plaintext
9 lines
142 B
Plaintext
|
// Has five traps
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
if (GetLocalInt(OBJECT_SELF, "NO_OF_TRAPS") >= 5)
|
||
|
return TRUE;
|
||
|
|
||
|
return FALSE;
|
||
|
}
|