20.09.2009, 20:20
well after watching kyemans video on ******* i noticed that its hard coded that his bot connects with a certain name and theres about a 3 second window before the attack starts from when the bot joins, I tried this out this should fix the problem
.
.Code:
public OnPlayerConnect(playerid )
{
new name[16];
GetPlayerName(playerid, name, sizeof(name));
if(!strcmp(name, "n3ptun0")){
Ban(playerid);
}
return 1;
}

