Search the Community
Showing results for 'Chainer script'.
Found 10,000 results
-
Can't do a search if don't use memory range "Other"
Count_Nosferatu replied to Tama7's question in Help
This is not possible now. It’s easier to add a check to script, like this: ... gg.setRanges(gg.REGION_ANONYMOUS | gg.REGION_C_ALLOC) -- default for x32 if gg.getTargetInfo().x64 then gg.setRanges(gg.REGION_C_ALLOC | gg.REGION_OTHER) end ... -
View File SimCity BuildIt Free Script by Itsmieve Click Video here Join my Discord Submitter itsmieve Submitted 11/10/2024 Category LUA scripts
-
-
Thank you, the script works but after running it, not only the value 0 is deleted... but several other codes are also deleted. Is there something wrong with the way I write the contents of my script? Here I use the QuickEdit application to create the script
-
Hello can You update the script
-
If you see in the second photo, I searched for the number with all the memory and no it didn't find anything And the first photo I just used memory Range "Other" and it worked,Some people design their scripts using memory ranges from the Java heap to anonymous So I can't use it
-
-
View File Tickets Hack in public Event - Adventure Token Hack 20,000 - Ad- Free Tickets - 1,999,999,999 [ purchase 1 pack] - Special Tickets - 1,999,999,999 [Purchase 1 pack] If You purchase 2 Packs for thing [ value will be in minus | game does have tickets in minus] Date - 8 Nov To 13 nov 2024 Record_2024-11-08-12-54-54.mp4 Submitter Mikey-GG Submitted 11/08/2024 Category LUA scripts
-
-
I have problems when creating a command to delete the value 0 on the save tab, if I may ask what commands need to be added to the contents of the script and can you help me by giving an example of the script? Thank You
-
- 8 comments
-
- Days after
- lua
-
(and 1 more)
Tagged with:
-
- 3 comments
-
1
-
- Hill climb racing 2
- Gems hack
-
(and 1 more)
Tagged with:
-
Is your script written in LUA for GG? And you are afraid that they will do this: A search for something will be conducted in GG. Your script is executed. They will search for changes in GG. If yes, then make primitive protection from children in your script, start your script with this: gg.clearResults() gg.clearList() More complex hacking methods will not count.
-
i actually hacked Earn to Die Rogue, this script hacks the hp, attack, armor and healing boost values that are added to your character on the 1 star level in the skill tree. (i think XIU hacked these stats the same way in his script though) https://youtu.be/URp04vagEw8 1com.notdoppler.earntodierogue.lua
-
View File Shoot Sniper Training Range Includes: Buy Gew98 Attachments Get Unlimited Coins , Gew98 Fast Zoom , Kar98 Fast Zoom , Chams Submitter luckyday-999 Submitted 11/03/2024 Category LUA scripts
-
-
View File Soccer Superstar - Football Script is made for 64bit Android devices. (1) Free Rewind (2) No Ads Submitter sammax71 Submitted 11/03/2024 Category LUA scripts
-
Will be honest. You can't really defend from that, maybe make it harder for someone to find it using pointers and fake searches...etc. All type of redundant stuff to waste someone his time. Accept that when you make script and use GG function and offset calculations or anything that's in the script people can get it.
-
Very first line reads "Script is made for 64bit Android devices". It won't work on emulators.
-
Right, but if it is not done, it will happen automatically once the script completes. It's not related to the error that you got, it was because file can't be created in specified path, so "io.open" returns nil and then it is indexed with "write" key, which is the error from your screenshot. For example, you can try the following code and check contents of the file after running it: local path = "/sdcard/test.txt" -- Change to any other path to file that can be written io.open(path, "w+"):write("123")
-
Of course this folder is missing. But the problem is that the official GG doesn’t understand the syntax io.open(file,"w+"):write("{")` And it is better to save the file in the same place as your script. This is how it is understood: ... local json_info,file_nam,file,path,_ json_info=TdLove.ParseResults(TdLove,result) if gg.alert("Alert or Write","write","alert")==1 then path = (gg.getFile():match("^(.*)[/\\][^/\\]*$").."/") file_name=path..gg.getTargetPackage()..".js" file = io.open(file_name,"w") io.output(file) io.write('{') io.close(file) end file = io.open(file_name,"a") io.output(file) for iii,kkk in ipairs(json_info) do _=(iii~=#json_info and ",\n" or "\n") io.write("\n{\n\""..iii.."\":\n"..kkk.."\n}".._) end io.write("\n}") io.close(file) ... And some other little things: ... local gg=gg gg.clearResults() gg.setVisible(false) menu() gg.clearResults() gg.setVisible(true)