9 lines
146 B
Plaintext
9 lines
146 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
int iResult;
|
||
|
int nSB = GetLocalInt(OBJECT_SELF, "SWIM_BONUS");
|
||
|
|
||
|
iResult = nSB < 4;
|
||
|
return iResult;
|
||
|
}
|