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