Burgershot
  • Home
  • Members
  • Team
  • Help
  • Search
  • Register
  • Login
  • Home
  • Members
  • Help
  • Search
Burgershot SA-MP Pawn Scripting [Pawn] Car Hacking

 
  • 0 Vote(s) - 0 Average
Pawn Car Hacking
yukie
Offline

Burgershot Member
Posts: 13
Threads: 4
Joined: Sep 2020
Reputation: 0
Location: PH
#1
2020-10-02, 02:14 PM
Does anyone how to detect this kind of hack??

https://youtu.be/zbYB6rD-A0s
BoNNe
Offline

Burgershot Member
Posts: 14
Threads: 2
Joined: May 2019
Reputation: 1
Location: Bucharest
#2
2020-10-03, 09:47 PM (This post was last modified: 2020-10-04, 09:18 AM by BoNNe.)
In order for this solution to work, the cheater will need at least two vehicles for which to act the cheat.
Code:
new ac_ouvu_js[MAX_PLAYERS], ac_ouvu_vid[MAX_PLAYERS], ac_ouvu_tick[MAX_PLAYERS];
public OnPlayerConnect(playerid) {
ac_ouvu_vid[playerid]=INVALID_VEHICLE_ID;
ac_ouvu_tick[playerid]=0;
ac_ouvu_js[playerid]=0;
return 1;
}
public OnVehicleStreamIn(vehicleid, forplayerid) {
ac_ouvu_js[forplayerid]=gettime();
return 1;
}
public OnUnoccupiedVehicleUpdate(vehicleid, playerid, passenger_seat, Float:new_x, Float:new_y, Float:new_z, Float:vel_x, Float:vel_y, Float:vel_z) {
if(ac_ouvu_vid[playerid] != vehicleid && GetTickCount()-ac_ouvu_tick[playerid] > 100 && gettime()-ac_ouvu_js[playerid] > 3) Kick(playerid); //99% use troll-hack
ac_ouvu_vid[playerid]=vehicleid;
ac_ouvu_tick[playerid]=GetTickCount();
return 1;
}
My discord: BoNNe#3552
yukie
Offline

Burgershot Member
Posts: 13
Threads: 4
Joined: Sep 2020
Reputation: 0
Location: PH
#3
2020-10-04, 09:05 AM (This post was last modified: 2020-10-04, 09:07 AM by yukie.)
(2020-10-03, 09:47 PM)BoNNe Wrote: In order for this solution to work, the cheater will need at least two vehicles for which to act the cheat.
Code:
new ac_ouvu_js[MAX_PLAYERS], ac_ouvu_vid[MAX_PLAYERS], ac_ouvu_tick[MAX_PLAYERS];
public OnPlayerConnect(playerid) {
ac_ouvu_vid[playerid]=INVALID_VEHICLE_ID;
ac_ouvu_tick[playerid]=0;
ac_ouvu_js[playerid]=0;
return 1;
}
public OnVehicleStreamIn(vehicleid, forplayerid) {
ac_ouvu_js[forplayerid]=gettime();
return 1;
}
public OnUnoccupiedVehicleUpdate(vehicleid, playerid, passenger_seat, Float:new_x, Float:new_y, Float:new_z, Float:vel_x, Float:vel_y, Float:vel_z) {
if(ac_ouvu_vid[playerid] != vehicleid && GetTickCount()-ac_ouvu_tick[playerid] > 100 && server_gettime-ac_ouvu_js[playerid] > 3) Kick(playerid); //99% use troll-hack
ac_ouvu_vid[playerid]=vehicleid;
ac_ouvu_tick[playerid]=GetTickCount();
return 1;
}

There was an error and it says "Undefine symbol server_gettime"
BoNNe
Offline

Burgershot Member
Posts: 14
Threads: 2
Joined: May 2019
Reputation: 1
Location: Bucharest
#4
2020-10-04, 09:20 AM
Try now.
yukie
Offline

Burgershot Member
Posts: 13
Threads: 4
Joined: Sep 2020
Reputation: 0
Location: PH
#5
2020-10-04, 09:23 AM (This post was last modified: 2020-10-04, 09:24 AM by yukie.)
(2020-10-04, 09:20 AM)BoNNe Wrote: Try now.

