Jump to content

bukandewa

Ascended
  • Posts

    210
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by bukandewa

  1. 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.
  2. I am recommend to use function(). In any case, ::label:: have a limitation. Especially if you want to create more complex scripts.
  3. 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.
  4. 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
  5. 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.
  6. 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.
  7. Try this lua scripts. farmheroes.lua I take no more than 1 hour to make scripts Unlimited lives and unlimited moves.
  8. 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.
  9. 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.
  10. Unfortunelly, mostly all of online game didnt have static address. The only simple way to find desired value is use group search.
  11. 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
  12. bukandewa

    Normal script

    Use 'while' to make an infinity loop
  13. I never try use pastebin, try use another file uploader, I recommended github
  14. Dont copy paste code from the forum, write manual in your text editor
  15. file = assert(load(gg.makeRequest('url').content)) -- replace to your url pcall(file)
  16. Read about GG API in https://gameguardian.net/help/classgg.html gg.searchAddress gg.getResults gg.toast
  17. Thanks for your advice, i will try before add to my scripts.
  18. I mean something like this video below. 20180920_094141.mp4
  19. It is usefull if you can find and edit value manual, but confuse to write code in scripts. Hope in the next update it possible to record scripts, because when I try to record, in the log below main code, I just see gg.processResume()
  20. Just info, after minor update size 15 Mb, all feature works as before without banned. But, keep beware if any minor update. Dont forget to use dummy account for testing.
  21. I have no idea how to avoid banned after minor update size 1 Mb yesterday. Just dont use any hack for a while until solutions found
  22. Yes, just run... Make sure your wallhack works in memory region C_ALLOC
  23. Root or no root? Paralel or direct apk?
  24. Redownload, updated Hope no bug
  25. bukandewa

    LUA scripting

    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
×
×
  • 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.