Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 06/16/2023 in all areas

  1. Version 2.23.0

    28,015 downloads

    OPEN SOURCE & NO UPDATE AGAIN PACKAGE PLAYSTORE ARM V8 ONLY [ CHEAT MENU ] One Hit Stop Enemy Unlimited Coins Unlimited Gems Unlimited Level 999 Unlimited Everything Unlock Echantment Free Echantment Damage No Block Power Hit Unblockable Attack Auto Play Dump Ai Drunken Master Hit Combo Longrange Hit Telegram: t.me/kabutxhitam Group Telegram: t.me/kabuthit
    2 points
  2. Version 1.14.6

    2,155 downloads

    Arm v8 / 64 bit only Package: Playstore [ CHEAT MENU ] 1. Free Boat Upgrade 2. Free Robot Level Upgrade 3. Robot Level Up 4. Skin Unlocked 5. Instant Unlock Season Pass 6. Ignore Battle 7. Free Shopping 8. Achievement Complete 9. Bussines Point Upgrade *[ set gg to anonymous ]* Work on virtual, i recommended for root devices my telegram: @kabutxhitam grup telegram: t.me/kabuthit my facebook: Kabut Hitamm
    2 points
  3. Starting from version 8.28.0 GG have support of LUA scripts. It can be loaded and run. https://www.lua.org/manual/5.2/manual.html Scripting Documentation: https://gameguardian.net/help/
    1 point
  4. Version 12.2.2.4.3

    8,537 downloads

    REAL RACING 3 CAR CHANGER Working RR3: 12.2.2 Current version: 12.2.2.4.3 Description: Change car at will. Instructions: Execute Step 1 in the garage by selecting the desired car, then go to the race and replace the car with the one previously selected by running Step 2 Known issues: May not work in some devices. Search mode does not work in omp (x64) Video:
    1 point
  5. Version 12.2.2.5.1

    38,644 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:
    1 point
  6. I could only do money by editing the sell value of a property. That's what the script should do.
    1 point
  7. It's an old script but you could try to see if it works: FootballAgentE.lua
    1 point
  8. teleportMenu.lua Separated script, you can use for now till its implemented as mentioned above.
    1 point
  9. Avoid use global variables Global variables is slow. Also if you put local gg = gg At top of your script it can speed up it. Just one line. Now see tests: local n = 1000000 local t = os.clock() for i = 1, n do gg.isVisible() end t = os.clock() - t print('use global gg: '..t..' seconds') local gg = gg local t = os.clock() for i = 1, n do gg.isVisible() end t = os.clock() - t print('use local gg: '..t..' seconds') a, b, c = 1, 2, 3 local t = os.clock() for i = 1, n do c = a + b end t = os.clock() - t print('use global vars: '..t..' seconds') local a, b, c = 1, 2, 3 local t = os.clock() for i = 1, n do c = a + b end t = os.clock() - t print('use local vars: '..t..' seconds') Results: use global gg: 2.138 seconds use local gg: 1.6 seconds use global vars: 2.068 seconds use local vars: 0.727 seconds It is not big difference, because I run it on powerful emulator. On real device it can be more slow. You can see disassembled code - for global vars need more Lua instructions, so it more slow in any case. Upvalue too slow, Because of that better define local copy of var in places where you need optimization. For example huge math.
    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.