Weird Hack... What can I do? -
jakejohnsonusa - 24.04.2013
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!
Re: Weird Hack... What can I do? -
dugi - 24.04.2013
Which server version is this?
Re: Weird Hack... What can I do? -
5 цre - 24.04.2013
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.
Re: Weird Hack... What can I do? -
ViruZz - 24.04.2013
Its a cleo.
Re: Weird Hack... What can I do? -
RiChArD_A - 24.04.2013
My friend's server is having the same issue.
Re: Weird Hack... What can I do? -
jakejohnsonusa - 24.04.2013
@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?
Re: Weird Hack... What can I do? -
mastermax7777 - 24.04.2013
dude just make teleport anti cheat? no? whats the problem its existed for so long
look for tutorials
Re: Weird Hack... What can I do? -
jakejohnsonusa - 24.04.2013
I have a Anti-Teleport system. Not a Anti-Respawn all cars in one spot system lol.
Re: Weird Hack... What can I do? -
Fredrick - 24.04.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.
Re: Weird Hack... What can I do? -
Skyrise - 24.04.2013
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;
}
Re: Weird Hack... What can I do? -
jakejohnsonusa - 24.04.2013
@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?
Re: Weird Hack... What can I do? -
Skyrise - 24.04.2013
That's what the hack does. They have to enter the vehicle to do that, I believe.
Re: Weird Hack... What can I do? -
jakejohnsonusa - 25.04.2013
Sounds good Skyrise. I'll try the code and see if I get that type of hacking again.
Thanks for the code
Re: Weird Hack... What can I do? -
Skyrise - 25.04.2013
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.
Re: Weird Hack... What can I do? -
Smxe - 26.04.2013
Yep. Just one of those CLEO mods. Do what Skyrise told you to add.
Re: Weird Hack... What can I do? -
alimash - 26.04.2013
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. SetTimer("vehHackReset", 4000, 0, "i", playerid);//Give it 4 seconds to reset. return 1; }
|
My friend it can work but sometimes had some mistakes ( tested by me )