Posts: 854
Threads: 154
Joined: Jun 2012
Reputation:
0
Ok so today and yesterday my server has been hacked by someone(s) with some type of hack I've never seen...
It made all the cars respawn in weird places all over the place (they fell from the sky/respawned everwhere)...
(Most of them by LS Pershing Square City Hall, not that it matters).
So....
1.) Has anyone ever seen/heard of this?
2.) Does anyone know a code that can be added into my Anti-cheat system for this?
Thanks in advance guys!
Posts: 2,350
Threads: 96
Joined: Jun 2007
Reputation:
0
Which server version is this?
Posts: 9
Threads: 2
Joined: Mar 2009
Reputation:
0
yes many hacks has this function, not gonna mention which ones but they can teleport all the vehicles to one place to make the server lag. if there is any anti cheat for this i doubt it but my knowledge of scripting is not that great so i might be wrong.
Posts: 320
Threads: 16
Joined: Feb 2012
Posts: 683
Threads: 104
Joined: Jul 2012
Reputation:
0
My friend's server is having the same issue.
Posts: 854
Threads: 154
Joined: Jun 2012
Reputation:
0
@dugi is 0.3x
Please note that reference to the hack tool "******" was made (found in server logs just now).
So there is no fix for this?
Posts: 381
Threads: 12
Joined: Oct 2012
Reputation:
0
dude just make teleport anti cheat? no? whats the problem its existed for so long
look for tutorials
Posts: 854
Threads: 154
Joined: Jun 2012
Reputation:
0
I have a Anti-Teleport system. Not a Anti-Respawn all cars in one spot system lol.
Posts: 201
Threads: 16
Joined: Mar 2013
Already a Hack

its only just turned to 0.3x hmm there should do something to stop them Gay hacking making servers even worse i dont even agree with admins using them kind of hacks for the fact its shit. just make a anit cheat for now hopfuly this should stop and i will laff at every single hacker.
Posts: 145
Threads: 6
Joined: Jun 2012
Try this.
pawn Код:
new vehTimer[MAX_PLAYERS]; // wherever you put them (usually at the top)
forward vehHackReset(playerid);// The timer.
public vehHackReset(playerid) {
vehTimer[playerid] = 0;
return 1;
}
public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
{
if(vehTimer[playerid] == 1) { // If it equals 1, then this will kick them.
Kick(playerid);
}
vehTimer = 1;// Set it.
SetTimer("vehHackReset", 4000, 0, "i", playerid);//Give it 4 seconds to reset.
return 1;
}
Posts: 854
Threads: 154
Joined: Jun 2012
Reputation:
0
@Skyrise But when I someone do it on my server they never entered a car or attempted to... I don't see how this would help it, can you explain it please (it looks like this just kicks a player who spams entering cars)... Or are you saying that the hack they're using is hacking into the OnPlayerEnterVehicle function?
Posts: 145
Threads: 6
Joined: Jun 2012
That's what the hack does. They have to enter the vehicle to do that, I believe.
Posts: 145
Threads: 6
Joined: Jun 2012
Quote:
Originally Posted by Skyrise
Try this.
pawn Код:
new vehTimer[MAX_PLAYERS]; // wherever you put them (usually at the top)
forward vehHackReset(playerid);// The timer. public vehHackReset(playerid) { vehTimer[playerid] = 0; return 1; }
public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger) { if(vehTimer[playerid] == 1) { // If it equals 1, then this will kick them. Kick(playerid); } vehTimer = 1;// Set it. SetTimerEx("vehHackReset", 4000, 0, "i", playerid);//Give it 4 seconds to reset. return 1; }
|
I didn't notice, but it is SetTimerEx. Sorry for that.
Posts: 50
Threads: 7
Joined: Apr 2012
Reputation:
0
Yep. Just one of those CLEO mods. Do what Skyrise told you to add.