Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/27/2021 in all areas

  1. New version 10.0.1.3.8 released!
    7 points
  2. 5 points
  3. 3 points
  4. Version 12.2.2.5.1

    37,751 downloads

    REAL RACING 3 RACE MODE Current version: 12.2.2.5.1 RR3 working version: 12.2.2 Description: With this script you can enable/disable following hacks: - Autodrive Mode - Drag Autolaunch/Autoshift - Freeze Mode - Ghost Mode - KickAss Mode (not helpful if you active ghost mode too) - Set formula-e battery to 100% Works with standard and rolling start Instructions: Run this script after signal light has turned green. Video:
    2 points
  5. The problem is because you use comma (",") as decimal separator. Use dot (".") instead. gg.searchNumber('2.38220739e-44', gg.TYPE_FLOAT) This is also mentioned in documentation: https://gameguardian.net/help/scripts_locale.html
    2 points
  6. Version 12.6.8.6.3

    29,780 downloads

    REAL RACING 3 CARS/EVENTS UNLOCKER Current version: 12.6.8.6.3 Working RR3: 12.6.8 Description: Run this script to unlock all cars and old closed events/races!!! Instructions: Run the script wherever you want, then go to the garage and get any car for free (also old nascar cars). Script will re-open old finished events Known issues: May not work on all devices/emulators. Note: Video:
    1 point
  7. View File Car Parking Multiplayer Lua Script Hi nice to meet you peeps im LeviaC! This script is for car parking multiplayer v4.6.5 Password is : 1356 Here's the feature of this script Buy people's car for free (online) Chrome Color Magic Chrome Color Money Hack (1st Level) Walkthrough walls/Wallhack Speedhack Car Glitch Submitter brokenexile1 Submitted 05/10/2020 Category LUA scripts  
    1 point
  8. Version 12.0.1.1.2

    3,132 downloads

    REAL RACING 3 EVENT UNLOCKER Current version: 12.0.1.1.2 Working RR3: 12.0.1 Description: Unlock time based events. Instructions: Run the script and choose the date of the event to unlock. Known issues: none Video:
    1 point
  9. Version 11.5.1.4.1

    16,665 downloads

    REAL RACING 3 AUTOVIP HACK Working RR3: 11.5.1 Current Version: 11.5.1.4.1 (64bit only) Description: Run this script to make all cars vip/novip in one go. Instructions: Run the script. Video:
    1 point
  10. Version 11.6.1.5.12

    32,530 downloads

    REAL RACING 3 AUTOWiN HACK Current version: 11.6.1.5.12 RR3 working version: 11.6.1 Description: Automatically win any race without play. Instructions: 1. Before run this script is highly recommended to logout and restart the game. 2. Win your wished serie then go to profile and check total completed events. 3. Restart the game again. 4. Check total completed events again to see if something went wrong. If you run script in background (default) you have to stop it manually After several wins a game restart is racommended too. Run the script then select any race to win it automatically, or, if you don t run it in background, select race before run the script. Known issues: After several races the game can become unstable, so occasionally restart it to avoid game crashes and loss of game progresses. Video:
    1 point
  11. Version 7.7.7

    79,925 downloads

    A collection of more than 50 game scenarios is available in English and Russian • Game list: Archero Assassins Creed: Rebellion Basketball Arena Bullet Echo CATS: Crash Arena Turbo Stars Day R Premium Day R Survival Days After Dead by Daylight Mobile Emergency HQ FZ9: Timeshift Fallout Shelter Online FarmVille 2: Country Escape Gladiators: Survival in Rome Goose Goose Duck Grim Soul Guild of Heroes Hide Online Horrorfield Infinity Ops Injustice 2 Into the Dead 2 Jurassic Survival Last Day On Earth: Survival Left to Survive Legend of Ace Marvel: Contest of Champions MaskGun Mech Arena: Robot Showdown Mortal Kombat Motorsport Manager Mobile 2 Motorsport Manager Mobile 3 Mutiny: Pirate Survival Pokemon Quest Raft Survival: Ocean Nomad Rebel Inc Rebel Racing Shadow Fight 3 Shadowgun Legends Soul Knight South Park: Phone Destroyer Standoff 2 Star Wars: Galaxy of Heroes Suspects: Mystery Mansion Tacticool The Elder Scrolls: Blades The Walking Zombie 2 Transformers: Earth Wars Warface: Global Operations Westland Survival Word of Tankers Blitzkrieg Zooba Zula Mobile Mega_Script.lua
    1 point
  12. Version 10.4.3.2.6

    16,637 downloads

    REAL RACING 3 PLAYER PROFILE HACK Working RR3 version: 10.4.x Current version: 10.4.3.2.6 Description: Change player profile statistics: eraned/spent r$, gold and m$, total time played, player level, trophies won and total upgrades installed. Instructions: Logout and disconnect device, then run the script and edit your stats. Known issues: Not working with all devices. Do you have problems changing currency? Try this Video
    1 point
  13. It seems to be some kind of global state variable to control whether main menu should be opened immediately after execution returns to main loop. But more often than not such behavior isn't needed and when it is so, the variable becomes redundant and can be removed. Main loop can be then replaced with the following typical one: while true do if gg.isVisible() gg.setVisible(false) Test() end gg.sleep(100) end
    1 point
  14. hmm.. base on your script...thats probably whats he want.(maybe) press cancel will hide the script menu but press GG logo again will bring back the menu that you had left before..not the very first menu(main). he did mention his script had various menu by a lot and so on..so on(parts i dont have clear understand)
    1 point
  15. We dont understand what you mean too. it will be great if you explains more clear. This is what i think you need. may be wrong ok.lua
    1 point
  16. so weird i didnt notice it before.. what does the "Homedm = -1" do in a function really? what its relation with this below? while true do if gg.isVisible(true) then Homedm = 1 gg.setVisible(false) end if Homedm == 1 then A() end hope someone more expert can give some insight on this. @CmP maybe?
    1 point
  17. i don't understand what you mean, i tried with a piece of code like this, and when i click cancel the menu is always hidden, no matter what menu! X = {"A","B"} function A() menu = gg.choice(X,nil,"Menu A") if menu == 1 then B() end if menu == 1 then B() end Homedm = -1 end function B() menu = gg.choice(X,nil,"Menu B") if menu == 1 then C() end if menu == 1 then C() end Homedm = -1 end function C() menu = gg.choice(X,nil,"Menu C") if menu == 1 then A() end if menu == 1 then A() end Homedm = -1 end while true do if gg.isVisible(true) then Homedm = 1 gg.setVisible(false) end if Homedm == 1 then A() end end
    1 point
  18. because im clearly not understand you? your details are all over the place and i cant visualize a clear picture of it.
    1 point
  19. this..? while true do if gg.isVisible(true) then HOMEDM = 1 end if HOMEDM == 1 then gg.setVisible(false) Test() end end
    1 point
  20. Such script is pretty simple, just need to call several functions of GG API: gg.clearResults() -- Clear results list to ensure that new search will be started gg.searchNumber("17", gg.TYPE_DWORD) -- Search for the value gg.getResults(100) -- Load first 100 results gg.editAll("0", gg.TYPE_DWORD) -- Edit loaded results Information about GG API functions including descriptions and examples of usage can be found in the documentation, link to which is in the post above by @blocx.
    1 point
  21. Version 9.8.4.3.6

    11,505 downloads

    REAL RACING CAR HACK Current version: 9.8.4.3.6 RR3 version: 9.8.4 Description: Edit top speed, acceleration, braking and grip of your cars. Instructions: Select the car into garage then run the script. You can edit standard and fully upgraded cars, but not partially upgraded cars. ATTENTION IF YOU CHANGE TOP SPEED YOU MUST RESET CAR VALUES MANUALLY OR THE SPEED WILL REMAIN ALTERED ALSO AFTER GAME RESTART!!! Know issues: - You can set top speed only for fully upgraded cars (use car upgrader) - Not working for motorsports upgrades system. BiG Thanks to @impy for top speed! Video:
    1 point
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.