Page 1 of 6 123 ... LastLast
Results 1 to 15 of 76
  1. #1
    MikeRohsoft's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Los Santos
    Posts
    797
    Reputation
    593
    Thanks
    26,314

    GTA V Trainer [Godmode, Unlimited RP + Money, Change other Tuneables, Teleport]

    Mikes GTA H4x

    THERE IS ONLY A SC VERSION 1.33 pointermap INSIDE. SO ATM IT ONLY WORKS WITH SC VERSION.

    This Program may be not working if you have Mods running or a maniplulated GTA5.exe (like cracked)
    The Reason is, the Programm won't inject any Code into the GTA Process for Security Reasons.
    --- CHANGES ---
    - Teleport work with Car
    - Godmode will stop on unlock and set the Life to the right Value
    - Added Wanted Level
    - Removed Stamina (with Godmode, this is useless ^^)
    - Added Dynamic Pointer Reading Function for fast updates by "pointermap.txt"
    - Replaced Unlock Seasson Stuff with "Load Tuneables" which can Load costumize Tuneables "tuneables.txt"
    -------------
    It reads Process Memory and can Re-Write the Values.
    It doesn't move Functions or allocate Process Memory for this stuff.

    Life - Lock: Godmode
    RP Multiplier: Set it to 10000, kill a Gang or go Survival, be Level Awesome.
    Race Cash Multiplier, Imprumpto Race Cash Multiplier: does what they named for too
    Load Tuneables: Unlocks nearly all Seasson Content with 1 Click (Christmas, Halloween, Valentines, Low Rider Event, Movie Event) or your own setted Values

    Teleport:
    It works, NOW WITH Car, but only to fixed Points.
    Under "Player Position" you can find your current Player Position. (really ?!? )
    With "Save" you can give it a Name and Choose it from DropDown Menu.
    The Programm will create a "positions.txt" for this.
    There you can Delete wrong Values manually.
    The Programm will only load the Values on Startup and save them to the File on Close.
    The Coords are ; "SEMICOLON" Seperated Values: X: 2066,21 Y: 4698,14 Z: 41,00 = 2066,21;4698,14;41,00

    You can also insert this Seperated Coords String in the "ComboBox" beside of Teleport from where u choose your "Named Coords" and Click "Teleport"

    You can also Teleport from the Commandline if the Programm is already running:
    MGTAH4x.exe "save coords as" Terminal
    MGTAH4x.exe teleport Terminal
    MGTAH4x.exe savecoordsas "Terminal 1"
    MGTAH4x.exe teleport "Terminal 1"
    MGTAH4x.exe teleport 2066,21;4698,14;41,00
    MGTAH4x.exe teleport 2066,21;4698,14;41,00 savecoordsas "Blair Country"

    You see, if you want using White Spaces, you have to write the String inside of "".

    NO CODE (like CE) or DLL (like Scripthook) INJECTION, just Read and Write Process Memory Functions from the Windows API.
    This is the most safest Way to be undetected, but well, the most reason People gonna ban, is the Report of other Players, so be carefully.
    You do it at your own Risk.

    PointerConfig HowTo:

     
    Example Player Coords To Teleport:

    PLAYER_POSITION = BASEADDRESS + 0x02271C10 + 0x1B8
    PLAYER_X = (PLAYER_POSITION + 0x50)
    PLAYER_Y = (PLAYER_POSITION + 0x54)
    PLAYER_Z = (PLAYER_POSITION + 0x58)

    Whats Happend:
    we declared a new not Required Value for our faster Mapping named "PLAYER_POSITION"
    this points to -> BASEADDRESS + 02271C10 + 1B8
    The First Value will be set, all after one will be Read, one by one.
    So in this Case the Interpreter will Read BASEADDRESS + 02271C10 (BASEADDRESS is declared by the Programm already, in CE its "GTA5.exe")
    After this, it will reading the Result of the first Read + Offset 1B8

    in the next step we declared a REQUIRED Value PLAYER_X there is only a Addition of Result of PLAYER_POSITION + 50 (Hexar Decimal)
    The Programm will read this Pointer as Float Value.

    Now i explained already the whole syntax, but let me do explain on example of WANTED_LEVEL too:
    WANTED_LEVEL = BASEADDRESS + 0x022E0C80 + (0x540 + 0x98)
    In the Frist Step it will Replace BASEADDRESS with the "GTA5.exe" GameProcess Pointer
    In the Second Step it will Read the Result of BASEADDRESS + 022E0C80
    In the Third Step it will just add 540 + 98, very good for lazy ppl xD
    In the Fourthed step it will just add the Result of Pointer Reading (BASEADDRESS + 0x022E0C80) and add Result of 540 + 98 to it.
    You could write this too:
    WANTED_LEVEL_FIRST = BASEADDRESS + $022E0C80
    WANTED_LEVEL_OFFSET = (0x540 + $98)
    WANTED_LEVEL = WANTED_LEVEL_FIRST + WANTED_LEVEL_OFFSET

    But we need the first only one times (but PLAYER_POSITION used more Times), so it makes more sense to interpret only 1 line
    Info:
    11 = INTEGER
    0xA = HEXDECIMAL
    $A = HEXDECIMAL
    char = error
    YOU CAN ONLY ADD VALUES ^^

    if u want just Add one Value to the pre Result without Reading, you can use this 2 ways:
    PLAYER_CAR_X = BASEADDRESS + 0x1E9BE58 + 0x30 + (0x50)
    PLAYER_CAR_Y = BASEADDRESS + 0x1E9BE58 + 0x30 + #0x54

    PLAYER_CAR_Z = BASEADDRESS + 0x1E9BE58 + 0x30 + #$58

    Handled Values (and reserved Keynames):
    PLAYER_POSITION
    PLAYER_X
    PLAYER_Y
    PLAYER_Z
    PLAYER_CAR_POSITION
    PLAYER_CAR_X
    PLAYER_CAR_Y
    PLAYER_CAR_Z
    PLAYER_HEALTH
    PLAYER_MAXHEALTH
    WANTED_LEVEL
    TUNEABLES
    TT_RACE_MAXCASH
    TT_RACE_EXPENSES_MULTIPLIER
    TT_RP_MULTIPLIER

    Set Tuneables:
    Set Tuneables is the old "Unlock Seasson Stuff"
    It will load a "tuneables.txt" if TUNEABLES is set in pointermap.txt
    The Interpreter Except this Syntax:
    [Any Comment, but if comment, make a space/tabulator] 0x0FF537 = [0|1|\d,\df]
    MY_COMMENT_FOR_THIS_TUNEABLE_OFFSET OFFSET = VALUE
    ENABLE_INDEPENDENCE_PACK 0xc118 = 1
    if u need float:
    DEACTIVATE_CLOTHING_INDEPENDENCEDAY_GROUP 0xc190 = 0,0f

    Sorry for my English

    ATM i have no Time to work on new functions, but i can hold the few Pointers fresh i think, so i will Repost only the "pointermap.txt" for updates.
    Thx for using.
    I still can't post Links, so Download, Screenshot and Virusscans are Attached.
    Attached Thumbnails Attached Thumbnails
    Screenshot.PNG  

    <b>Downloadable Files</b> Downloadable Files

  2. The Following 860 Users Say Thank You to MikeRohsoft For This Useful Post:

    $leepy (04-16-2016),.Moersy (05-28-2016),1260 (05-15-2016),2bphillip (05-29-2016),3l00DStrike (03-31-2016),72grams (05-04-2016),839741056 (05-02-2016),A Wild Ghost (05-23-2016),a736225543 (04-04-2016),a9722007 (03-23-2016),Aaron6780 (04-04-2016),AaronTYZ (05-18-2016),abn233 (04-01-2016),Abuata (04-16-2016),accs4u (05-20-2016),acer85 (04-10-2016),AceRage (03-27-2016),Adam8686 (04-13-2016),AdamHugh (05-01-2016),afladd (04-10-2016),ahkel (03-26-2016),aixexaki (04-02-2016),aixsw77 (04-03-2016),Ajbotacik (04-17-2016),alandsamuel (06-04-2016),alaskary78 (04-03-2016),AldenRay (06-03-2016),Alexanderhalo (04-01-2016),alexrudead (04-02-2016),alexxxsincity (03-24-2016),alifuat012 (04-02-2016),Allpakas (05-14-2016),amizaelxd (04-05-2016),AnalSalad (04-19-2016),andiplaysyt (04-27-2016),andreasahj1 (06-04-2016),andreileu (05-20-2016),andrelol (06-05-2016),Andrz3j (10-17-2016),AndyNan360 (03-31-2016),Angelft15 (04-25-2016),AngeloLeFou (05-15-2016),AnimusAstralis (04-28-2016),ankush8800 (05-07-2016),AnonOZ (05-02-2016),ANONYMOUSXDXS (04-12-2016),anoyo (04-18-2016),ansonchan09 (04-01-2016),ArqueHacks (05-19-2016),arrisma2002 (04-15-2016),Ary Neto (06-03-2016),Arykoo (03-31-2016),asdawdasdzxczdzsd (05-24-2016),asderde (05-28-2016),athenapvp (03-27-2016),atifiscool (06-05-2016),ATimZZ (06-03-2016),AtomAnt123 (06-05-2016),attemis (03-29-2016),avatar7100 (04-01-2016),Aviatorkskylark (03-30-2016),aymanof111 (05-30-2016),azizsala (03-24-2016),B.Law (03-25-2016),babamrb711 (05-17-2016),ballack99 (04-17-2016),bamg (04-22-2016),barados (03-30-2016),barticom (04-02-2016),BatmanSucks (04-04-2016),BDBMort (04-05-2016),beach king (04-12-2016),Benikehh (04-04-2016),BiP Jaden (06-05-2016),birat (05-24-2016),bitzer (04-01-2016),Bl4ckRange23 (05-17-2016),blablalada (05-23-2016),black ops 3 (05-30-2016),Blacky40 (03-23-2016),blaike3k3k3k (04-01-2016),Blankeh (04-05-2016),bldzor (04-06-2016),bled34 (03-25-2016),Bllcd (03-31-2016),BlueAG (06-02-2016),bob56312 (03-23-2016),bobdeen (04-04-2016),bombpolice (03-25-2016),boobesyum (05-05-2016),br00mstick (12-11-2016),bradley1612 (04-28-2016),Brajen (04-21-2016),bravestar19200 (05-31-2016),bruntzy (04-14-2016),bryantliem (04-18-2016),Bug (04-17-2016),BumbleAir (03-24-2016),Burkilili (05-23-2016),BurningxSH0CKZ (05-20-2016),BybysKiausai (03-30-2016),CaDerp (06-03-2016),callanhr (06-03-2016),CallMeDanger7 (04-15-2016),calvinlee98 (06-03-2016),Camsden (03-26-2016),cankaya36 (04-03-2016),CaptainHammer (04-01-2016),Cardiss (04-04-2016),casanova32 (04-29-2016),casualhacker2 (05-26-2016),Ceelker (04-28-2016),cezo (04-02-2016),CG senpai (03-30-2016),chase121590 (03-23-2016),chekarafi123 (04-04-2016),chibihuynh (04-03-2016),Chronorise (04-01-2016),CityBrah (06-03-2016),CleveGerl (05-13-2016),Cloveek (05-31-2016),cohnstudio (04-16-2016),ColdSiemens (07-19-2016),collmen7 (06-04-2016),Congoow (03-29-2016),cooldoroco (04-29-2016),coolwei1 (04-05-2016),corrosivedagger (05-02-2016),craftermustafa00 (04-29-2016),CraftMaster2003 (05-15-2016),CRX121 (03-23-2016),Crystalian1 (03-22-2016),cshaden (04-15-2016),Cukromocz (06-05-2016),Cyph3R213 (06-04-2016),Cyptz (03-26-2016),D3RBLACKBOX (03-24-2016),d3x7a69 (04-04-2016),Dama (04-11-2016),damiannes (10-09-2016),Damnedina (04-08-2016),DancingJesus (05-02-2016),danieltus (04-27-2016),danishboy123 (05-17-2016),danutzy19932 (09-08-2016),darexPP (06-02-2016),DarkForceX (05-14-2016),darksorcererdvv (05-12-2016),darthwader01 (05-07-2016),dartwaffle (03-24-2016),datvt123 (04-06-2016),davidarkl (06-02-2016),davo46 (05-26-2016),dazle (05-31-2016),dc19920620 (05-03-2016),deadpool1234 (04-01-2016),deadz_punkxz27 (04-01-2016),Dean1999 (05-31-2016),Death Disciple (05-02-2016),Deeepa2000 (05-22-2016),Deeves (06-02-2016),delaskoncelas (05-27-2016),deniksia (06-02-2016),Denisprz (04-03-2016),Dephjay (05-12-2016),Derpiidog (03-26-2016),Der_Leo_ (05-19-2016),Desperadox (04-14-2016),Diablodealma (06-01-2016),dickbuttt (06-04-2016),Digitalsniperz22 (05-28-2016),dinieaiman (03-30-2016),dipm (04-29-2016),divinslave (06-04-2016),Djdeas123 (05-20-2016),DJMEUS (04-02-2016),DJminner (09-30-2016),dnfcf525 (04-30-2016),Dokalex (05-23-2016),dolniceanumirel (03-28-2016),Dolphinzz (04-07-2016),domnulh (05-24-2016),douglaswee (04-10-2016),dreamer67 (04-01-2016),drhw45y45uw4jh4jnnrthj (04-07-2016),Drj10156 (04-22-2016),drogba2guddd (04-29-2016),drolloniw (05-20-2016),DrTravisimo32 (05-24-2016),Drunk_Munky (03-30-2016),dubbeh (05-13-2016),dubosclard (05-06-2016),Dusk_Shores (05-29-2016),dylanzz95 (03-27-2016),dzani2001 (04-04-2016),EduardP98 (04-29-2016),EduarD· (03-23-2016),EGGxGO1 (05-02-2016),egwgarghaerhaerh (04-09-2016),ehcl9661 (06-04-2016),elangprasetya (04-03-2016),elbarto36 (06-05-2016),elitesniper022 (03-30-2016),eLLTree (04-01-2016),Endingmaster214 (05-27-2016),enfer-boy (04-03-2016),EngiBones (04-05-2016),epsonelectronix (03-28-2016),Eradx (06-02-2016),Es3KZzz (03-25-2016),eve0147 (04-05-2016),FabiTheFreak (04-03-2016),facia21 (03-29-2016),factory0012 (03-28-2016),fadly2103 (03-23-2016),famishedtruth (06-03-2016),Farron_YiYe (04-23-2016),fatsofamily (05-16-2016),FeelHigh (05-21-2016),Felippe354 (06-22-2016),feraronax (03-26-2016),feruchio (05-14-2016),Fido4509 (05-27-2016),fightmanpro (05-14-2016),Filiposeq (03-28-2016),Filous01 (04-09-2016),finger26 (06-02-2016),fireman1226576 (04-03-2016),fischer2000 (05-25-2016),Flawlessputa (05-24-2016),flushDiao (03-26-2016),fodasequalquercoisa (04-10-2016),Formen88 (03-27-2016),Foxies (04-11-2016),FrankGamesHUN (04-05-2016),franzele (05-01-2016),FrazierMedina (03-27-2016),fred27400 (05-14-2016),freedomofparty (04-11-2016),frenzy5158 (04-02-2016),frmitr (05-31-2016),FROSTS EU (05-28-2016),FruGru (04-01-2016),Frumentarius (05-02-2016),FruteL (04-04-2016),fu** (05-13-2016),FumesHF (05-28-2016),Funnaycrap (04-02-2016),gamingking37 (06-05-2016),gangst3rbozz (03-30-2016),Garry el (05-24-2016),gbaby724 (03-23-2016),GedazLT (04-02-2016),Genosse Keck (05-23-2016),geremy75 (05-19-2016),gfdgtfdgf (05-16-2016),Ghostdaga (04-08-2016),ghostftww (04-30-2016),GhostRileyHUN (03-23-2016),GhostXVI (04-06-2016),giorgosstar (05-20-2016),gksmf10102 (05-17-2016),glennglog22 (04-30-2016),globalface239 (05-31-2016),GlossyFleXible (04-07-2016),Gman817 (06-01-2016),Gmanoranges (04-07-2016),gnlwo9 (04-16-2016),god of cola (05-30-2016),GoldPlaySHD (03-28-2016),gorkemk309 (06-04-2016),grapefruit7 (05-22-2016),GrumpyTL (03-26-2016),GTAVFAN123 (06-03-2016),Gx-Pro (03-30-2016),Hajuske (05-21-2016),halloabc (04-29-2016),Hannahxo (04-03-2016),hansson2456 (03-27-2016),HardPys (04-09-2016),hassbot (03-25-2019),hatefi (03-29-2016),HauntZz (04-29-2016),HavenSMG (04-07-2016),Haxoromg101 (04-15-2016),headass (03-25-2016),hehehehehe123 (04-02-2016),Heilo (04-13-2016),hejamiran47 (05-27-2016),henningwaloens (03-25-2016),HiUtsuri (03-23-2016),hkgtesla (04-01-2016),Ho1yShi7 (04-02-2016),Holyfuuu (04-18-2016),howwie991 (06-03-2016),Huan1337 (05-28-2016),huang9918 (06-26-2016),huangjjv1 (04-01-2016),humayun khan niazi (11-10-2017),Hungrbad (04-02-2016),hydruslord (04-09-2016),hyfotbez (05-31-2016),Hyper Active (04-06-2016),hyper140 (06-01-2016),iamthesuperk (03-29-2016),ia_ne_yoba (06-02-2016),Ibgallo77 (06-02-2016),ibm400 (04-01-2016),iceslide (06-05-2016),ichmachesnurfürgta (04-04-2016),ICHMAGZUEGE1337 (05-16-2016),iDo1M (05-30-2016),Igneou (05-07-2016),IHazCookie (03-27-2016),iimdon (08-29-2016),iiOne (04-05-2016),ikeerat (06-04-2016),IliketoeatCarrots (03-31-2016),Imbreeki (04-07-2016),IMNOTAHACKER12345 (04-24-2016),ImPuun (05-13-2016),Incorrigivel (03-26-2016),Iosliopious (04-13-2016),IrishJayhawker (03-29-2016),ISOFX (05-14-2016),ISSIZADAM (04-16-2016),itachix2 (04-14-2016),ITA_Teo (05-24-2016),IzHax (04-04-2016),J-Harmonia (05-26-2016),Jabbyv2 (05-09-2016),JackWood111 (06-03-2016),jamel123456789 (05-21-2016),James Johnson (04-22-2016),jamiex98 (04-14-2016),jamie_gtav (05-13-2016),jaumc (03-24-2016),jayfree94 (04-11-2016),Jean-Jean (04-03-2016),jeffoapho10 (04-29-2016),Jelly_DGK (05-02-2016),JendrikLaue (04-26-2016),jhfddsjhdsjfhsdj (05-22-2016),jiahao shi (03-28-2016),jimmy57000 (05-20-2016),jj15157 (05-15-2016),jlairby (05-28-2016),joakod28 (03-28-2016),Joey.1245 (05-29-2016),joey2de (06-03-2016),joeyguap (05-20-2016),JohnHun (03-23-2016),jokermessi (05-07-2016),jonathan222 (04-16-2016),JonaxDozeMC (03-24-2016),jones smitch (03-23-2016),jonesgta (05-24-2016),JoshakaPurple (03-26-2016),joshdev00751 (06-01-2016),joshman106 (05-28-2016),Joshua6093 (04-10-2016),jota2001 (05-14-2016),JOzyy (03-31-2016),Jstang0882 (05-10-2016),Julian08012003 (04-17-2016),juniormail122 (04-03-2016),junqithepro123 (04-04-2016),junyuanwee1 (05-15-2016),JustMe12 (04-08-2016),just_roc (03-28-2016),jway64 (03-27-2016),k1nga1r (04-17-2016),k3r3w444 (04-02-2016),Kai417 (03-26-2016),Kapitoxa1337 (05-22-2016),karliboe (05-31-2016),Kartan (05-20-2016),kecoy (04-04-2016),keeen (05-25-2016),keetler (05-16-2016),Kelejerry1991 (04-17-2016),kenaston (03-29-2016),kennyiscool (04-01-2016),keoty (05-14-2016),kerig (04-12-2016),KESDHC (04-29-2016),Khromos (05-24-2016),khvteleport (05-03-2016),kiddynamite9999 (06-03-2016),killa580 (06-04-2016),killbot99 (06-02-2016),KillerManus10 (05-17-2016),kinda0075 (05-13-2016),kingdomkhim (04-04-2016),kingj123 (05-30-2016),KingofCards (03-29-2016),kingofkingshf (05-21-2016),kingred80 (04-04-2016),kirito49 (03-23-2016),kirosama (05-02-2016),kis9I (04-04-2016),KissMeEureka (06-04-2016),kitkats25 (07-05-2016),kittkittpop (04-21-2016),KiwiAndOranges (03-25-2016),kjho7429 (03-26-2016),kkkaa42 (05-05-2016),kkmen97 (03-23-2016),klikrofl (06-02-2016),Klyxa47 (04-05-2016),KnightInShiningArmour (04-24-2016),knong123 (12-18-2017),kokosak1532 (05-24-2016),Komiro (05-23-2016),kotchmoy (05-23-2016),Kr4K3N55 (03-25-2016),krayox (04-07-2016),kritzelkiotz (05-21-2016),krysis09 (05-27-2016),kukemata (06-03-2016),kumiito (04-20-2016),kvsh88 (04-01-2016),KYCN (04-16-2016),labial (04-28-2016),LaerteWar (03-24-2016),laoensijupai (09-20-2016),LarryLallare (04-16-2016),Lawless420 (03-29-2016),LaysG0D (07-17-2016),LBA1 (05-29-2016),le1392 (05-07-2016),leckmich12 (03-28-2016),leegt (03-25-2016),Lele111112 (06-04-2016),leonardo_emiliano (03-28-2016),leoty (03-22-2016),lepppy (05-28-2016),LePwner (03-26-2016),lewis2428 (04-30-2016),Lger27 (05-30-2016),Liamisisisisi (05-24-2016),lilfaith (03-26-2016),Lincan (04-09-2016),liork (06-04-2016),Liqeud (04-05-2016),liukejun789 (03-30-2016),LKS129 (04-01-2016),lks2211 (04-30-2016),lllWhite (05-07-2016),loic261298 (04-19-2016),lolzitzme202 (05-27-2016),LordWurst (05-11-2016),lotus1234567890 (04-10-2016),Lraz17 (05-23-2016),LSDAFFEE (03-24-2016),lukimek (03-31-2016),Lymdun (05-20-2016),m1rcow (05-17-2016),M4uZzz (04-06-2016),mac79g (04-03-2016),Macaroniecheese (05-13-2016),mackefuskkonto (06-26-2016),madsj73 (11-22-2016),mailoucast (03-24-2016),majalmkr (06-01-2016),MajiArts (04-05-2016),makkan_99 (06-04-2016),Malthurn (05-15-2016),man-woman123 (04-05-2016),ManoCirilo (05-04-2016),mansu (05-19-2016),manuka77 (04-05-2016),manu_09 (03-23-2016),Marcicore (06-02-2016),marcind93 (08-22-2016),MarkDoesGTA (05-30-2016),martyrebel666 (05-14-2016),Master Ye (05-12-2016),matesak (03-27-2016),matterickson (04-04-2016),matthewkreuz (04-11-2016),Mattrydom (04-02-2016),maW360 (06-04-2016),maycfire (04-24-2016),mccontax (03-26-2016),MCDaimond (05-30-2016),mcpedro99 (05-21-2016),Meguinho (03-25-2016),Mekinek (04-06-2016),melwwe (11-07-2016),mentalent (04-14-2016),meqtii (03-25-2016),mertalice (03-29-2016),MertKaan (04-29-2016),metaknight765 (06-02-2016),metherino (04-17-2016),MettaL6 (05-24-2016),michou06600 (04-27-2016),MiffedLyric559 (04-09-2016),mikelw1112 (03-26-2016),Miku_Ghost (06-03-2016),Minxie5497 (03-26-2016),mirine69 (03-28-2016),Mlcrafting (04-11-2016),moddinglegend01 (06-03-2016),MON6OOSE (04-01-2016),moneysbag (05-20-2016),mortenscarface (05-24-2016),mortscript (05-26-2016),MortyTT (04-11-2016),MotherfuckingDickHead (06-05-2016),MrFluxGFX (03-26-2016),MrYourself (05-01-2016),mt63it (04-06-2016),Munib_2421 (07-29-2016),Murkicide (05-21-2016),MushroomPeople (05-14-2016),Mustek1337 (04-03-2016),Mymomsdog (06-02-2016),n3cr0n12345 (05-10-2016),Naromert (03-23-2016),neasas (04-02-2016),Neron52PL (04-06-2016),neschnittebitte (04-30-2016),Neu2307 (04-08-2016),newdk (04-06-2016),NhOkE1986 (03-24-2016),Nicholas1112 (03-29-2016),Nig1234 (05-29-2016),nightfall1313 (05-09-2016),NikkuKato (04-02-2016),Ninmore (05-25-2016),nitzana (04-06-2016),nltgaming (04-28-2016),nocid999 (04-27-2016),NonePred (03-29-2016),nopsheratus (06-02-2016),NordanJ (04-08-2016),notagain (05-05-2016),notas1136 (05-29-2016),Notch0s (03-31-2016),novapova123 (05-28-2016),nuclearhound (06-04-2016),nutdevza (05-31-2016),nuttkronkhit (05-21-2016),nuuutti (05-26-2016),nyet07 (05-25-2016),nzzstartos (05-25-2016),Obunga (03-24-2016),OJoe64 (06-02-2016),Omega974 (05-08-2016),omegahack0 (04-29-2016),Onizer (04-18-2016),OnlySource (06-02-2016),oPxnda7 (04-05-2016),outlaw88 (03-25-2016),owo (03-30-2016),oxidado (03-29-2016),panaso (04-27-2016),Pappersblomma (04-02-2016),ParthC13 (04-30-2016),party_koala (03-26-2016),passwordtyty (03-26-2016),Pateta1234 (06-03-2016),PBshady (03-25-2016),PDLVPL (04-05-2016),pedromegaboss12 (04-02-2016),Pegedyr (05-17-2016),PiriKripto (05-15-2016),pokemona123 (05-30-2016),pong9829 (06-06-2016),PopsLeget (06-05-2016),Pormp (04-02-2016),PornFlakesGR (04-30-2016),posanap (05-28-2016),Powablocks (05-07-2016),powerrocker (04-10-2016),ppeperinoo (06-02-2016),ppin (05-20-2016),preamer (10-28-2016),Pres123 (03-24-2016),PrezMozana (06-05-2016),priml (05-09-2016),prterdzm (04-03-2016),puenfame (04-01-2016),PusherCZ12456 (04-01-2016),pyrotown (06-02-2016),pytos96 (05-05-2016),QiaoQing (04-30-2016),qinziqi912 (04-17-2016),qkrwnsdn1057 (04-15-2016),QurlyFries (03-30-2016),qwerta009 (04-05-2016),qwerty57685 (05-23-2016),R0bert0s (04-08-2016),R4MK4 (05-01-2016),raiinz1337 (03-25-2016),Rak Malla (06-03-2016),RakuIchijou (03-30-2016),rarestpeep (05-22-2016),Rasmusman (04-23-2016),RavenHype (06-03-2016),raver65 (04-11-2016),Rawrz007 (06-01-2016),Rawvyy (04-17-2016),Rchevyier (06-03-2016),regaeshark (04-11-2016),remmen (10-24-2016),renaiyu (04-10-2016),rene3216 (03-27-2016),Revalis (05-26-2016),revolutionfour (03-27-2016),RileyGavPC (04-03-2016),rinks (05-05-2016),rinobutt (06-02-2016),rkdtmd0715 (05-14-2016),rob123123123 (04-29-2016),robertas99 (06-05-2016),rocca25091 (04-05-2016),rodnflxkd (04-29-2016),ronbarak123 (05-01-2016),ronnie2chains (05-15-2016),rottenmuffins (03-26-2016),ruski12314 (03-28-2016),russian000 (03-28-2016),rwingright4 (06-01-2016),Ryskunknown (04-04-2016),saharswisa1 (04-08-2016),Sahu (03-23-2016),salami33 (05-13-2016),samec1236 (12-15-2016),sammyko27 (06-01-2016),samurai123321 (03-24-2016),SanduQi (05-30-2016),sangoku233 (04-28-2016),saschaz187 (05-01-2016),Satoma (04-06-2016),Scerd (04-29-2016),Scoredplayer (04-04-2016),Scottie_XDP (04-17-2016),sdkfz212 (03-23-2016),Seiichi Sasaki (03-27-2016),Senpai_Vesper (05-30-2016),Seriouslee97 (04-01-2016),sevrer (05-30-2016),sexxibatman343 (03-27-2016),Sgaer (03-28-2016),sgsgfg123 (04-10-2016),sgt_gangsterboi (05-22-2016),shadyzhn (05-25-2016),shakabledonkey (05-29-2016),Shanze (05-06-2016),shattering (05-02-2016),shaun95 (04-15-2016),Shikaru05 (06-01-2016),shockingfive (04-03-2016),Shoxx1337 (04-04-2016),Shrekman (04-09-2016),shrkrage (03-31-2016),shutupwanka (03-25-2016),SidroxNoah (06-01-2016),silentdeth666 (03-29-2016),Silver_The_Hedgehog (06-04-2016),simo3070 (04-01-2016),SimonSchool99 (06-03-2016),SinSquid (05-30-2016),siyabu (08-19-2016),Skukiz (05-08-2016),skullmehnet (04-03-2016),skylan0626 (06-02-2016),SLAYERab (03-22-2016),slayfox11 (03-27-2016),sleepfight (05-25-2016),Smexhy (06-03-2016),Smitty_R (05-28-2016),Smokey86 (04-11-2016),Snakebeneath (04-03-2016),snaxxiii (03-31-2016),Snorlackjack (03-30-2016),snowdaysinged (03-26-2016),snowlax (04-01-2016),snowsnooks (05-28-2016),SnowyCharm (04-04-2016),sologta (04-02-2016),son7453520 (04-03-2016),Spanksies (04-04-2016),Sparco6 (04-13-2016),st0mper (06-08-2016),steamisam (04-10-2016),stephanuskevin5 (05-05-2016),strafff (04-26-2016),sty20000 (04-03-2016),subhankarpaul536 (06-04-2016),subzero19801980 (04-02-2016),superaris0601 (04-04-2016),SupercoolT (03-28-2016),superexboom (05-07-2016),superspy225 (05-22-2016),Sw.Mondoe (04-28-2016),Swarmshdxez (05-08-2016),sweedzi (04-07-2016),sweg88 (03-25-2016),SwiftyZz (06-05-2016),Swipe82 (06-02-2016),Syncex (06-03-2016),Sytrux (03-26-2016),Sztywny303 (04-08-2016),taynaxx (04-11-2016),teberius (05-30-2016),tehbeetus (04-02-2016),telebloxberg (04-13-2016),temporary_accnt (04-01-2016),TeslaSoldier (05-07-2016),Th3Quantum (05-21-2016),TH3_4L3J4 (04-03-2016),ThatGuyNamedJim (04-13-2016),The Cytex (04-18-2016),thecrazysalt (04-08-2016),thederpest (03-26-2016),TheFonz (04-30-2016),TheGameFuny (03-25-2016),thegreathackingmachine (05-20-2016),thehackingtexan (04-01-2016),Thelastfallenone (06-04-2016),TheLegend125 (05-26-2016),TheMatsku41 (05-30-2016),TheMIndQrupker (05-11-2016),thepemo (03-27-2016),ThePlaguezzz (04-12-2016),TheRedstoneDev (04-02-2016),TheSliquifizierer (05-26-2016),thesunofme (04-16-2016),TheZdralic (04-14-2016),thiagonadolny (03-23-2016),thomasrinia (04-23-2016),thundercoupe (04-27-2016),tigercao (03-24-2016),TilledBoss (03-29-2016),timmy022815 (05-21-2016),timothy1254 (05-08-2016),tinusdakpan (03-25-2016),TMGGG (06-01-2016),Tobey Mcguire01 (05-14-2016),tomid6789 (05-29-2016),tommmy_tooshoo (05-15-2016),Tomo0o03 (06-02-2016),Toniiz (04-30-2016),tony9060 (04-13-2016),TOTENHD (05-22-2016),TotodileZ (03-22-2016),toxicgamers6971 (05-02-2016),tpfk42 (03-25-2016),tranhoang124 (04-08-2016),TrevKill32 (04-07-2016),trevon123 (05-01-2016),TumEXz (05-11-2016),tummyz1234 (04-16-2016),turksilahlikuvvetleri (04-24-2016),Twinchops (05-21-2016),TwoTen (06-03-2016),umji0819 (04-22-2016),underbrick (03-22-2016),unhookingsnake9 (04-16-2016),unkindblaze (05-31-2016),UprisingMayhem (03-25-2016),Urban1313 (06-04-2016),user072 (06-05-2016),usermanguy (06-03-2016),usuario000 (04-23-2016),uwkdwkdwkd (06-04-2016),Valid247 (05-11-2016),vampirehunt (03-31-2016),vaqol (05-23-2016),VariableKarte (04-07-2016),vaxushti1992 (04-09-2016),Venda3221 (06-02-2016),vigara (04-05-2016),Vigilantewood (05-05-2016),viper1996tat (04-06-2016),vitality60 (03-24-2016),VocaNope (05-28-2016),Volen (04-28-2016),VoonKzzZ (06-04-2016),VortexNoStalgia (05-23-2016),w8ter (04-01-2016),wa58520 (05-07-2016),waKi29 (05-29-2016),walaneh (06-04-2016),walldrill (05-03-2016),wazitkz (03-27-2016),weakkatana (03-24-2016),WhiteFang107 (04-13-2016),william bajs1 (06-03-2016),willswanson (04-23-2016),wishyhack (05-13-2016),wizakram (06-04-2016),WizIsSoGood (05-23-2016),wkdnlaos1212 (04-11-2016),wmgarvin (03-26-2016),woldmofgt (04-15-2016),Wolfyyyy (05-24-2016),wporchera (04-13-2016),wscaq (04-10-2016),wsobrien (03-29-2016),wuyuchenshr (04-09-2016),wyq2653 (04-17-2016),xalkkk (06-03-2016),xantisgaming (05-16-2016),xaxaruski (04-03-2016),XBrave_SolaireX (04-05-2016),xcoringax (04-08-2016),xGhostRid3rx (05-10-2016),xMazza (04-16-2016),Xminitrix (06-07-2016),xmulishax (05-27-2016),xshiiiro (06-19-2016),xSilverZz (03-31-2016),xsx1997 (11-10-2016),xXCreeperVenomXx (05-29-2016),xxfrozticxx (06-04-2016),xXMaster_VenomXx (05-03-2016),xxmichibxx (05-14-2016),xxnextenxx (05-02-2016),xxpandakxx (03-24-2016),XxsamuelHc (03-27-2016),xyx1234 (04-07-2016),xzProEgemenzx (06-16-2016),yewshing (04-28-2016),yifg (04-10-2016),yoiboi (03-29-2016),yolohimygod (04-04-2016),yunsyunz (03-29-2016),yury000 (03-23-2016),yyp (03-24-2016),Zacoka (04-30-2016),zadirik (04-27-2016),zaerbis123 (05-23-2016),Zatven (05-14-2016),zdog123456 (04-09-2016),zDureXz (03-28-2016),Zedriv93 (05-10-2016),zekira (05-26-2016),zengxiangbin (03-22-2016),zerpderp (06-05-2016),zmzmfl2274 (05-04-2016),znecro (05-23-2016),zoko232 (06-02-2016),zomgoodhard (04-05-2016),zontique (03-26-2016),zpeachfuzz (05-21-2016),zprismman (04-24-2016),zQ.Xiphos (05-05-2016),Zuhl (05-25-2016),zwzv5 (06-02-2016),ZXAFireBlazer (05-13-2016),zxccxz22 (03-29-2016),Zykrein (05-28-2016),Zyrka (06-02-2016),_pyxls (05-15-2016),°IceCold° (04-19-2016)

  3. #2
    Dakota's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Posts
    8,332
    Reputation
    648
    Thanks
    1,680
    Approved attachments use at your own risk.

  4. #3
    MikeRohsoft's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Los Santos
    Posts
    797
    Reputation
    593
    Thanks
    26,314
    The Thread is dieing silently if you try to load the Tuneables.
    pls insert this line to your pointermap.txt:
    Code:
    TUNING_TABLES = (BASEADDRESS + 0x2B11810) + #$8
    then it should not happen.

  5. #4
    GhostRileyHUN's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Posts
    66
    Reputation
    10
    Thanks
    2
    My Mood
    Happy
    I hope it is not detected.

  6. #5
    legy996's Avatar
    Join Date
    Mar 2016
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    I kinda don't understand how the tuneables work. What exactly do i need to do if i want eg Independence Day Content?

  7. #6
    MikeRohsoft's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Los Santos
    Posts
    797
    Reputation
    593
    Thanks
    26,314
    Quote Originally Posted by legy996 View Post
    I kinda don't understand how the tuneables work. What exactly do i need to do if i want eg Independence Day Content?
    Insert Line to pointermap.txt you can see at Post #3 and click "Load"
    Code:
    ENABLE_INDEPENDENCE_PACK 0xc118 = 1
    INDEPENDENCE_DAY_DEACTIVATE_FIREWORKS_LAUNCHER 0xc158 = 0 
    INDEPENDENCE_DAY_DEACTIVATE_FIREWORKS_PLACEABLE 0xc160 = 0 
    ENABLE_VEHICLE_MONSTER 0xc188 = 1
    DEACTIVATE_CLOTHING_INDEPENDENCEDAY_GROUP 0xc190 = 0,0f 
    DEACTIVATE_HAIR_MAKEUP_INDEPENDENCEDAY_GROUP 0xc198 = 0,0f
    Because in this case already set to right values for unlock in tuneables.txt
    Last edited by MikeRohsoft; 03-23-2016 at 04:35 PM.

  8. #7
    GhostRileyHUN's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Posts
    66
    Reputation
    10
    Thanks
    2
    My Mood
    Happy
    The trainer is working great so far. I bought a few cars with fully upgrades from the money, the RP multiplier also working well.

  9. #8
    tHebhesd's Avatar
    Join Date
    Mar 2016
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    My Mood
    Cynical
    The impromptu race $$ doesn't seem to be working for me, it worked for me on your last trainer but not this one.

  10. #9
    MikeRohsoft's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Los Santos
    Posts
    797
    Reputation
    593
    Thanks
    26,314
    Quote Originally Posted by tHebhesd View Post
    The impromptu race $$ doesn't seem to be working for me, it worked for me on your last trainer but not this one.
    sorry, but you had to write this last times xD then i never changed it.
    Last Offset was 518, so you should Replace the right line in tuneables.txt with this and then try again:
    Code:
    TT_RACE_MAXCASH = (TUNEABLES + $518)
    Last edited by MikeRohsoft; 03-24-2016 at 05:32 PM.

  11. #10
    tHebhesd's Avatar
    Join Date
    Mar 2016
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    My Mood
    Cynical
    Quote Originally Posted by MikeRohsoft View Post
    sorry, but you had to write this last times xD then i never changed it.
    Last Offset was 518, so you should Replace the right line in tuneables.txt with this and then try again:
    Code:
    TT_RACE_MAXCASH = (TUNEABLES + $518)
    So you just go to the tunables.txt and put that in after all the other stuff?

  12. #11
    MikeRohsoft's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Los Santos
    Posts
    797
    Reputation
    593
    Thanks
    26,314
    Quote Originally Posted by tHebhesd View Post
    So you just go to the tunables.txt and put that in after all the other stuff?
    this works too, yes, but better Replace the old TT_RACE_MAXCASH Line with this
    You have to restart the programm after changes, only changes in tuneables.txt are changable on runnning.
    Last edited by MikeRohsoft; 03-24-2016 at 05:44 PM.

  13. #12
    tHebhesd's Avatar
    Join Date
    Mar 2016
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    My Mood
    Cynical
    Quote Originally Posted by MikeRohsoft View Post
    this works too, yes, but better Replace the old TT_RACE_MAXCASH Line with this
    You have to restart the programm after changes, only changes in tuneables.txt are changable on runnning.
    Sorry to bother you further, but, what do I put for Race Multiplier? and Impromptu Race multiplier? is one of them 15000000 and the other one 300000?

  14. #13
    mailoucast's Avatar
    Join Date
    Mar 2016
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    how to use this? i don't understand ...

  15. #14
    THEGeekco's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    I dont think I am using this right nothing seems to work :/

  16. #15
    MikeRohsoft's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Los Santos
    Posts
    797
    Reputation
    593
    Thanks
    26,314
    Quote Originally Posted by tHebhesd View Post
    Sorry to bother you further, but, what do I put for Race Multiplier? and Impromptu Race multiplier? is one of them 15000000 and the other one 300000?
    I'm sorry, i was too drunk yesterday ^^
    No, if u need the MaxCash too for this, you can't add this Value anymore, because all Fields in the Programm are "Float" Values, but MaxCash is Integer.
    Change your pointermap.txt:
    Code:
    TT_RACE_MAXCASH = (TUNEABLES + $518)
    This i weird i know, but this Line don't change the MaxCash, this is the Impromptu Race Multiplier in the GUI.


    And to your tuneables.txt, you Add this (or create a new clean file for this):
    Code:
    RACE_MAX_CASH 0x508 = 15000000
    Change your Modifier, click "Load" for Tuneables and checkout the Impromptu Race Cashpot.

    Quote Originally Posted by THEGeekco View Post
    I dont think I am using this right nothing seems to work :/
    It's only working on R* Game Store Version not on Steam.
    Make sure no Mods running and no CE Code were injected.

    Quote Originally Posted by mailoucast View Post
    how to use this? i don't understand ...
    Then i'm sorry, but you just have to click on Buttons and put it some Values.
    For Help you need to be more exactly.

