9 lines
248 B
Plaintext
9 lines
248 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
string sLogin = GetPCPlayerName(oPC);
|
||
|
string sSpoken = GetMatchedSubstring(0);
|
||
|
if (GetStringLowerCase(sLogin) == GetStringLowerCase(sSpoken)) return TRUE;
|
||
|
return FALSE;
|
||
|
}
|