Anti Fake Kill?
#1

I've noticed in my server that some players make fake kill with cheats (help thier friends gain kills) , they just kill thierselves and it execute OnPlayerDeath public with the weapon of the killer.
There is any way to block it? (They do it close to their friends)
Reply
#2

This has probably something to do with your OnPlayerDeath code. We cant say anything further without the code, post it here.
Reply
#3

public OnPlayerDeath(playerid,killerid,reason)
{
SendDeathMessage(killerid,playerid,reason);
Deaths[playerid] ++;
Kills[killerid] ++;
return 1;
}

That's not about the public, They just have fake kill cheat which kills them and blame others for death.
Reply
#4

Hmm, warn/kick/ban them
Reply
#5

well, that's the solution when you have an admin,
The whole point of this is making Anti cheat which does the admin job and detects the cheater - kicks/bans him.
Reply
#6

Pseudo code:

Code:
if distance between players > x
if weapon killerid != death reason
if health playerid != 0
You can check for those things.
Reply
#7

Quote:
Originally Posted by Vince
View Post
Pseudo code:

Code:
if distance between players > x
if weapon killerid != death reason
if health playerid != 0
You can check for those things.
Already checked those
Reply
#8

I doubt you have somehow.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)