21.12.2010, 09:03
Edited a bit,now i get this:
@The_Gangstas i dont have trains in my gm.
But the code dont autoban :S
BTW I tried with a speedhack,i was going more than 400 km/h and the script havent banned me lol.
pawn Код:
if(GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
{
new Float:speed;
speed = GetPlayerSpeed(playerid, false);
if(speed > 280)
{
new string[100];
new name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, sizeof(name));
format(string, 100, "%s was auto-banned for SpeedHack.", name);
SendClientMessageToAll(COLOR_RED, string);
BanLog(string);
Ban(playerid);
new str[100];
format(str,sizeof str,"0,4s was auto-banned for SpeedHack", name);
IRC_GroupSay(gGroupID, IRC_CHANNEL, str);
}
if(!IsPlayerInPlane(playerid))
{
speed = GetPlayerSpeed(playerid, true);
if(speed > 310)
{
new string[100];
new name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, sizeof(name));
format(string, 100, "%s was auto-banned for SpeedHack.", name);
SendClientMessageToAll(COLOR_RED, string);
Ban(playerid);
BanLog(string);
new str[100];
format(str,sizeof str,"0,4s was auto-banned for SpeedHack", name);
IRC_GroupSay(gGroupID, IRC_CHANNEL, str);
}
return 1;
}
}
But the code dont autoban :S
BTW I tried with a speedhack,i was going more than 400 km/h and the script havent banned me lol.