14 lines
204 B
Plaintext
14 lines
204 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
int iResult;
|
||
|
string sMob;
|
||
|
|
||
|
sMob=GetLocalString(OBJECT_SELF,"Mob");
|
||
|
if (sMob == "")
|
||
|
sMob = "strange creature";
|
||
|
SetCustomToken(100,sMob);
|
||
|
|
||
|
iResult = FALSE;
|
||
|
return iResult;
|
||
|
}
|