10 lines
161 B
Plaintext
10 lines
161 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
string sBonus = GetLocalString(OBJECT_SELF, "BONUS");
|
||
|
if (sBonus != "")
|
||
|
{
|
||
|
return TRUE;
|
||
|
}
|
||
|
return FALSE;
|
||
|
}
|