@Doodle313; I used Endeavour trainer in online and now my inventory is with 1.000.000 snacks, eCola, cigarrets and armour... Could you make a script to reset these values? Because the max is 10, and 1million is most like "huh u did not cheat, right?"
DetectedComplete script to clear all cheating reports, bad behavior etc
The script should work, it works for me and I have no issues with it.
Even the ones with the incorrect perfix don't matter as the ones with the correct perfix are there and are being executed.
I honestly don't know why it's not working for you, the other guy that said that the perfix is incorrect didn't provide a fix so I have no idea what's wrong.
Some guy on a different forum released a proper script, it will eventually find itself here so you have nothing to worry about.
- - - Updated - - -
Also you're very wrong, there are perfectly valid scripts out there like therealMVP that use the MP perfix before MPPLY and work flawlessly
here's an example
so honestly I don't know what you're talking about.
Even the ones with the incorrect perfix don't matter as the ones with the correct perfix are there and are being executed.
I honestly don't know why it's not working for you, the other guy that said that the perfix is incorrect didn't provide a fix so I have no idea what's wrong.
Some guy on a different forum released a proper script, it will eventually find itself here so you have nothing to worry about.
- - - Updated - - -
Also you're very wrong, there are perfectly valid scripts out there like therealMVP that use the MP perfix before MPPLY and work flawlessly
here's an example
Code:
natives.STATS.STAT_SET_INT(natives.GAMEPLAY.GET_HASH_KEY("MP0_MPPLY_TENNIS_MATCHES_WON"), 2, true)
natives.STATS.STAT_SET_INT(natives.GAMEPLAY.GET_HASH_KEY("MP0_MPPLY_TOTAL_TDEATHMATCH_WON"), 63, true)
natives.STATS.STAT_SET_INT(natives.GAMEPLAY.GET_HASH_KEY("MP0_MPPLY_TOTAL_RACES_WON"), 101, true)
natives.STATS.STAT_SET_INT(natives.GAMEPLAY.GET_HASH_KEY("MP0_MPPLY_TOTAL_DEATHMATCH_LOST"), 23, true)
natives.STATS.STAT_SET_INT(natives.GAMEPLAY.GET_HASH_KEY("MP0_MPPLY_TOTAL_RACES_LOST"), 36, true)
well this one don't lol check the thread i made
#77 · edited ·
Code:
local clear = {}
function clear.unload()
print("Clearing Stats")
end
function clear.tick()
local playerPed = PLAYER.PLAYER_PED_ID()
local player = PLAYER.GET_PLAYER_PED(playerPed)
local playerExists = ENTITY.DOES_ENTITY_EXIST(playerPed)
if(playerExists) then
if(get_key_pressed(110)) then
print("Clearing Stats")
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("BADSPORT_NUMDAYS_1ST_OFFENCE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("BADSPORT_NUMDAYS_2ND_OFFENCE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("BADSPORT_NUMDAYS_3RD_OFFENCE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("BADSPORT_NUMDAYS_4TH_OFFENCE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("BADSPORT_NUMDAYS_5TH_OFFENCE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("BADSPORT_NUMDAYS_6TH_OFFENCE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("BADSPORT_NUMDAYS_7TH_OFFENCE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("BADSPORT_NUMDAYS_8TH_OFFENCE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("BADSPORT_NUMDAYS_9TH_OFFENCE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("BADSPORT_NUMDAYS_10TH_OFFENCE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP0_BADSPORT_NUMDAYS_1ST_OFFENCE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP0_BADSPORT_NUMDAYS_2ND_OFFENCE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP0_BADSPORT_NUMDAYS_3RD_OFFENCE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP0_BADSPORT_NUMDAYS_4TH_OFFENCE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP0_BADSPORT_NUMDAYS_5TH_OFFENCE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP0_BADSPORT_NUMDAYS_6TH_OFFENCE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP0_BADSPORT_NUMDAYS_7TH_OFFENCE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP0_BADSPORT_NUMDAYS_8TH_OFFENCE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP0_BADSPORT_NUMDAYS_9TH_OFFENCE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP0_BADSPORT_NUMDAYS_10TH_OFFENCE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP1_BADSPORT_NUMDAYS_1ST_OFFENCE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP1_BADSPORT_NUMDAYS_2ND_OFFENCE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP1_BADSPORT_NUMDAYS_3RD_OFFENCE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP1_BADSPORT_NUMDAYS_4TH_OFFENCE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP1_BADSPORT_NUMDAYS_5TH_OFFENCE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP1_BADSPORT_NUMDAYS_6TH_OFFENCE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP1_BADSPORT_NUMDAYS_7TH_OFFENCE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP1_BADSPORT_NUMDAYS_8TH_OFFENCE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP1_BADSPORT_NUMDAYS_9TH_OFFENCE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP1_BADSPORT_NUMDAYS_10TH_OFFENCE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP2_BADSPORT_NUMDAYS_1ST_OFFENCE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP2_BADSPORT_NUMDAYS_2ND_OFFENCE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP2_BADSPORT_NUMDAYS_3RD_OFFENCE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP2_BADSPORT_NUMDAYS_4TH_OFFENCE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP2_BADSPORT_NUMDAYS_5TH_OFFENCE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP2_BADSPORT_NUMDAYS_6TH_OFFENCE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP2_BADSPORT_NUMDAYS_7TH_OFFENCE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP2_BADSPORT_NUMDAYS_8TH_OFFENCE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP2_BADSPORT_NUMDAYS_9TH_OFFENCE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP2_BADSPORT_NUMDAYS_10TH_OFFENCE"), 0, true)
STATS.STAT_SET_FLOAT(GAMEPLAY.GET_HASH_KEY("BADSPORT_RESET_MINUTES"), 1.0, true)
STATS.STAT_SET_FLOAT(GAMEPLAY.GET_HASH_KEY("MP0_BADSPORT_RESET_MINUTES"), 1.0, true)
STATS.STAT_SET_FLOAT(GAMEPLAY.GET_HASH_KEY("MP1_BADSPORT_RESET_MINUTES"), 1.0, true)
STATS.STAT_SET_FLOAT(GAMEPLAY.GET_HASH_KEY("MP2_BADSPORT_RESET_MINUTES"), 1.0, true)
STATS.STAT_SET_FLOAT(GAMEPLAY.GET_HASH_KEY("MP0_MPPLY_OVERALL_BADSPORT"), 0, true)
STATS.STAT_SET_BOOL(GAMEPLAY.GET_HASH_KEY("MP0_MPPLY_CHAR_IS_BADSPORT"), false, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP0_MPPLY_BECAME_BADSPORT_NUM"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP0_BAD_SPORT_BITSET"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP0_CHEAT_BITSET"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP0_MPPLY_REPORT_STRENGTH"), 32, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP0_MPPLY_COMMEND_STRENGTH"), 100, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP0_MPPLY_FRIENDLY"), 100, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP0_MPPLY_HELPFUL"), 100, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP0_MPPLY_GRIEFING"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP0_MPPLY_OFFENSIVE_LANGUAGE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP0_MPPLY_OFFENSIVE_UGC"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP0_MPPLY_VC_HATE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP0_MPPLY_GAME_EXPLOITS"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP0_MPPLY_ISPUNISHED"), 0, true)
STATS.STAT_SET_FLOAT(GAMEPLAY.GET_HASH_KEY("MP1_MPPLY_OVERALL_BADSPORT"), 0, true)
STATS.STAT_SET_BOOL(GAMEPLAY.GET_HASH_KEY("MP1_MPPLY_CHAR_IS_BADSPORT"), false, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP1_MPPLY_BECAME_BADSPORT_NUM"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP1_BAD_SPORT_BITSET"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP1_CHEAT_BITSET"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP1_MPPLY_REPORT_STRENGTH"), 32, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP1_MPPLY_COMMEND_STRENGTH"), 100, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP1_MPPLY_FRIENDLY"), 100, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP1_MPPLY_HELPFUL"), 100, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP1_MPPLY_GRIEFING"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP1_MPPLY_OFFENSIVE_LANGUAGE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP1_MPPLY_OFFENSIVE_UGC"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP1_MPPLY_VC_HATE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP1_MPPLY_GAME_EXPLOITS"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP1_MPPLY_ISPUNISHED"), 0, true)
STATS.STAT_SET_FLOAT(GAMEPLAY.GET_HASH_KEY("MP2_MPPLY_OVERALL_BADSPORT"), 0, true)
STATS.STAT_SET_BOOL(GAMEPLAY.GET_HASH_KEY("MP2_MPPLY_CHAR_IS_BADSPORT"), false, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP2_MPPLY_BECAME_BADSPORT_NUM"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP2_BAD_SPORT_BITSET"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP2_CHEAT_BITSET"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP2_MPPLY_REPORT_STRENGTH"), 32, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP2_MPPLY_COMMEND_STRENGTH"), 100, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP2_MPPLY_FRIENDLY"), 100, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP2_MPPLY_HELPFUL"), 100, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP2_MPPLY_GRIEFING"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP2_MPPLY_OFFENSIVE_LANGUAGE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP2_MPPLY_OFFENSIVE_UGC"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP2_MPPLY_VC_HATE"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP2_MPPLY_GAME_EXPLOITS"), 0, true)
STATS.STAT_SET_INT(GAMEPLAY.GET_HASH_KEY("MP2_MPPLY_ISPUNISHED"), 0, true)
end
end
end
return clear
To use this script you will also need the lua plugin by headscript which can be found here http://www.mpgh.net/forum/showthread.php?t=949773
If you found yourself in a cheating or bad player lobby, activate this script and wait a couple of minutes (might take 10+ minutes), it should put you in a normal lobby.
if you don't know how to use notepad and change the extension, here is the script itself which you can just put in the scripts folder that came with the lua plugin.
Virus scan: https://www.virustotal.com/en/file/b...is/1430214511/
#78 ·
#79 ·
If there is already a link to download this, disregard this reply. However if there isn't a link to download this, then mind linking it to me? (And I mean the version you edited)
#80 ·
Thanks for this! 

#81 ·
It looks good
#82 ·
Very bad toturial. Can somebody pls explain step by step , sorry for being a noob but to me this is very unclear. thx in advance
#83 ·
doesnt work for me and i tried everything
no console comes up nothing
no console comes up nothing

#84 ·
nope didnt work
#85 ·
Where do I have to put this script? In a seperate .lua file?
#86 ·
doesnt work for me to
#87 ·
how to get rid of that "abcd" thing on the left upper corner?
#88 ·
Delete every .lua scripts not related to this mod in your root folder/scripts/addins
#90 ·
could this be used as a preventative to being banned, clear reports and such, or only working when the ban is already been issued.
#89 · edited ·
This thread is closed for replies.
Similar Threads
Call of Duty Modern Warfare 2 Private ServersThe Cheat Report (complete)
Fleur 12 CrossFire Mods & Rez ModdingCOMPLETE No reload/Rapidfire [all guns]
J0shin707 225 Battlefield Heroes HacksUpdate incoming! Turn off all cheats!
Bizon_xD 18 WarRock - International Hacksall cheat engines gone
bdrid007 11 Combat Arms Hacks & CheatsHow do I clear all hacks from CA?
XxDrazzoXxZ 11
Tags for this Thread
None

