All Activity
- Past hour
-
I’m sorry, yea I should more pay attention on the rules. Oh yea the golden ticket they already fix it. The code its not working anymore cc @MonkeySAN
- Yesterday
-
Hello, I was trying to post a script today. But I noticed some sections were grayed out. Announcements section and archived section are grayed out, so I guess that means I don't have permission to post there. That makes sense. But other things are grayed out too, with no obvious connection or reason. For example, I can post lua scripts for most of the sections, like free fire, forward assault, and templates - but not in "Virtual Space" and other. I can post in altering online games with gameguardian, but not in download mods. Is this because of my one warning point that says it has no effects applied? Is it a glitch? I was about to post a script to the community, but I can't. Please help me ASAP so I can get back into the community! "" @Enyby
-
You need android 7 or 11 or 12, I believe. Actually, he was somewhere close to that. Yes, it was true that you could only buy weapons that did not show up in the armor (were marked with a ? mark). However, in 22.4.0, the devs just unpatched it because they are idiots who can't code or test a game! Actually, yes, there were exactly right! Before 22.4.0 that was the case.
-
You can even make it remember the state after restart as shown here
-
M Sponsored Links Ctrl+HHelp?Ctrl+JDownload Opera GX: The Browser For GamersCtrl+GPlay Enlisted: Lead your squad of soldiers in large-scale online combat
-
multiChoice multiChoice remember checkbox after execute
HEROGAMEOfficial replied to 1x1's topic in Help
Try: me.lua @Enybyi can't inset Lua program in here. -
for Level 1 gadget. Float values may change when gadget get upgrade. Screenrecorder-2022-05-16-11-12-40-265.mp4 edited values stay as long as you are still in the game. once restart..need to search the original values again.
-
Give us a clue
-
local selection = {false, false} function start() local multiMenu = gg.multiChoice({'hack health', 'hack mana', 'Exit'}, selection) if not multiMenu then return end if multiMenu[3] then print('Exited') os.exit() end selection = multiMenu end while true do if gg.isVisible(true) then gg.setVisible(false) start() end end
-
I am not sure if it will work. try dump metadata from memory instead of taking it from apk.
-
Real Racing 3 Real Racing 3 (10.4.x) Car Changer
GamerLucifer commented on MarioRossi93i's file in LUA scripts
- 16 comments
-
- realracing3
- RR3
- (and 4 more)
- Last week
-
Real Racing 3 Real Racing 3 (10.4.x) Car Changer
GamerLucifer commented on MarioRossi93i's file in LUA scripts
- 16 comments
-
- realracing3
- RR3
- (and 4 more)
-
New version 10.4.2.1.2a released!
-
Real Racing 3 Real Racing 3 (10.4.x) Car Changer
MarioRossi93i replied to MarioRossi93i's topic in LUA scripts
New version 10.4.2.2.14 released!- 23 replies
-
2
-
- realracing3
- RR3
- (and 4 more)
-
well...this still working.
-
Sir can u modify taichi panda game it's really good game. If U can increase game character hp or high damage and reduce cool down skills .I have posted game link plz if U can look . https://play.google.com/store/apps/details?id=com.snailgameusa.tp
-
-
This isnt working for me as well.
- 59 replies
-
- Real Racing 3
- RR3
-
(and 1 more)
Tagged with:
-
Real Racing 3 Real Racing 3 (10.4.x) AutoViP Hack
MarioRossi93i replied to MarioRossi93i's topic in LUA scripts
try to use this rr3_car_vip_hack.v9.3.0.2.12.bin.lua- 19 replies
-
- RR3
- realracing3
-
(and 3 more)
Tagged with:
-
Hello, so i wanted to make a save multiChoice checkbox after executing. So i have the code for gg.choice: function START() local Menu = gg.choice({"Button 1", "Button 2", "Exit"}, abc, 'Hello button") if Menu == 1 then abc = 1 end if Menu == 2 then abc = 2 end if Menu == 3 then os.exit(print("Bye")) end abc = 0 while(true) do if gg.isVisible(true) then gg.setVisible(false) Start() end end But the problem is, i don't know how to do the same thing like Choice but in multiChoice. Please help