27.10.2010, 21:20
(
Последний раз редактировалось randomkid88; 27.10.2010 в 22:15.
Причина: Corrected Name
)
This really depends on how smart the guy/girl is, but you could have the server automatically kick the person by name. It appears he always comes in with "Unknown" in his name, so you could just try this under OnPlayerConnect:
pawn Код:
public OnPlayerConnect(playerid)
{
new Name[24];
GetPlayerName(playerid, Name, sizeof(Name));
if(strfind(Name, "Unknow", true) != -1)
{
Kick(playerid); // could also be replaced with Ban(playerid)
}
// rest of GM code
}