Yeah Sure
yukie
Offline

Burgershot Member
Posts: 13
Threads: 4
Joined: Sep 2020
Reputation: 0
Location: PH
#6
2020-10-04, 09:29 AM
Thank man! You're life saver!!
yukie
Offline

Burgershot Member
Posts: 13
Threads: 4
Joined: Sep 2020
Reputation: 0
Location: PH
#7
2020-10-04, 09:30 AM
(2020-10-04, 09:29 AM)yukie Wrote: Thank man! You're life saver!! +REP
yukie
Offline

Burgershot Member
Posts: 13
Threads: 4
Joined: Sep 2020
Reputation: 0
Location: PH
#8
2020-10-04, 10:40 AM
(2020-10-04, 09:20 AM)BoNNe Wrote: Try now.

Sir there was a little bug.. every time I relog, i always kick with the detector even im not using the cheat how do I fix this
BoNNe
Offline

Burgershot Member
Posts: 14
Threads: 2
Joined: May 2019
Reputation: 1
Location: Bucharest
#9
2020-10-04, 09:40 PM
(2020-10-04, 10:40 AM)yukie Wrote:
(2020-10-04, 09:20 AM)BoNNe Wrote: Try now.

Sir there was a little bug.. every time I relog, i always kick with the detector even im not using the cheat how do I fix this

Be sure you did everything I told you. Inclusive "OnPlayerConnect"
yukie
Offline

Burgershot Member
Posts: 13
Threads: 4
Joined: Sep 2020
Reputation: 0
Location: PH
#10
2020-10-05, 06:37 AM
(2020-10-04, 09:40 PM)BoNNe Wrote:
(2020-10-04, 10:40 AM)yukie Wrote:
(2020-10-04, 09:20 AM)BoNNe Wrote: Try now.

Sir there was a little bug.. every time I relog, i always kick with the detector even im not using the cheat how do I fix this

Be sure you did everything I told you. Inclusive "OnPlayerConnect"

I did everything but still kicking me out of game
BoNNe
Offline

Burgershot Member
Posts: 14
Threads: 2
Joined: May 2019
Reputation: 1
Location: Bucharest
#11
2020-10-05, 06:53 PM
(2020-10-05, 06:37 AM)yukie Wrote:
(2020-10-04, 09:40 PM)BoNNe Wrote:
(2020-10-04, 10:40 AM)yukie Wrote:
(2020-10-04, 09:20 AM)BoNNe Wrote: Try now.

Sir there was a little bug.. every time I relog, i always kick with the detector even im not using the cheat how do I fix this

Be sure you did everything I told you. Inclusive "OnPlayerConnect"

I did everything but still kicking me out of game
It doesn't happen for me. I have tested many times.
My discord: BoNNe#3552
yukie
Offline

Burgershot Member
Posts: 13
Threads: 4
Joined: Sep 2020
Reputation: 0
Location: PH
#12
2020-10-08, 10:14 AM
(2020-10-05, 06:53 PM)BoNNe Wrote:
(2020-10-05, 06:37 AM)yukie Wrote:
(2020-10-04, 09:40 PM)BoNNe Wrote:
(2020-10-04, 10:40 AM)yukie Wrote:
(2020-10-04, 09:20 AM)BoNNe Wrote: Try now.

Sir there was a little bug.. every time I relog, i always kick with the detector even im not using the cheat how do I fix this

Be sure you did everything I told you. Inclusive "OnPlayerConnect"

I did everything but still kicking me out of game
It doesn't happen for me. I have tested many times.

maybe I installed it on my pc thats why I got kick everytime I join in game
hiwyn
Offline

Burgershot Member
Posts: 23
Threads: 8
Joined: Sep 2021
Reputation: 0
#13
2022-05-16, 10:18 AM
its not working, i got kicked by using this script and i don't even have the hack installed!
« Next Oldest | Next Newest »



  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Burgershot - Powered by our Community and MyBB Original Theme by Emerald

Linear Mode
Threaded Mode