anti cheat
#1

hi everyone.

i've scripted a own anti cheat but i think its dont right working.

for example:


pawn Код:
public weaponhack()
{
if(GetPlayerWeapon(i) == 38)
{
BanEx(i, "Minigun");
return 1;
}
}
and i dont find i good anti cheat for weapon
Reply
#2

http://forum.sa-mp.com/index.php?topic=64538.0
Reply
#3

Quote:
Originally Posted by Headshot1108
hi everyone.

i've scripted a own anti cheat but i think its dont right working.

for example:


pawn Код:
public weaponhack()
{
if(GetPlayerWeapon(i) == 38)
{
BanEx(i, "Minigun");
return 1;
}
}
and i dont find i good anti cheat for weapon
Use GetPlayerWeaponData
Reply
#4

Quote:
Originally Posted by harrold
Quote:
Originally Posted by Headshot1108
hi everyone.

i've scripted a own anti cheat but i think its dont right working.

for example:


pawn Код:
public weaponhack()
{
if(GetPlayerWeapon(i) == 38)
{
BanEx(i, "Minigun");
return 1;
}
}
and i dont find i good anti cheat for weapon
Use GetPlayerWeaponData
how?
Reply
#5

Did you use a Timer to Check ?

- LJ
Reply
#6

Quote:
Originally Posted by ★ ♫ • Littlejohny • ♫ ★
Did you use a Timer to Check ?

- LJ
yes.

its work but they banned after a time all.
Reply
#7

pawn Код:
public weaponhack()
{
for(new i=0; i<MAX_PLAYERS; i++)
{
if(GetPlayerWeapon(i) == 38)
{
BanEx(i, "Minigun");
}
}
return 1;
}
- LJ
Reply
#8

Quote:
Originally Posted by ★ ♫ • Littlejohny • ♫ ★
pawn Код:
public weaponhack()
{
for(new i=0; i<MAX_PLAYERS; i++)
{
if(GetPlayerWeapon(i) == 38)
{
BanEx(i, "Minigun");
}
}
return 1;
}
- LJ
xD, i said it works, but not corectly.
for example:
it bans guys without minigun
Reply
#9

Hi,
Look here: http://forum.sa-mp.com/index.php?topic=89627.0
In my Anticheat i have Anti-Weaponcheat.

- LJ
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)