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

    Mike's GTA H4x 1.36 Extended [External Menu]

    Mike's GTA H4x 1.36 Extended


    Teleport Options:
    - Waypoint
    - Fixed Points
    - last used Car

    Player Options:
    - Heal
    - Suicide
    - Bullet Proof
    - Ever Wanted
    - Never Wanted
    - Fast Run
    - Fast Swim
    - Godmode

    Vehicle Options:
    - Heal
    - Destroy
    - Godmode
    - Gravity

    Weapon Options:
    - Increase Bullet Damage
    - No Spread
    - No Recoil
    - Fast Reload
    - No Reload
    - Freeze Ammu

    Script Engine inside!
    Added Scripts:
    - Sirius NEVER USE THIS SCRIPT IN PUBLIC SESSION - ONLY INVITE ONLY WITH TRUSTED PPL
    - RP NEVER USE THIS SCRIPT IN PUBLIC SESSION - ONLY SOLO
    - Anti AFK


     

    The script are all in the Script Folder. All Files inside of it will be interpreted, doesn't matters what ending it has.
    I just used .pas for Notepad++ Syntax for Pascal, because the Script Engine uses Pascal Script.
    I added 3 Functions with ussualy Syntax:

    Code:
    function GetTickCount: cardinal; // Wrapper to GetTickCount64
    procedure ShowMessage(msg: string); // <- this STOPS the Thread, use it only for Debugging.
    procedure sleep(ms: integer); // <- it let the Memory Monitor Thread sleep, take care with this

    Code:
    function GameDistance(x1, y1, z1, x2, y2, z2: single): single;
    And some Functions for wrapping the API Calls
    All functions return false if parameter Id not exists

    Code:
    function ReadPropertyFloat(pId: string; out pFloat: single): boolean;
    function WritePropertyFloat(pId: string; pFloat: single): boolean;
     

    'PLAYER.HEALTH'
    'PLAYER.MAXHEALTH'
    'PLAYER.ARMOR'
    'PLAYER.SPRINTSPEED'
    'PLAYER.SWIMSPEED'

    'PLAYER.POSITION.X'
    'PLAYER.POSITION.Y'
    'PLAYER.POSITION.Z'

    'PLAYER.VEHICLE.X'
    'PLAYER.VEHICLE.Y'
    'PLAYER.VEHICLE.Z'
    'PLAYER.VEHICLE.HEALTH'
    'PLAYER.VEHICLE.GRAVITY'

    'PLAYER.WEAPON.ACCURATEMODEACCURACYMODIFIER'
    'PLAYER.WEAPON.RUNANDGUNACCURACYMODIFIER'
    'PLAYER.WEAPON.RECOILACCURACYMAX'
    'PLAYER.WEAPON.SPREED'
    'PLAYER.WEAPON.RECOILERRORTIME'
    'PLAYER.WEAPON.RECOILRECOVERYRATE'
    'PLAYER.WEAPON.RECOILACCURCYTOALLOWHEADSHOTAI'
    'PLAYER.WEAPON.MINHEADSHOTDISTANCEAI'
    'PLAYER.WEAPON.MAXHEADSHOTDISTANCEAI'
    'PLAYER.WEAPON.HEADSHOTDAMAGEMODIFIERAI'
    'PLAYER.WEAPON.RECOILACCURACYTOALLOWHEADSHOTPLAYER '
    'PLAYER.WEAPON.MINHEADSHOTDISTANCEPLAYER'
    'PLAYER.WEAPON.HEADSHOTDAMAGEMODIFIERPLAYER'
    'PLAYER.WEAPON.BULLETDAMAGE'
    'PLAYER.WEAPON.DAMAGETIME'
    'PLAYER.WEAPON.DAMAGETIMEINVEHICLE'
    'PLAYER.WEAPON.DAMAGETIMEINVEHICLEHEADSHOT'
    'PLAYER.WEAPON.HITLIMBSDAMAGEMODIFIER'
    'PLAYER.WEAPON.LIGHTLYARMOUREDDAMAGEMODIFIER'
    'PLAYER.WEAPON.FORCE'
    'PLAYER.WEAPON.FORCE2'
    'PLAYER.WEAPON.FORCEHITPED'
    'PLAYER.WEAPON.FORCEHITVEHICLE'
    'PLAYER.WEAPON.FORCEHITFLYINGHELI'
    'PLAYER.WEAPON.FORCEMAXSTRENGTHMULT'
    'PLAYER.WEAPON.FORCEFALLOFFRANGESTART'
    'PLAYER.WEAPON.FORCEFALLOFFRANGEEND'
    'PLAYER.WEAPON.FORCEFALLOFFMIN'
    'PLAYER.WEAPON.PROJECTILEFORCE'
    'PLAYER.WEAPON.FRAGIMPULSE'
    'PLAYER.WEAPON.PENETRATION'
    'PLAYER.WEAPON.VERTICALLAUNCHADJUSTMENT'
    'PLAYER.WEAPON.DROPFORWARDVELOCITY'
    'PLAYER.WEAPON.MUZZLEVELOCITY'
    'PLAYER.WEAPON.MULTYBULLETSHOOTSPREAD'
    'PLAYER.WEAPON.RELOADTIMEMP'
    'PLAYER.WEAPON.RELOADTIMESP'
    'PLAYER.WEAPON.VEHICLERELOADTIME'
    'PLAYER.WEAPON.RELOADTIMEMULTIPLIER'
    'PLAYER.WEAPON.TIMEBETWEENSHOTS'


    Code:
    function ReadPropertyByte(pId: string; out pInt: byte): boolean;
    function WritePropertyByte(pId: string; pInt: byte): boolean;
     

    'PLAYER.WANTEDLEVEL'
    'PLAYER.GODMODE'


    Code:
    function ReadPropertyInt(pId: string; out pInt: integer): boolean;
    function WritePropertyInt(pId: string; pInt: integer): boolean;
     

    'PLAYER.WEAPON.AMMOTYPE'
    'PLAYER.WEAPON.WEAPONWHEELSLOT'
    'PLAYER.WEAPON****UNDPERMAGAZINE'
    'PLAYER.WEAPON.BULLETSINBATCH'
    'PLAYER.WEAPON.BULLETSPERANIMLOOP'


    Code:
    function ReadPropertyStr(pId: string; out pStr: string): boolean;
     

    'PLAYER.NAME'

    Code:
    function call(pFunctionName, pArgument: string): boolean;
     

    'TELEPORT'
    'SENDKEY'
    'SENDKEYUP'
    'SENDKEYDOWN'
    'FOREGROUND'


    All Pascal Script Scripts must have:

    Code:
    begin
    
    end.

    So lets give me some Script Examples:
     

    Lets troll some:

    Code:
    var
      PlayerName: string;
      Health, MaxHealth, Armor, MaxArmor, FastRun, FastSwim: single;
      WantedLevel, GodMode: byte;
    begin
      ReadPropertyStr('Player.Name', PlayerName);
      ReadPropertyFloat('Player.MaxHealth', MaxHealth);
      ReadPropertyFloat('Player.Health', Health);
      ReadPropertyFloat('Player.Armor', Armor); 
      if MaxHealth > Health then 
        WritePropertyFloat('Player.Health', MaxHealth); // Bullet Proof
      if PlayerName <> '' then
        MaxArmor := 50
      else 
        MaxArmor := 100;
      if MaxArmor > Armor then
        WritePropertyFloat('Player.Armor', MaxArmor); // Bullet Proof
      ReadPropertyByte('Player.WantedLevel', WantedLevel);  
      if WantedLevel > 0 then
        WritePropertyByte('Player.WantedLevel', 0); // Never Wanted
      ReadPropertyFloat('Player.SprintSpeed', FastRun);
      if FastRun <> 2 then
        WritePropertyFloat('Player.SprintSpeed', 2); // Fast Run
      ReadPropertyFloat('Player.SwimSpeed', FastSwim);
      if FastSwim <> 2 then
        WritePropertyFloat('Player.SwimSpeed', 2); // Fast Swim
      ReadPropertyByte('Player.GodMode', GodMode);
      if GodMode <> 9 then
        WritePropertyFloat('Player.GodMode', 9); // Godmode
    end.


     

    Lets do some more useful, like a RP Script:
    Code:
    var
      WantedLevel: byte;
    begin
      ReadPropertyByte('Player.WantedLevel', WantedLevel);
      if WantedLevel >= 5 then
        WritePropertyByte('Player.WantedLevel', 0)
      else
        WritePropertyByte('Player.WantedLevel', 5);
    end.


     

    Lets do some more complex Stuff, Anti AFK Script:

    Code:
    var
      state: byte;
      LastTicks: cardinal;
    
    procedure Initalize;
    begin
      LastTicks := GetTickCount;
      state := 1;
    end;
    
    procedure AFKCheck;
    var
      Ticks: cardinal;
    begin
      Ticks := GetTickCount;
      if Ticks - LastTicks > 780000 then
      begin
        if state = 1 then
          call('ForeGround','')
        else if state = 10 then
        begin
          call('SendKey', 'S');
          LastTicks := Ticks;
          state := 0;
        end;
        state := state + 1;
      end;
    end;
    
    begin
      case state of
        0: Initalize;
        else AFKCheck;
      end;
    end.


     

    Ok, let's try some Bot Behaviour, Time Trial Bot:

    Code:
    var
      state: byte;
      SiriusCoordsStart: string;
      SiriusCoordsEnd: string;
    
    procedure Initalize;
    begin
      SiriusCoordsStart := '-1504.522217;1482.826050;116.529312';
      SiriusCoordsEnd := '-631.880737;-372.079926;34.320568';
      state := 1;
    end;
    
    procedure StartTimeTrial(const CoordStr: string);
    begin
      call('Teleport', CoordStr);
      sleep(10);
      call('SendKey', 'S');
      sleep(1100);
      call('SendKey', 'E');
      state := 2;
    end;
    
    procedure EndTimeTrial(const CoordStr: string);
    begin
      call('Teleport', CoordStr);
      sleep(10);
      call('SendKey', 'S');
      sleep(1100);
      state := 1;  
    end;
    
    begin
      case state of
        1: StartTimeTrial(SiriusCoordsStart);
        2: EndTimeTrial(SiriusCoordsEnd);
        else Initalize;
      end;
    end.



    Controls:
    F5: Show Menu
    Control Menu with: UP, DOWN, ENTER and ESC, for changing Gravity Factor LEFT and RIGHT
    F6: Teleport to Waypoint
    F7: Heal
    F8: Lose Cops
    F9: Save Coords to Clipboard

    You can change all Settings and create other Hotkey Functions by config.xml
    Modifiy the Menu by menu.xml

    How to use it:
    Extract all Files in a Folder.
    Start it only if GTA is full loaded.
    The Menu will only displayed in Game on Window Mode.
    It will close if you close GTA.

    You don't like my Ingame Menu?
    Rename menu.xml and Restart the Hack.

    How to use Sirius Script:
    Do it only in INVITE ONLY SESSION
    Pls use this Thread to arrange Sessions

    How to use RP Script:
    Teleport to a place where Police can't reach you.
    Under "Unreachable" you find some Locations.


    Player Reports Results in BAN!
    You use it at your own Risk

    https://www.virustotal.com/de/file/b...is/1476392991/
    https://virusscan.jotti.org/de-DE/fi...job/112dy360ec
    <b>Downloadable Files</b> Downloadable Files
    Last edited by akim14; 11-14-2016 at 05:23 AM.

  2. The Following 1,296 Users Say Thank You to MikeRohsoft For This Useful Post:

    *insane* (10-26-2016),-Setro- (10-22-2016),1004676 (10-25-2016),1014922116 (11-18-2016),1160073482 (10-27-2016),1239311485 (10-19-2016),13okuXOXO (10-28-2016),1bones8 (10-28-2016),1nsult (10-17-2016),1pur30wns (10-14-2016),353076942 (10-14-2016),45889burak45889 (10-16-2016),543467846897 (11-02-2016),765PRO (11-09-2016),80989475LOL (10-17-2016),8750 (10-22-2016),919905656 (10-15-2016),998877nn (10-14-2016),A Wild Ghost (11-03-2016),A1_DR1FTER (10-14-2016),a420425234 (11-10-2016),a8848033 (11-28-2016),aarav420 (10-15-2016),abcd12346 (10-22-2016),abcdeffff (10-28-2016),abdulkadir nart (11-05-2016),abholos (10-14-2016),adam611 (10-24-2016),ADDASDA (12-21-2016),adriano1980marques (11-14-2016),affyanis (11-01-2016),agreo (11-08-2016),AJ30603 (10-14-2016),ajbrauer (10-14-2016),Akira5008 (10-20-2016),akrit95 (11-19-2016),al20ex00 (10-23-2016),alacazame (10-17-2016),alarm1112 (11-28-2016),Alcatraz0398 (10-15-2016),Ale78 (10-18-2016),Alex R (10-15-2016),Alexander.Lundberg (10-16-2016),alexanderjensen (11-05-2016),Alexdes52 (10-15-2016),alexikasi (11-30-2016),Alex_Playa (11-02-2016),aliadnan (10-21-2016),Alien.W (10-14-2016),Allenbhonig (11-11-2016),allesgutbeidir (10-20-2016),Allpakas (11-04-2016),alltais (12-05-2016),alon14711 (10-30-2016),AlphaNinjago (10-18-2016),Alvictores (10-17-2016),amake2010 (10-14-2016),AminityGaming (12-18-2016),Amirhossein1234 (11-10-2016),amit2244 (11-01-2016),AnAngryNan69 (11-08-2016),andomort (10-14-2016),AndreiJAX (10-30-2016),andreluiz711 (10-18-2016),andreosouza (10-18-2016),Andres2000ESP (11-03-2016),Anonymous Users (10-16-2016),anshulpakala (10-14-2016),AnyaMaru (10-13-2016),aoisora1987 (10-25-2016),apple97813 (11-05-2016),Applemayu (11-15-2016),AquaAndrew (10-19-2016),aramdegreat (10-16-2016),archockey245 (10-17-2016),armandoss13 (10-25-2016),ARNE123456789 (10-14-2016),Arthur11501 (10-14-2016),Arthur2016 (10-17-2016),ArthurBil (11-16-2016),asapbush (11-05-2016),ASAPQ23 (11-01-2016),asche (10-17-2016),asgh (11-01-2016),ashkart (10-16-2016),Ashna92 (10-16-2016),aspshaker (11-03-2016),Assssssssssss (11-20-2016),AsTTTrOHD (11-28-2016),aswan7 (11-05-2016),audy228 (11-11-2016),austin2016 (10-20-2016),axel025 (11-01-2016),Axrise (10-18-2016),aylma0 (10-26-2016),ayylmaoishere (10-22-2016),Aziyraz (10-17-2016),azooz_ksa (10-26-2016),azterhgrgr (10-17-2016),AzureBlack (10-15-2016),b123john (10-17-2016),B3NJ@M1N (11-29-2016),badboy87 (11-05-2016),Bad_Bruce (10-18-2016),baiaz (11-10-2016),bailedemod (10-29-2016),Bakiboy123 (10-18-2016),bamkenone (10-31-2016),bannedpt1999 (10-28-2016),Ban_Wish (10-16-2016),barmhartsam (10-18-2016),barney84 (10-22-2016),Bartek1999 (09-27-2018),batsm (10-23-2016),BeasterCZ (10-17-2016),Beat Nuts (10-15-2016),beaufort11 (10-29-2016),Beflii (10-17-2016),BeHappyEveryday (10-13-2016),belglmfao (11-12-2016),Bemicoital (11-07-2016),BenLar (10-22-2016),beobeo2110 (10-17-2016),berkayco1 (10-26-2016),Betacookie (10-16-2016),betadin2 (10-14-2016),Bhimalie (11-07-2016),BiancaOwnG (10-24-2016),bigden92 (10-14-2016),BigDogBig (11-01-2016),bigslimdogg (11-03-2016),billalm56 (10-16-2016),bionicle009 (10-15-2016),bite52 (10-18-2016),bitethesushi (10-19-2016),BlackishPerson (11-05-2016),BlackMumba420 (10-19-2016),blackthelawliet (10-31-2016),BladeCrown (10-19-2016),Blazer134 (11-10-2016),BLAZINCASH (01-11-2017),blindkaneki (10-21-2016),Blitz_ (10-18-2016),blod722 (10-14-2016),bmpbaru (10-30-2016),bokica2 (10-22-2016),boobesyum (10-18-2016),boratgta (11-07-2016),bossadrian1989 (11-12-2016),bostontbagparty (10-16-2016),boxxtler187 (10-16-2016),bozin1102 (10-14-2016),Bradleyy (10-17-2016),BrandonMM (10-15-2016),Brian2957 (12-03-2016),brouette03 (10-21-2016),brutalknight (10-14-2016),BudderPro (12-09-2016),Bulent68 (10-22-2016),Butcha1 (11-04-2016),BUTTERYBATO (10-24-2016),ButtFace12345 (10-20-2016),ButtFuck123456 (10-30-2016),Buubulle (10-23-2016),Buzzar (10-15-2016),ByAkuma (10-28-2016),bytequake (01-19-2017),Bytridax (10-24-2016),byXIONS_ (10-17-2016),bz6102365 (11-08-2016),c3shyt (10-17-2016),cabinet123 (10-23-2016),Caezero (10-13-2016),caio terlizzi (10-18-2016),caistroud (10-14-2016),calilivin4200 (10-13-2016),capntbag91 (10-26-2016),cappycraz (10-27-2016),captain_jamster (10-14-2016),carlodorn (11-12-2016),casanova32 (10-17-2016),Cayendo (10-15-2016),cchazdemsey (10-29-2016),CCViBritannia (10-27-2016),ceilort (11-12-2016),Celemby (11-01-2016),cenan1998 (11-11-2016),ChachiG (10-26-2016),chazfalcon123 (10-16-2016),ChiarRadu (04-06-2017),Chris371 (11-01-2016),chrismaxg (10-16-2016),christian136 (10-17-2016),ChristianT1 (10-25-2016),cjgaming (11-04-2016),clarismic (10-22-2016),Clejeu (10-19-2016),clit (10-15-2016),cluboo1 (10-28-2016),cobraanha (10-23-2016),ColombusLebus (10-14-2016),Conceitedx (10-15-2016),consare (10-15-2016),Cookae (10-22-2016),Coolbuttons (10-15-2016),cool_heart2377 (10-14-2016),Corleone0101 (10-14-2016),Corrupt0r (10-15-2016),CORTEXSILDE (11-04-2016),CounterSquad (11-10-2016),craftkrix (10-29-2016),Craggle357 (10-15-2016),crazygamer2255 (10-25-2016),crazyskills (10-27-2016),Creep13 (10-17-2016),Crimerand (10-30-2016),crispywafflz (11-12-2016),cristicent (11-08-2016),CrysTheraphy (01-14-2017),csjcsj32 (11-08-2016),csolols (10-13-2016),CuriousSnipe (10-26-2016),curlyfemur (10-30-2016),cutterz (10-31-2016),d374650695 (10-21-2016),da boy123 (11-18-2016),dachickenator (10-14-2016),dai129497 (10-19-2016),daihp12 (10-13-2016),Dakotax (10-14-2016),dallas200 (10-21-2016),damianbeck (10-21-2016),DamnSamiel (10-13-2016),dancauandrei (11-10-2016),Daniboy111 (11-09-2016),DanieLLVip (10-28-2016),danisbr (10-16-2016),Dankovan (11-28-2016),DanneyHacker (10-15-2016),danutzyc (10-20-2016),DaPinatgCake (10-17-2016),Dark_Archer (10-22-2016),David_G (10-14-2016),DaviiXD (11-18-2016),daviloko2207 (11-07-2016),DaVinci2104 (10-16-2016),dawid2014pl (10-17-2016),dayte (10-17-2016),dazle (11-04-2016),dazzad10 (10-23-2016),dclinic1911 (10-14-2016),ddavila93 (10-14-2016),DeathBleed (10-26-2016),DeathStarxx94 (10-25-2016),decab (11-04-2016),declynshaw (11-12-2016),Deezer (10-15-2016),default6969696969 (10-22-2016),DEFCOREgames (10-23-2016),defides213 (03-26-2017),demoniack1209 (11-09-2016),Dennscho90 (10-30-2016),derpyhoodiehd (10-23-2016),devil614 (11-28-2016),devilbusiness (10-28-2016),Devin281 (10-17-2016),dexofan (10-14-2016),Dezocno (11-08-2016),Dezzre (10-15-2016),df930149 (10-25-2016),Dharma816 (11-12-2016),diakdnts (10-17-2016),dickcheese123 (10-27-2016),diggedog2 (10-13-2016),Dillinger_ (10-17-2016),dimitar01 (11-05-2016),DimixCZ257 (10-17-2016),diobestiacciacan (11-26-2016),dionysos337 (10-18-2016),Dip1999 (10-27-2016),dirge1020 (10-26-2016),Dirtmax16 (10-27-2016),dirtyzinnkid (10-14-2016),diwan2001 (10-18-2016),Dixie4511 (10-17-2016),djAmbre (10-24-2016),dmaricato (10-16-2016),dmitriyk16 (10-28-2016),DoctorScanna (10-15-2016),dogukanakkus178 (11-02-2016),dome2811 (10-21-2016),domi3012 (11-03-2016),Dongerino69 (10-16-2016),dookeysmat (10-13-2016),Dope656 (10-22-2016),Dopster4u (10-15-2016),doublewu21 (11-28-2016),DQG (10-14-2016),DQ_Prototype (10-15-2016),Dragon651108 (10-30-2016),Drakewid (10-30-2016),Driftrx (10-25-2016),drizeisse (10-17-2016),Drygur (10-14-2016),dsimple1 (10-17-2016),dubhcons82 (10-15-2016),dustin1608 (11-05-2016),Dvnte (10-13-2016),DVoidPlays (10-25-2016),dwikaaa (10-14-2016),dxg1997 (12-08-2016),dylan13127 (10-14-2016),E-Presley (11-08-2016),e83841098 (10-21-2016),Ebinen (10-17-2016),Eddehert (10-21-2016),edik96 (11-03-2016),Edukam4ster (10-16-2016),eirichm8 (11-06-2016),ElDonMendez (10-21-2016),Elephants111 (10-14-2016),elfutadore69 (11-05-2016),Elias12345678 (10-14-2016),Elimin4te (12-04-2016),elitesniper022 (10-23-2016),Ellezx (10-16-2016),Emeraldarcher (11-12-2016),EnjoyGamezZ (11-23-2016),EnviousData (10-13-2016),EnzoModz (10-22-2016),ER%YHGEAYHEAYHeyh (10-17-2016),ercid (10-15-2016),ErehUnCabesa (10-16-2016),Eric1125 (10-13-2016),erich91 (10-14-2016),ertaxia (04-03-2017),ErwinBruh (10-16-2016),ethan1201 (10-15-2016),eutj (10-13-2016),evil741667 (10-14-2016),EvilCoocie (10-14-2016),executer2 (10-14-2016),Exlon82 (10-17-2016),Exonuptox (10-14-2016),ExtremeGamingYT (10-18-2016),Extreme_Cold (10-15-2016),Exzectu (10-17-2016),f0zenlol (10-17-2016),fackoffwillyageez (10-25-2016),fadeh_gtav (10-16-2016),Faloushka (10-19-2016),farmerjoe3000 (10-21-2016),FasterHd1 (11-03-2016),fategabriel (11-23-2016),Fayogo (10-18-2016),fei5seven (10-25-2016),FernandoBrazao1 (10-25-2016),fffy (10-31-2016),fightmanpro (11-11-2016),firdausap37 (11-03-2016),fireboi (10-15-2016),firerom8 (10-19-2016),FlameTamer4 (10-30-2016),flavi23 (11-10-2016),FlexPulse (10-18-2016),Flezskait (10-26-2016),flippancyll (10-16-2016),flo13 (10-17-2016),flollie (11-06-2016),flurk (10-17-2016),Foiler25 (10-25-2016),Forfieter (11-10-2016),Fox7793 (11-05-2016),FreedomHeart (10-15-2016),freitag111 (10-31-2016),Fresard22 (10-26-2016),freshs (12-03-2016),froggyfrogx (10-14-2016),frost_555 (10-16-2016),Fuck Arsha (10-26-2016),FunZyKwick (10-28-2016),FuryAF (10-15-2016),GagusRian (12-07-2016),GammelWurst (11-07-2016),gangsterrr11 (10-25-2016),garebear309 (10-25-2016),gatodan (11-01-2016),GayButtHole (10-23-2016),gayga (10-25-2016),GaZ_ (10-18-2016),Geekmarine72 (10-18-2016),gege1234567 (11-20-2016),gehwegdich (10-18-2016),GeneralJayc (11-03-2016),gengjian (10-14-2016),georgieboy711 (10-16-2016),geronimolopez (10-17-2016),gh4ss4n123 (10-13-2016),Ghardsama (10-21-2016),ghgfh1 (10-22-2016),giash (10-14-2016),Gibba (10-13-2016),Giftboa (11-06-2016),GigoMoik (10-16-2016),gildedpie (10-14-2016),Glawks (10-17-2016),gn21777914 (10-20-2016),gokuindian (10-21-2016),Goliyo (10-19-2016),gravitysucks (10-30-2016),GrazyFrog (10-20-2016),greatestonearth (10-27-2016),Great_Dane (10-17-2016),GreenFreezer (10-25-2016),greentank24 (11-28-2016),Gta55555 (11-17-2016),gta969297 (11-10-2016),GTAGUY52 (10-17-2016),GTAmods20 (10-28-2016),gtava (10-22-2016),GTvision (12-20-2016),Gumsel (10-26-2016),gunp0wder (10-27-2016),Gurbs_Playz (10-21-2016),GUSTAVO4520 (10-16-2016),gustavocunhaa (10-16-2016),gwaren97 (10-14-2016),GWSEGYWYGHwyw$%$^t4 (11-07-2016),h123456 (11-19-2016),H4ckerxx44 (11-11-2016),HackerManNikita (10-19-2016),Haidukan (10-28-2016),hail999 (10-14-2016),haivuong139 (10-16-2016),Hajuske (10-18-2016),Hakkz0r (10-13-2016),HAKLE91 (11-10-2016),Hallowixxer2 (10-17-2016),hanang1o (10-25-2016),hanswerdenfels (11-20-2016),HANZHONG (10-29-2016),HarfyM (11-06-2016),haritocharlie (11-05-2016),HarryBMX (10-14-2016),HarryHaZx (11-07-2016),hassel1234 (11-12-2016),haun0715 (10-14-2016),haxduck (11-06-2016),heatblast727 (10-25-2016),heater07 (10-30-2016),hellk4mi (10-19-2016),hellrier (10-13-2016),hengiki (10-27-2016),henke1212312312 (10-14-2016),henkertje48 (10-16-2016),herzensburger (10-31-2016),hesapadim (10-22-2016),hibariitachi (10-16-2016),hitandrun89 (10-19-2016),hk987 (10-18-2016),hkgtesla (10-18-2016),hoankido (10-30-2016),hoboiscool (10-26-2016),HolyShi7 (10-23-2016),HowleeRabbit (10-17-2016),hpomni200 (11-08-2016),hqjoker (10-31-2016),huanjunzi (10-21-2016),hukang999 (10-27-2016),hunter515 (11-08-2016),Hunterbeh (10-27-2016),hunterxtzc (10-17-2016),huochaige (10-31-2016),huxiaokang (10-22-2016),huynhduchuy07 (10-21-2016),HyperNoid (10-26-2016),hzdrick (12-01-2018),hzhz801 (10-17-2016),HZRD'LaZeY (10-15-2016),iamcrazy3432 (10-16-2016),iamsweattypants (10-16-2016),iamThalos (10-29-2016),Ian Keefe (12-09-2016),Iccyiccy (10-14-2016),icecold68 (10-25-2016),ichimonji56 (10-15-2016),Idontcare6969 (10-15-2016),Idontgiveadfuck (10-15-2016),ifT-s (03-06-2020),igorbr342 (10-26-2016),IIISuddenIII0 (10-18-2016),iiItzHazzaii (10-29-2016),iiNNeX (10-20-2016),iL33T (10-14-2016),ilethegamer33 (10-17-2016),iliketoeatapples (10-23-2016),ilj6ka (10-31-2016),ilkercepni55 (10-14-2016),ilovecsgonathan (10-26-2016),im669 (10-14-2016),imadz12 (10-16-2016),ImNotSay (11-06-2016),Imperial_Panther (10-31-2016),INFARKT (10-18-2016),Inmortal Senpai (11-04-2016),Interfied (12-03-2016),Ionixvideo (12-14-2016),iphone7matblack (10-23-2016),Iramon51 (10-21-2016),Ishdev17 (10-23-2016),itimfol3 (11-17-2016),iTzMine (10-23-2016),ItzRiley (11-07-2016),ivanpavlov1 (10-16-2016),IvanTovar55 (10-27-2016),jachosta (10-29-2016),jack53 (10-30-2016),JackoTTT (11-06-2016),JackTheRipperII (10-20-2016),jacobisdabest (10-22-2016),JaiLaBanane (10-16-2016),jakepsycho64 (11-03-2016),jakubramajzl (10-21-2016),Jakusa11 (10-18-2016),jamal_007 (11-06-2016),JamesRUK (10-15-2016),Jamie Crown (10-16-2016),Jan Sykora (11-17-2016),jan78432 (10-21-2016),Jasmos (11-05-2016),jasperge112 (10-16-2016),Javisin (11-09-2016),JayCraft01 (12-16-2016),jayiskt (11-04-2016),JayProd (10-25-2016),jbkillerdk999 (10-15-2016),JEANBONS (10-22-2016),jebacpsy (10-15-2016),Jef69420 (10-20-2016),jeremypolania (10-14-2016),jermsquad22 (11-06-2016),jerodo (11-10-2016),jesterzeng (11-04-2016),jetsi29 (10-20-2016),JibblyDibbily (11-04-2016),jibze36 (10-24-2016),jimmy69420 (10-15-2016),jimmy_G (12-21-2016),jjw337 (10-13-2016),jlaiii (10-20-2016),JMC1 (10-17-2016),jmhmark123 (10-30-2016),joakod28 (10-15-2016),JohnHun (10-22-2016),Jok3rElite (10-14-2016),Joker_05_TN (10-17-2016),jokn504 (10-14-2016),Jonas147 (10-19-2016),JonaxDozeMC (07-26-2017),jordstar2001 (10-29-2016),JorivaldoPinto (10-20-2016),Josheybee (12-05-2016),joshuakraft18 (10-27-2016),jrknight (10-14-2016),jtom69420 (12-08-2016),Jubilayye (10-18-2016),juca da silva (10-31-2016),julioflj (10-15-2016),JumboMango (10-15-2016),jungleking (01-15-2017),just2627 (10-21-2016),JusteBelmond (10-14-2016),jytoupvp (10-19-2016),k.poplife (11-26-2016),k1mc0 (10-26-2016),K3nil (10-20-2016),kadwh2 (10-30-2016),kagan4141 (10-16-2016),kahis12 (04-01-2020),kakkapoika33 (10-22-2016),kali177 (11-05-2016),kanala (10-23-2016),KanaNugetti1337 (10-24-2016),kang0418 (11-02-2016),KarauJenkins (10-16-2016),Karlsson33 (11-01-2016),KaRza (10-21-2016),Kautch (10-23-2016),kazome (10-19-2016),keaide156 (11-12-2016),kedidi19941 (10-24-2016),KeinName123 (10-14-2016),Keizth (10-15-2016),kekcellent (10-15-2016),kelly2000 (10-13-2016),KerriKeri (10-15-2016),kevinpro16 (10-28-2016),kevwww (10-16-2016),khalil214 (10-30-2016),Kicke02 (10-14-2016),KikinLolman (10-20-2016),kilboy01 (10-17-2016),killer mods (10-16-2016),killer360glen (10-14-2016),killerw4 (12-11-2016),killmeiru2 (10-24-2016),killyourself911 (11-25-2016),KimchiYum (11-20-2016),King Fearr (10-14-2016),kingcast100 (10-15-2016),kingofgun$z (10-19-2016),kingooo (10-20-2016),kingtheg33k (11-06-2016),King_mony (10-13-2016),kirill43run (10-26-2016),KittyLat23 (10-20-2016),kiuone (11-24-2016),KIZLON (11-05-2016),Kjm069 (10-21-2016),kkleuang (10-26-2016),Klouw1 (10-30-2016),kluuuser (10-30-2016),knightnihaal (10-16-2016),knighttmj (11-15-2016),kokot852 (10-21-2016),kontpfc (04-25-2018),koparnoff (11-12-2016),KopfLEET (10-14-2016),Korsau (10-17-2016),KOSTAS2009 (11-13-2016),kowpatt (10-14-2016),Kozmar (11-02-2016),Kquu (02-08-2017),Krewzy (10-23-2016),KrizMatchless (10-14-2016),KUR0K0 (10-15-2016),kurcca (11-17-2016),KuroShibi (10-16-2016),KuZov (10-14-2016),Kyosam (10-31-2016),Labulopo (11-05-2016),lakeh (11-16-2016),laku123 (10-14-2016),Lancelot1234 (10-15-2016),Lane23 (10-25-2016),LarryLallare (10-19-2016),laura147 (11-05-2016),lavigne1429 (10-25-2016),LawLyy (10-20-2016),LawrenceR2 (11-03-2016),ldw443166 (10-19-2016),leandro038 (10-21-2016),leegt (10-30-2016),LeeVen (10-19-2016),leppe11 (10-14-2016),leroyroy (10-14-2016),Lesterdw (11-26-2016),Lethargy (10-30-2016),LewY2017 (10-18-2016),LeYo2143 (11-06-2016),Lhindyy15 (10-27-2016),lhqsmile (11-12-2016),liang2n2 (10-15-2016),libertynight (11-13-2016),libertywalksgx (10-21-2016),Liccoz (10-24-2016),lightning5807 (11-04-2016),Lilitc (10-26-2016),lillakilla (10-15-2016),Lillelund (10-19-2016),LilluXe (11-26-2016),linhphm4895 (10-13-2016),linkxza (10-18-2016),LinusxD1337 (10-16-2016),lipothegreat (10-23-2016),liukejun9999 (11-06-2016),liukunku (10-18-2016),LiYou (10-13-2016),lklucmoc (10-13-2016),loledz (10-14-2016),lolidominate (10-15-2016),lolologg (11-24-2016),LoneVolkov (12-03-2016),LOVEFTY (10-22-2016),lucalolo (10-20-2016),luffy37240 (11-10-2016),Lui77793 (10-31-2016),lukacarxd (12-05-2016),Lunomatick (10-30-2016),luyu (10-14-2016),LysyProboszcz (10-20-2016),lzhxwmr (10-14-2016),M:N:M (11-08-2016),Madara777 (10-14-2016),madmaxgamer2015 (10-13-2016),madmurloc (10-17-2016),madsj73 (11-18-2016),mahdetete (10-20-2016),MajiArts (11-01-2016),Make65 (10-19-2016),MakoMods (11-18-2016),MalarKeY007 (10-13-2016),mannit95 (10-21-2016),Manshow (11-02-2016),manucrack610 (10-20-2016),manuxzz (12-03-2016),Marcelek123 (10-20-2016),Marceloxd (11-13-2016),marcind93 (10-14-2016),marcsparkz (11-05-2016),marcusgs1 (10-21-2016),marecare23 (10-15-2016),marenbach (10-22-2016),markoden (11-04-2016),Mark_Margolis (11-11-2016),martikillernl (10-16-2016),martinuz2012 (10-23-2016),masazirou4842 (10-16-2016),Mass-Murderer (10-15-2016),mateuszm0009 (10-20-2016),matjer2024 (11-01-2016),mattgreene99 (10-16-2016),mattkjx (10-17-2016),Mattus (10-26-2016),Maudiy (10-22-2016),mauempoleon (12-05-2016),max15mikael (11-09-2016),maximax5 (10-27-2016),maximn99 (11-06-2016),MaximumAirsoft (10-31-2016),maxkaasqq (10-16-2016),maxproze (10-17-2016),maxsk7 (10-15-2016),maxzhou (11-08-2016),mayamail (10-20-2016),maykonsiq (10-22-2016),mazhagil (10-22-2016),mazlyn (10-15-2016),mcarthur12 (11-03-2016),mczc06 (10-29-2016),Medeiros (10-23-2016),MeesJonkerNL (10-14-2016),Megaman55 (11-02-2016),melwwe (11-01-2016),MEMEBIGBOY1 (04-17-2017),MemesRDank (10-16-2016),MENDE666 (11-11-2016),MeowFlax (10-26-2016),messidasdqwa12 (11-01-2016),metalrelic (10-20-2016),mexer45 (11-01-2016),MGC178 (10-23-2016),micky1200 (10-16-2016),mielooo (10-14-2016),miguelmineiro (10-18-2016),miguelonge (10-16-2016),mihim (10-14-2016),mika13 (05-07-2018),MikeKan123 (10-16-2016),miketogood25 (10-15-2016),mikslap (10-18-2016),MineloPL (10-14-2016),minhbh113 (10-16-2016),Mink1950 (10-17-2016),Minorxx (10-19-2016),misfits5616 (10-30-2016),misiek121 (09-20-2017),Misterbobbie (10-25-2016),Mister_GraVity (10-30-2016),MistyPaws (10-16-2016),mmahdi_mah (10-13-2016),mocchiro (10-22-2016),mohammed hanifa (10-24-2016),MolagHax (11-11-2016),Mongolete (10-18-2016),monkeymon2000 (10-30-2016),monstergamer64 (10-26-2016),montasso (10-13-2016),MoodMan (10-16-2016),moogii96 (11-04-2016),moohd+ (10-17-2016),mookielolz (10-20-2016),moon2292000 (11-05-2016),more4filipe (10-31-2016),MorphioSolus (11-07-2016),MortalAero (10-27-2016),Moshe Kasa (11-08-2016),mosheeli (10-20-2016),Mr.Cucumba (11-07-2016),MrBossUPYT (10-22-2016),mrchicken1227 (10-16-2016),Mrdashti (11-23-2016),MrDindu (10-24-2016),mrham (10-14-2016),mrhogiboyz5 (10-17-2016),MrRauL124 (10-16-2016),MrToggley (10-19-2016),mrViteR (10-14-2016),MSDDragon1247 (10-15-2016),MthsBR (10-15-2016),MuxiWuxi (11-27-2016),MyLittleEmber (10-14-2016),n170053 (10-14-2016),n1MbuZ (10-14-2016),Na Ma (11-08-2016),Nad3r (12-22-2016),nails_go_deep (10-19-2016),Nakazawa (10-25-2016),namckth (10-14-2016),nameLee (10-14-2016),Namonay (10-15-2016),Narcolepsy (11-02-2016),NarkiGer (11-12-2016),nashiji (10-22-2016),Natarat (10-15-2016),natedoggie1999 (10-14-2016),ndelatte000 (10-15-2016),neasas (10-18-2016),Nee0x (12-04-2016),NeerajMSharma (10-22-2016),Neidra (07-30-2019),Nelvarzien (10-15-2016),Nerdivist_ (11-06-2016),netlife (11-16-2016),NeToKu (10-29-2016),neukku (10-20-2016),Neving (10-21-2016),NFS98 (10-19-2016),ngised (12-12-2016),NGoNinjazZ (11-10-2016),Nic042 (11-13-2016),nicehop123 (10-30-2016),nickolas2016 (11-07-2016),nickyacc (10-31-2016),Nick_Clone (10-14-2016),nicolasmot (10-28-2016),NiedrigeBitrate (11-11-2016),nikitastealth (10-14-2016),Nikolai213 (10-14-2016),Nitsuaxz (10-23-2016),NN6464 (10-16-2016),Noamtheking12 (10-15-2016),nobo1111 (10-17-2016),Nobuharu (11-03-2016),nodickbutt (10-27-2016),nognig (10-13-2016),noiseotrem (10-28-2016),nomeacuerdodenada (10-19-2016),NonePred (10-30-2016),nounourslolxd (02-22-2017),NSarkozy (10-16-2016),nthxbing (10-15-2016),ntm86 (11-06-2016),nub2017 (11-15-2016),NUISE (10-14-2016),oficialjaoplay (10-16-2016),ohboydoilovemesomememes (10-16-2016),ohjeey (10-15-2016),OhWenki (10-16-2016),Okay22 (11-05-2016),okok79321 (10-14-2016),OlesenDK (10-15-2016),oliveira22 (11-01-2016),oliverejbyv2 (03-16-2017),omaaia (11-08-2016),omar_mota45 (11-12-2016),omglobo (10-24-2016),OnNightFighte (11-07-2016),opog (10-24-2016),orcaninja (10-27-2016),ornkloer (10-15-2016),OsakaKun (11-08-2016),otemenking (10-13-2016),Otter1122 (10-23-2016),OzDannyM (10-22-2016),Pa0049 (11-10-2016),PaddingtonBear63 (10-14-2016),padopado (11-01-2016),pagottops (10-22-2016),panda9999 (10-16-2016),pandaffu (11-07-2016),PanzerSGR (10-19-2016),ParthC13 (10-13-2016),pasha526 (11-02-2016),pashaa (11-01-2016),passeord2003 (10-15-2016),paulinjo (09-23-2018),pauloalt30 (10-14-2016),payskill2 (10-17-2016),Peeete (10-16-2016),pekkapeki (11-01-2016),Peoplehate (10-17-2016),PerePrm (12-11-2016),PeroxidePlays (10-16-2016),PES28 (10-18-2016),petersanjy (10-18-2016),PEZZISBACK (10-17-2016),Phant0mFACE (10-18-2016),philip1979 (10-24-2016),Phonka (10-25-2016),PhucLe1234 (10-30-2016),PicklesMPG (10-13-2016),Pingtapen (10-19-2016),piroco (10-27-2016),pitbul_1992 (10-21-2016),pizzamain (11-03-2016),pkhovela1 (10-17-2016),Platinum (10-20-2016),Pmamado (11-04-2016),pokedava (10-19-2016),Pokinoff (10-28-2016),pop12319237 (10-15-2016),PornFlakesGR (10-16-2016),Powablocks (10-27-2016),powchicken (10-29-2016),predator62969 (10-15-2016),prime_drizzle (04-30-2017),prosec. (11-11-2016),prozaxaoe (10-18-2016),ps645527 (03-18-2017),psychoporno (11-07-2016),qi888 (11-06-2016),qq1405079599 (11-05-2016),qq3546354 (10-18-2016),qspawsxp (10-14-2016),quickflcik13 (01-28-2017),qwttww (10-27-2016),r7odancos (12-05-2016),Raf657 (10-16-2016),Rafalotis12 (10-26-2016),RageGaming (10-15-2016),rain247 (11-07-2016),RainbowSheep4 (10-15-2016),rainingwrath (10-25-2016),rakib ahmed (11-20-2016),Randomness123123 (10-17-2016),randzen (10-18-2016),rasor (10-19-2016),raul346 (12-08-2016),rausse (10-19-2016),raving1 (11-09-2016),rawribite123 (11-01-2016),Rchevyier (10-31-2016),Rdcestor (11-13-2016),Reallydude11 (11-05-2016),Reallydude12 (11-08-2016),realtrempskii (11-04-2016),RealZaiko (10-17-2016),RedEagleEye (01-25-2017),redspyder986 (10-24-2016),Refiola (10-15-2016),rehan444 (11-06-2016),rekusan (10-15-2016),relvinhas (12-17-2016),remmen (10-24-2016),RGGERHRWEHERHerherhre (10-13-2016),Rhodn3Y (10-15-2016),RichardListon (11-05-2016),Rikkeroll (10-30-2016),Riko11111 (10-26-2016),Rivermar (11-12-2016),rkool101 (10-15-2016),Roaryn (10-13-2016),RobertT.V. (11-01-2016),ROBINGREENFIRE (11-07-2016),robotmanA1 (10-20-2016),RockABillyKilla (11-01-2016),Rockstarcockstar (10-28-2016),Rocky2u (10-13-2016),rodrigo_1 (10-16-2016),Roesii (10-29-2016),rohamen6060 (11-01-2016),roland722 (10-22-2016),rolllamcjhonson (10-30-2016),Rolplay12 (10-30-2016),Romain54 (10-18-2016),romanov322 (10-15-2016),Rompex23 (10-17-2016),ronpix (11-10-2016),rosscolloyd (10-20-2016),roybuffy (10-16-2016),rrss90 (10-19-2016),rsPhat (10-15-2016),RuinerOfFun (10-14-2016),RunningWithCare (10-16-2016),russianbear232 (10-15-2016),rustyporkchop (10-20-2016),ryandavk (11-20-2016),s326652293 (10-14-2016),S3NT1MZ (10-22-2016),s78594 (10-20-2016),Saberbean (10-17-2016),sabotadamassa (04-24-2018),sadboy2002 (10-18-2016),sage29 (10-15-2016),sahbit1488 (11-12-2016),samboc2000 (10-25-2016),samey100 (10-20-2016),SaMuRaiPT (10-28-2016),SanGeki (11-09-2016),savagepredator (11-06-2016),sch0398 (11-05-2016),schnookjcrook (11-01-2016),Schokowaffel (10-16-2016),Schweiniii (10-20-2016),ScoTDevil (10-15-2016),Scough (10-17-2016),Scraseyboy (11-12-2016),scubs (10-13-2016),sebbetheman (11-26-2016),SelectiveAMN (10-17-2016),septuplex7 (10-15-2016),SergeantMonkey (10-14-2016),SerhadYnl (10-19-2016),Sexctasy (10-16-2016),Sexmasterka2 (11-10-2016),SgtSwiggles (11-04-2016),Shadow0w (10-18-2016),ShadowAtlas1 (10-23-2016),shaharsh1 (10-28-2016),shanks2727 (10-21-2016),SharksHacksMods (07-13-2017),shaunmods (10-13-2016),Shaw1231234124 (10-19-2016),shawnbabin10 (10-20-2016),ShawnDTD (10-19-2016),shaxvideos (04-27-2017),shayyz (10-18-2016),Sherman_ (10-16-2016),shurkinstar (10-31-2016),sidorandrei15 (10-15-2016),silviadeadshot (10-27-2016),SimiMinion (10-28-2016),Simonitorufer (10-23-2016),simonn891 (04-16-2018),sinadey (12-07-2016),sinsobaki (12-20-2016),sioncess (10-17-2016),SirPancakesXD (10-21-2016),Six String (11-02-2016),Skaebne (10-18-2016),Skibaah81 (10-14-2016),sky770 (10-16-2016),skylan0626 (10-29-2016),skytunn (10-14-2016),SLAYERab (10-18-2016),slidehigh (10-19-2016),Slidering (10-16-2016),smalltimo (11-09-2016),smashballs (10-16-2016),SN00PY468 (10-15-2016),SnakeIce123 (10-15-2016),snk12 (10-19-2016),sohoabc758 (10-15-2016),something357 (11-06-2016),songvae (11-03-2016),Soppendin (11-08-2016),souroiam (12-06-2016),spammerx (10-24-2016),Spinethetic (11-08-2016),Squideh555 (10-13-2016),Sr.Small (10-19-2016),stakiexstarrr (11-07-2016),Starh's Princess (10-14-2016),stefanmenjac (10-14-2016),STERLING321645 (12-25-2016),Steve18778S8 (11-17-2016),stevenkane (10-15-2016),StevenZR (10-15-2016),Stop-_-Sniping (10-25-2016),Strikesas (10-22-2016),Strimose (10-18-2016),Sturzelhuber (10-16-2016),Subamaru (10-21-2016),sugavip (10-13-2016),Sugih99 (10-14-2016),Summit1gg (10-16-2016),sunfluwer (10-30-2016),supamonkeyz (10-17-2016),SuperChiken (10-16-2016),supericeman3 (10-28-2016),swwrgaersghaedrgedrgherdhg (10-13-2016),sycassidy (11-21-2016),synthwave80 (10-24-2016),synthzz93 (10-17-2016),Syranaar (10-23-2016),szaki1997 (10-25-2016),tamme12 (10-14-2016),tarkgor (11-03-2016),tegarseptian (10-23-2016),teo bovyn (10-22-2016),TernA (10-15-2016),terraria56789012345 (10-26-2016),Tf5089 (10-28-2016),Th3Kev (10-17-2016),TH3M4F14 (11-06-2016),Th3Surgeon (11-02-2016),thaina (10-23-2016),thanawich (10-16-2016),thanhcb2210 (10-13-2016),Tharox21 (10-30-2016),THE GOKU (10-24-2016),TheAlphaFixX (10-15-2016),thebas19 (10-16-2016),thecarter (10-22-2016),TheCrusader (10-14-2016),theDARKW0LF (10-15-2016),thelast warrior spirit (10-16-2016),thelolnator (10-28-2016),TheNooBinPerson (10-22-2016),theonex1x (11-03-2016),theralio1 (10-28-2016),thescorpy0n (10-23-2016),theseeker2544 (10-18-2016),theshake98 (10-14-2016),TheSqueekyVoice (11-26-2016),TheSuperSage (10-31-2016),thevoidfox (10-30-2016),the_killer29545 (11-03-2016),Thiagobro2001 (10-15-2016),thick whanger (10-31-2016),This is dumb (10-16-2016),Tholfgan (10-25-2016),thrustodyne198 (10-26-2016),ThugLifelhaS01 (11-13-2016),thurrunn (10-17-2016),Tiagyx-qwe (10-20-2016),TiltedTeaCup (11-11-2016),timgtav1704 (10-27-2016),TinyPianist (10-19-2016),Tippitoppi (10-16-2016),TiranPlayer (10-19-2016),titi4121 (10-29-2016),titioavo (10-17-2016),Tomahobbit (10-29-2016),tomokinming (11-02-2016),tom_26 (11-06-2016),Tony20101 (11-08-2016),TorettoDominic9 (10-31-2016),ToSisKos (10-15-2016),TotodileZ (10-31-2016),toxicrampage (10-24-2016),ToxicTaco (10-31-2016),tptim (10-22-2016),trainergta (10-23-2016),trevaryn1 (10-21-2016),Tristn1 (11-03-2016),trollluke (10-17-2016),truestorygaming (10-22-2016),tryhardyoda (10-16-2016),tskyhust (10-21-2016),ttbb (10-17-2016),tuanthanhct1 (11-01-2016),Tumamametoca123 (10-22-2016),tummyz1234 (10-17-2016),TuNNer_MKD (10-14-2016),Turdleman (12-01-2016),twigling300 (10-25-2016),twinikie (10-14-2016),TwistedBadazz (04-10-2017),twoinw (10-18-2016),Twonick2635 (10-21-2016),tyguy2002 (10-17-2016),TYLERREED01 (10-14-2016),TyrannicalTentacles (10-22-2016),UA_Spire (10-13-2016),Uninstalled (11-02-2016),unluggyoce (11-08-2016),unnti (10-20-2016),uNogueira (11-13-2016),UselessCunt (11-12-2016),uzushiha (10-14-2016),v1rtu4l25 (10-14-2016),v4por (10-26-2016),vaderkins (10-14-2016),valentino9990 (10-18-2016),VALok (10-15-2016),vansaiyuki (10-14-2016),vatekfr (10-16-2016),vaykorhek (10-26-2016),Versalys (10-28-2016),VeTeBeEr (10-26-2016),vichou (10-14-2016),videos0251 (10-19-2016),vietnhat97 (10-14-2016),Viking080 (10-23-2016),vinipaul101 (12-02-2016),vinir37 (10-15-2016),vinniepaz301 (10-18-2016),VinylsMods (10-29-2016),Vjaceslavs (11-01-2016),vjkopet (10-19-2016),VJSGaming (10-14-2016),Vorovatakamee (10-15-2016),vvdsvsdv (10-16-2016),VY_WAGGZ (10-27-2016),vzander (11-02-2016),W0LFIE (11-11-2016),w0wsers69 (03-14-2017),wabaiyn1314 (10-19-2016),Wafel71 (11-26-2016),Wainfree (10-17-2016),wankenobi (10-24-2016),WarLornsBoss (10-14-2016),wchan35 (10-14-2016),weinmax (10-15-2016),weshh (10-15-2016),whabig (10-18-2016),Whiskeytango29 (10-16-2016),widemouth (10-27-2016),wilcomega (11-04-2016),williamcottam99 (10-28-2016),williamtunila (11-11-2016),Willswanson13 (10-15-2016),wl789789666 (10-16-2016),WolfGun (11-01-2016),Wolfinity (11-05-2016),wozjhua0 (10-18-2016),wRideR (10-22-2016),WTF6 (11-10-2016),wuzimu01 (11-11-2016),wwr914 (10-16-2016),wwwray1 (11-13-2016),x24160048x (10-18-2016),xAsmoo (10-17-2016),xaxaruski (11-02-2016),xdaribox (11-12-2016),Xdemondude26X (12-26-2016),XDPVPHD (11-06-2016),xFloow (10-17-2016),xhan585858 (11-12-2016),xiaojionglianA (10-20-2016),xKraperrr (10-17-2016),Xlouisnet (10-27-2016),xMitroModz (10-16-2016),xmrsam (11-03-2016),XReQExtremeX (01-28-2017),xSariel (10-17-2016),xTapska (10-16-2016),xuuser (10-14-2016),xxomg74 (10-30-2016),xylenegaming (10-14-2016),xymor (11-10-2016),xZBR (10-21-2016),y2967174932 (10-29-2016),yaayee (10-22-2016),yaboii123 (04-16-2017),yahiyif (11-12-2016),yallenu (10-14-2016),yanzhen0610 (10-15-2016),yeahlowflicker (10-26-2016),YIGRAMAN (10-14-2016),yocrysis (10-16-2016),Yodafrack (10-20-2016),Yoit'sEquinox (10-16-2016),Yoshimaster (10-16-2016),youareugly111 (10-15-2016),YouGood (10-21-2016),Yourmamasballs (10-13-2016),YoutubeGolem (10-15-2016),Ypzilon123 (10-14-2016),yukut26 (10-31-2016),yungsqueaky (10-15-2016),yureesamp (11-07-2016),Z-Nation (10-16-2016),zacharyjayz (11-06-2016),Zaloy12 (11-02-2016),Zane (10-18-2016),ZarqV2 (10-16-2016),zby03772016 (10-20-2016),zeenaku (10-28-2016),ZenjiMatsuki (10-30-2016),ZeoOneEleven (10-30-2016),Zeronie (11-19-2016),zFir (11-19-2016),zfqx111 (10-14-2016),zgw (11-02-2016),Zhan1KNight (10-30-2016),Zhess (10-19-2016),Zhico (10-25-2016),Ziiforia (11-10-2016),Zimba111 (10-16-2016),Zombyy (04-13-2018),ZomZiom (10-30-2016),ZoroxTR63 (10-15-2016),ZTYT (10-16-2016),zx80808588 (10-14-2016),zym1998year (10-25-2016),zzjyu (11-11-2016),zzz163519 (10-14-2016),_Bambino_ (12-09-2016),_GhostZ_ (10-24-2016),_HxPPY (10-30-2016),__Hops__ (10-16-2016),__iSuQ? (10-18-2016),~~TSK~~Dragon (10-21-2016)

  3. #2
    Smoke's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    11,899
    Reputation
    2661
    Thanks
    4,610
    My Mood
    Amazed
    Approved.

    Use at your OWN risk.


    CLICK TO BUY NOW!!


    Quote Originally Posted by Liz View Post
    This is my first vouch, ever. Rapidgator account worked perfectly. Would buy in the future.

  4. The Following 2 Users Say Thank You to Smoke For This Useful Post:

    MikeRohsoft (10-13-2016),scubs (10-13-2016)

  5. #3
    scubs's Avatar
    Join Date
    Aug 2016
    Gender
    female
    Posts
    9
    Reputation
    10
    Thanks
    3
    My Mood
    Amazed
    Nice release and nice Mods for the very fast approval!

  6. #4
    jjw337's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Posts
    19
    Reputation
    10
    Thanks
    2
    Solid release; everything i've tested is working well at the moment!

    EDIT: i'm getting MGTA crashes when trying to change gravity for vehicles

    Thanks for the continued work Mike
    Last edited by jjw337; 10-13-2016 at 05:51 PM.

  7. #5
    Hakkz0r's Avatar
    Join Date
    Jun 2016
    Gender
    male
    Location
    UY Scuti
    Posts
    29
    Reputation
    10
    Thanks
    5
    My Mood
    Buzzed
    Brilliant job!

  8. #6
    Moonerunit's Avatar
    Join Date
    Nov 2013
    Gender
    male
    Posts
    13
    Reputation
    10
    Thanks
    0
    doesn't work for me

  9. #7
    PornSeeker's Avatar
    Join Date
    Apr 2014
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    1
    My Mood
    Lonely
    yea doesn't seem to work for me either, I even tried renaming the menu.xml

    EDIT: When I ran the program as admin it fixed my issue, works great thank you
    Last edited by PornSeeker; 10-13-2016 at 04:39 PM.

  10. #8
    skydoesodgcraft's Avatar
    Join Date
    Jun 2016
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    The gravity doesn't work, just makes the hack stop working and crash. Besides that, everything seems to be working excellent! Good Job Man!

  11. #9
    Gibba's Avatar
    Join Date
    Oct 2015
    Gender
    male
    Location
    Home
    Posts
    193
    Reputation
    20
    Thanks
    49
    My Mood
    Tired
    what exactely is the sirius script for? i only keep teleporting between 2 locations...

  12. #10
    D4nny_'s Avatar
    Join Date
    Sep 2016
    Gender
    male
    Posts
    255
    Reputation
    10
    Thanks
    1,120
    My Mood
    Cheerful
    thank you so much Mike, you're the best

    - - - Updated - - -

    Quote Originally Posted by lennardhelder View Post
    what exactely is the sirius script for? i only keep teleporting between 2 locations...
    it is a time trial(money) hack, get in a car and start it

  13. #11
    veedubb's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    0
    Two questions... Does godmode work in solo session jobs? And does it also work for free falling from planes without parachute?

  14. #12
    Gibba's Avatar
    Join Date
    Oct 2015
    Gender
    male
    Location
    Home
    Posts
    193
    Reputation
    20
    Thanks
    49
    My Mood
    Tired
    Quote Originally Posted by D4nny_ View Post
    thank you so much Mike, you're the best

    - - - Updated - - -



    it is a time trial(money) hack, get in a car and start it
    nice, and thanks for the fast reply!

  15. #13
    MikeRohsoft's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Los Santos
    Posts
    797
    Reputation
    593
    Thanks
    26,314
    Quote Originally Posted by veedubb View Post
    Two questions... Does godmode work in solo session jobs? And does it also work for free falling from planes without parachute?
    yes yes // 2short

  16. #14
    D4nny_'s Avatar
    Join Date
    Sep 2016
    Gender
    male
    Posts
    255
    Reputation
    10
    Thanks
    1,120
    My Mood
    Cheerful
    Quote Originally Posted by veedubb View Post
    Two questions... Does godmode work in solo session jobs? And does it also work for free falling from planes without parachute?
    im pretty sure it works, i turned on godmode and bulletproof at the same time and a RPG cant kill me hope that helps

  17. #15
    DarkUprizer's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    0
    Wonderful work again as usual Mike.