Page 1 of 6 123 ... LastLast

Similar Threads

  1. [Source Code] GTA Trainer [Godmode, WantedLevel, Teleport] AHK
    By MikeRohsoft in forum Grand Theft Auto 5 (GTA V) Hacks & Cheats
    Replies: 18
    Last Post: 02-12-2018, 01:30 AM
  2. [Release] GTA Trainer [Godmode, Unlimited RP + Money, Unlock Stuff, Teleport]
    By MikeRohsoft in forum Grand Theft Auto 5 (GTA V) Hacks & Cheats
    Replies: 50
    Last Post: 03-22-2016, 04:34 PM
  3. GTA 5 Online - SOLO "UNLIMITED MONEY GLITCH" After Patch 1.17
    By Farq in forum Grand Theft Auto 5 (GTA V) Discussions
    Replies: 0
    Last Post: 10-27-2014, 12:04 PM
  4. FREE GTA V MODDED LOBBIES ( unlimited xp and money )
    By nelosss in forum Grand Theft Auto 5 (GTA V) User Services/Shops
    Replies: 69
    Last Post: 08-11-2014, 06:20 PM
  5. [Request] Test drive unlimited 2 - Money hack/ Or Trainer?
    By ZenoHD in forum Hack Requests
    Replies: 1
    Last Post: 04-02-2012, 03:14 PM