03.12.2013, 02:08
Bom gente,meu 1є tutorial vamos lб
Esse tutorial de hoje irei ensinar a como colocar em seu servidor um anti-xiter de armas
1є Vamos criar uma Forward Chamada AntiHack
2є Criaremos um SetTimer no OnGameModeInit.
3є Criaremos a Public onde terб o id das armas proibidas !
By:ScriptG
Esse tutorial de hoje irei ensinar a como colocar em seu servidor um anti-xiter de armas
1є Vamos criar uma Forward Chamada AntiHack
PHP код:
forward AntiHack(playerid);
PHP код:
SetTimer("AntiHack", 2000, 1);// Obs: Esse SetTimer Server para verificar se o player puxo alguma arma ilegal
PHP код:
public AntiHack(playerid)
{
new string[128];
new giveplayer[MAX_PLAYER_NAME];
if(IsPlayerInRangeOfPoint(playerid, 10.0, FogoX[1],FogoY[1],FogoZ[1]))
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i) && gPlayerLogged[i] == 1 && !IsPlayerNPC(i) && spawnado[i] > 0)
{
if(GetPlayerWeapon(i) == 35)// Aqui Serб o ID Da Arma
{
GetPlayerName(i, giveplayer, sizeof(giveplayer));
format(string, sizeof(string), "ANTIXITER: %s[%d] pegou alguma arma pelo ****** e foi banido automaticamente!", giveplayer,i);// Aqui a msg q serб exibida
SendClientMessageToAll(COLOR_LIGHTRED, string);
SBan(i, "Puxando Armas Pelo ******", "Automбtico");// Aqui e a parte do ban ai vocк mim pergunta porque vocк nгo usa Ban(i);? a Resposta й porque usando Ban(i); o Player Serб banido e colocado numa pasta chamada samp.ban na host ou seja se for desbanir o player terб q ir na host e usando o Sban Nгo.
}
}
}
return 1;