Page 1 of 25 12311 ... LastLast

Similar Threads

  1. [Outdated] Mike's GTA RP Script
    By MikeRohsoft in forum Grand Theft Auto 5 (GTA V) Hacks & Cheats
    Replies: 142
    Last Post: 12-10-2016, 05:16 PM
  2. [Outdated] Mike's GTA Hax 1.36 [External Menu]
    By MikeRohsoft in forum Grand Theft Auto 5 (GTA V) Hacks & Cheats
    Replies: 121
    Last Post: 10-13-2016, 03:45 PM
  3. [Outdated] Mikes GTA H4x 1.35 [External Menu]
    By MikeRohsoft in forum Grand Theft Auto 5 (GTA V) Hacks & Cheats
    Replies: 135
    Last Post: 10-04-2016, 01:01 PM
  4. [Outdated] Mike's GTA H4x Menu 1.35 Beta
    By MikeRohsoft in forum Grand Theft Auto 5 (GTA V) Hacks & Cheats
    Replies: 125
    Last Post: 09-20-2016, 06:21 PM
  5. [Outdated] Mike's GTA H4x Menu 1.35 Alpha
    By MikeRohsoft in forum Grand Theft Auto 5 (GTA V) Hacks & Cheats
    Replies: 88
    Last Post: 08-27-2016, 10:57 PM