EN6_PRC8/_module/nss/en6_minstrel_f.nss
Jaysyn904 a6f6db7303 Initial commit
Initial commit.  Updated release archive.
2024-06-13 15:08:33 -04:00

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;
}