Weird Hack... What can I do?
#1

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!
Reply
#2

Which server version is this?
Reply
#3

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.
Reply
#4

Its a cleo.
Reply
#5

My friend's server is having the same issue.
Reply
#6

@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?
Reply
#7

dude just make teleport anti cheat? no? whats the problem its existed for so long

look for tutorials
Reply
#8

I have a Anti-Teleport system. Not a Anti-Respawn all cars in one spot system lol.
Reply
#9

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.
Reply
#10

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;
}
Reply
#11

@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?
Reply
#12

That's what the hack does. They have to enter the vehicle to do that, I believe.
Reply
#13

Sounds good Skyrise. I'll try the code and see if I get that type of hacking again.

Thanks for the code
Reply
#14

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.
Reply
#15

Yep. Just one of those CLEO mods. Do what Skyrise told you to add.
Reply
#16

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 )
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)