Sziasztok!
Hoztam nektek egy DB tiltó scriptet,ez annyiból áll,hogy ha egy játékos jármûvel öl meg valakit,azt a szerver banolja. Nem nagy cucc,de mégis
#include <a_samp>
#if defined FILTERSCRIPT
public OnFilterScriptInit()
{
print(\"\\n--------------------------------------\");
print(\" Anti Drive-By\");
print(\"--------------------------------------\\n\");
return 1;
}
#endif
public OnPlayerDeath(playerid, killerid, reason)
{
new playerState = GetPlayerState(killerid);
if((playerstate == PLAYER_STATE_DRIVER) || (playerstate == PLAYER_STATE_PASSENGER))
{
new string[64], pName[MAX_PLAYER_NAME];
GetPlayerName(playerid,pName,MAX_PLAYER_NAME);
format(string,sizeof string,\" %s Játékos Drive-By miatt bannolva a szerverrol!\",pName);
SendClientMessageToAll(0xAA3333AA,string);
Ban(killerid);
}
return 1;
}
LETÖLTÉSI LINK