bukandewa
Ascended-
Posts
210 -
Joined
-
Last visited
-
Days Won
1
Content Type
Profiles
Forums
Downloads
Gallery
Everything posted by bukandewa
-
Dont copy paste text from forum. It will copy 'invisible char' in your text editor. About way to 'hide' value, you can try a simple trick in your code use gg.getResultCount API. Below is just for example function A() gg.setRanges(gg.REGION_ANONYMOUS) gg.clearResults() gg.searchNumber('1;2;3', gg.TYPE_FLOAT) local count = gg.getResultCount() if count == 0 then gg.toast(count..' Result found') else gg.toast(count..' Result found') gg.searchNumber('2', gg.TYPE_FLOAT) gg.getResults(100) gg.editAll('0', gg.TYPE_FLOAT) gg.toast('success') gg.clearResults() end end end If you try to call the function not in game, the process will discontinue, because searchNumber is 0 result, so you only can see half of code in the call log. But, it is just a simple trick, if you wont let your code copy by others, the best way is use by yourself and dont share.
-
I am recommend to use function(). In any case, ::label:: have a limitation. Especially if you want to create more complex scripts.
-
Discord channel will effective if the topic more spesific. There are too much game, different language, region, and many things. I think open discuss in the forum better than you must scroll up chat in discord channel, I dont want to wasting my time to scroll useless chat out off topic.
-
Try this farmheroes.lua I change method how to hack the moves, no need group search value. Read instructions in gg.alert pop up, it should work. About lives hack, you need to change group search value by yourself. I am sure you can find 2-3 nearby value of desired value always same
-
Yes, that is true. I try with my another phone, the value nearby of desired value is different. Group search unlimited value is always not same after game restarted. So, I think better use other method to change value of moves.
-
for i, v in ipairs(res) do res[i].value = '5' res[i].flags = gg.TYPE_DWORD res[i].freeze = true end gg.addListItems(res) gg.toast('Unlimited lives success!') Sorry i didnt check if freeze value not work with gg.setValues API. Change API to gg.addListItems like code above will work. But, I think group search unlimited moves need to fix. I am too lazy to try find nearby value always followed by desired value.
-
Try this lua scripts. farmheroes.lua I take no more than 1 hour to make scripts Unlimited lives and unlimited moves.
-
Offset will and never work if the address of value not static. Learn and read how group search work to find desired value, write the code in lua scripts, then you can execute the scripts with GG to run automatically without search and edit.
-
Sorry, I dont know. I am never play that game. But, I think it is possible to hack. Just find some usefull value to edit, then create as group search to find desired value after game restarted. It will easier if you make lua scripts.
-
Unfortunelly, mostly all of online game didnt have static address. The only simple way to find desired value is use group search.
-
can u give me another one? that example is to hard with me local val = gg.prompt({[1] = 'input value'},{[1] = '0'}) if val == nil then gg.toast('input value cancel') else gg.searchNumber('1;2;3;4', gg.TYPE_FLOAT) gg.searchNumber('1', gg.TYPE_FLOAT) gg.getResults(10) gg.editAll(val[1], gg.TYPE_FLOAT) gg.clearResults() gg.toast('custom value edited') end Maybe something like code above You can improve as you want
-
Use 'while' to make an infinity loop
- 10 replies
-
1
-
I never try use pastebin, try use another file uploader, I recommended github
-
Dont copy paste code from the forum, write manual in your text editor
-
file = assert(load(gg.makeRequest('url').content)) -- replace to your url pcall(file)
-
- 89 comments
-
- Pubg mobile
- Pubg lua scripts
-
(and 1 more)
Tagged with:
-
- 89 comments
-
- Pubg mobile
- Pubg lua scripts
-
(and 1 more)
Tagged with:
-
-
-
- 89 comments
-
- Pubg mobile
- Pubg lua scripts
-
(and 1 more)
Tagged with:
-
- 89 comments
-
- Pubg mobile
- Pubg lua scripts
-
(and 1 more)
Tagged with:
-
- 89 comments
-
- Pubg mobile
- Pubg lua scripts
-
(and 1 more)
Tagged with:
-
Root or no root? Paralel or direct apk?
-
- 89 comments
-
- Pubg mobile
- Pubg lua scripts
-
(and 1 more)
Tagged with:
-
Hi @Enyby, After update GG to latest versions, GG API makerequest not works as before. For me, that API is usefull to make auto update scripts without redownload the new scripts file. It is removed? Thanks