Jump to content

CoyFanatic

Ascended
  • Posts

    29
  • Joined

  • Last visited

  • Days Won

    1

CoyFanatic last won the day on December 12 2020

CoyFanatic had the most liked content!

Additional Information

  • Android
    9.x (Pie)
  • Device
    One plus 7 pro

Recent Profile Visitors

2,305 profile views

CoyFanatic's Achievements

Explorer

Explorer (4/14)

  • Week One Done
  • One Month Later
  • One Year In
  • First Post Rare
  • Collaborator Rare

Recent Badges

8

Reputation

  1. This is perfect now I understand thanks again I appreciate this .
  2. Just one last thing my guy. How will I add the offset to an address in a script? I have seen many forums here which shows the example but I couldn't understand how it works. Like if I have the address of a value and it's offset then in script do I use this? offset = bla bla Table = r[1].address + offset -- r[1] is the static value. But what do I do after this to edit the value of the address stored in table. I mean I can't comprehend how or what it is stored as.
  3. Then I guess i gotta do some research about pointers now. Also how about group search? I mean I have seen some static values in anonymous. Maybe I can use group search and refine to get that hack value? Is it possible?
  4. Hey can I use this method in region anonymous as well? The lib + offset? If yes then can you please help me understand how to get the information about lib. I tried googling this but couldn't find anything
  5. This is so helpful and I just understood that the value that I thought was changing is not actually changing I just assumed it was changing haha I am so sorry. However, when I just search for the hack value I got a lot of results more than 7k but yes I took your advice and kept the hack value instead of 0~~0 and then I got 8 results and when I updated the script it's working now. I really can't thank you enough. Thanks for taking so much time out of your day to help me I really appreciate it:))
  6. When I first made a group search using 36;0~~0::377 I got 380 results so then I thought I would use another refine search with another static value and different offset 1;0~~0::265 Then I got 67 results, was this wrong? I mean when I checked the results I got the hack address like I wanted it was at 14th and hence I used r[14] . You think this is where I went wrong? Pls can you help me understand what I did wrong.
  7. I see this is an interesting approach towards changing addresses and I will use it. But you see I'm afraid that that's not the problem I can specify the address using any method. But at the end when I ultimately have to edit and change the value, it doesn't appear to change and I have no clue as to why this is happening. I changed the code as to your suggestion and I run the script but the problem is still there. The value isn't changing. When I edit the value manually it does change and it remains that way so I know it's not necessary to freeze it. And just to be sure that I was specifying the right value in the script, I just for the sake of doubt did this local r = gg.getResults(67) r = gg.getValues(t) print( r[14].value) So when I execute this script I get the same value as the hacking value and this proves that I am targeting the right value. But again when I try to change the value by using r[14].value = 9 gg.setValues(r) It doesn't work and I have no clue why.
  8. So you mean I can just add the offset to the address of that one static value to get the address of the hack value? But I have no idea how that will be implemented in a script. Will it be like this? r=gg.getResults(4) Local t = r[1].address + 377 t.value= '9' -- hack value Is this possible? If r[1] is the static value and 377 is the offset ? This might look dumb I'm sorry but I'm just learning lua Also Why can't I edit the value tho? In my first post the script that I published. I still couldn't understand why the won't value change. Thanks for your help:)
  9. I've been working on this script where I do a group search with static values and a specific offset to get the address of that one hack value whose address changes after restart . Something like this: gg.setRanges(gg.REGION_CODE_APP) function Zoom() gg.searchNumber('36;0~~0::377', gg.TYPE_DOUBLE) gg.refineNumber('1;0~~0::265', gg.TYPE_DOUBLE) local t = gg.getResults(67) t[14].value = '9' print('done',gg.setValues(t)) end local a = gg.choice({'Zoom','exit'}) if a == 1 then Zoom() end if a == 2 then os.exit() end So basically I want the 14th value of the table to be 9 (value type double) but unfortunately it's not changing when I launch the script. When I manually edit the value (without script) it works like a charm. Can anyone please tell me where I went wrong:(
  10. This function will load the saved list items to back to the list gg.getListItems Refer GG Reference it's very helpful: - https://gameguardian.net/help/classgg.html
  11. Or you can do this. Local r = gg.getResult(22) r[1].value = 'any value you wanna put' r[2].value = 'value' So basically all I did was I assigned r with all the list and then you can use the r with square brackets to edit those specific search values as you wish.
  12. Oh my God it's you! Hey man, thanks alot. You know before making this script I used to use your script for zoom hack and it's a really good script. But I wanted the menu to change zoom and I couldn't find such script anywhere so I decided to take a night and use it to understand all about lua scripting and I somehow came up with this. And hey man I have been confused about this , can you help? Do you know anyway I can increase the zoom more? I mean I used the fuzzy search to get the value 36 which is the value of zoom cause you know how the zoom increases a bit when you get bigger so I used that to get the value of zoom and I finally got it. But you see now the problem is I need more zoom. If I edit the value 36 and if I decrease the value the game zooms out. But when I reach 0 the maximum zoom I get is not enough. I mean in pc you get more zoom out so I was just confused as to how I can get more zoom. Do you know any way it's possible?
  13. Changed the memory ranges and removed the refine search function. And the script works like a charm thanks alot my man. -- https://www.gameguardian.net/ -- test #1 if gg.isVisible(true) then gg.setVisible(false) end gg.clearResults() gg.toast('Welcome') lua = 1 function main() menu = gg.choice({'Change zoom', 'Exit'}, nil, 'Saicobo') if menu == 1 then a() end if menu == 3 then c() end if menu == nil then choice(none) end lua = -1 end function choice(none) os.exit() end function a() gg.setRanges(gg.REGION_CODE_APP) gg.searchNumber('36', gg.TYPE_DOUBLE) gg.getResults(4) gg.editAll('30', gg.TYPE_DOUBLE) gg.toast('Zoom -') gg.sleep(1000) gg.clearResults() gg.toast('To chenge zoom -, touch the gameguardian icon') gg.sleep(1000) gg.setVisible(false) while true do if gg.isVisible() then gg.setVisible(false) zoom2() end end end function zoom2() gg.setRanges(gg.REGION_CODE_APP) gg.searchNumber('36', gg.TYPE_DOUBLE) gg.getResults(4) gg.editAll('0', gg.TYPE_DOUBLE) gg.toast('Zoom +') gg.sleep(1000) gg.clearResults() gg.toast('To chenge zoom +, touch the gameguardian icon') gg.sleep(1000) gg.setVisible(false) while true do if gg.isVisible() then gg.setVisible(false) a() end end end function c() gg.clearResults() os.exit() end while(true) do if gg.isVisible(true) then lua = 1 gg.setVisible(false) end gg.clearResults() if lua == 1 then main() end end Thanks again really I appreciate this.
  14. View File Slither.io Zoom menu FOR ONLINE MODE There are lots of slither.io mods present everywhere so what's so special about this one? Well this mod is the only mod on android that can help you change the zoom. Well other mods have zoom hacks available but none provide the feature to change it mid game (for online mode too!). This mod works when you click on the gg icon so that you can quickly change the zoom without worrying about dying. IMPORTANT: Don't mess with the search values before turning this script on. Submitter CoyFanatic Submitted 03/31/2020 Category LUA scripts  
×
×
  • 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.