Jump to content

Search the Community

Showing results for 'group size'.

  • Search By Tags

    Type tags separated by commas.
    For example, the common name of the game: PUBG, Free Fire, Rules of Survival, Critical Ops, Mobile Legends: Bang Bang, etc.
  • Search By Author

Content Type


Forums

  • GameGuardian
    • Requests
    • Help
    • Guides
    • Cheats
    • Video Tutorials
    • Unintended Effects
  • General
    • General Discussion
    • Introduce yourself (:
    • Announcements
    • Website suggestions/Bugs
  • Downloads Support
    • Apps
    • LUA scripts
  • Online Multiplayer Mods
    • Altering Online Games with Gameguardian
    • Download Mods
  • Other Hacks
    • Tutorials
    • Non-GameGuardian
  • Archive
    • Archived topics

Categories

  • Official Downloads
  • Virtual spaces (no root)
  • LUA scripts
    • Forward Assault
    • Free Fire
    • PUBG
    • Rules of Survival
    • Templates
    • Tools
  • Test applications
  • Other

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Device


Discord ID

  1. its easy to know that the wallhack value should be from 0.5 to 4 (snap,kirin ) for snap 0.5 and 2.0 both values worked and its the most prefered for chams/wallhack also chams hack can be done for everything like see weapons behind the walls any object one from those values reperesnt each model type, for exynos its hard to find for mediatek its even worse cause the values always keep changing locations and group search hard to make for it in pubg
  2. the main code is function kk() gg.toast('BR WEPON ENHANCE STARTING SOOn') gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("1000.0F;1.4012985e-45F;-1.0F;0.10000000149F;1000.0F;10.0F;1.2~3F;", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.processResume() gg.refineNumber("1.2~3", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) revert = gg.getResults(5000, nil, nil, nil, nil, nil, nil, nil, nil) gg.editAll("0.3", gg.TYPE_FLOAT) ---this is not written in main script, but here... the above code maintain fast reload. the below code maintain RECOIL gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("1,000.0F;10.0F;1.4012985e-45F::9" , gg.TYPE_FLOAT) ---your group search value / or your search number gg.refineNumber("1000.0", gg.TYPE_FLOAT) ---saving the results count p = gg.getResultCount() -- saving the results count q = gg.getResults(p) -- saving the results for i = 1,p do local r = {} r[i] = {} r[i].address = q[i].address + 452 -- address the offset(ex :- 4) to the refined result r[i].flags = 16 -- data type in which you want to edit the value at offset (4 = DWORD) r[i].value = 0 -- enter the edit value to make the hack gg.setValues(r) gg.toast('BR WEPON enhance applied') end end i just want this both code in same function. the first one - 'fast reload' works but the second one 'recoil' doesnt works. i mean - the recoil code searching.. but it doeant edit value to 0 for recoil. if i put the recoil code in different function, then, 'no recoil' works.... why is this happening? how to solve?
  3. Problems; Runnaway zoom out. Must start new game with non negative values, ie i like 0 or 36. Restart game check box set 36val to 0. Default puts 36 to original and 64 flag to dword and 1.2 billion value back from 9. Ip search, in this version you have to hard set your own servers in the code. Ips must be same character length as search last played ip result. Last used ip search val must be in index 1 in ip table. I am working on a fix. Are you getting slither app crashes running gg on top.... when the google video add crosses the game crashes. Sometimes. Depends on add. I use norootfirewall to stop everything except slither coming out of my parralel space sand box. Ie no add requests. I also block gg but shhhhh. Make sure you white list your fav slither servers. Thoughts. Need to find the, your length score val, and use an equasion to link 36val and snake length via score to stop the runnaway scroll or the scroll in while eating when small. The 9 value accentuates the view dependent on size but not linearly.
  4. View File Mini Militia - Doodle Army 2 hack script This is a simple but effective mini militia hack with antiban. Features online auto update health hack Speed hack bullet rain grenede hack mag size hack If you have any confusion come here Main chanel Script chanel Submitter Rxhacker Submitted 12/05/2020 Category LUA scripts  
  5. 14,269 downloads

    This is a simple but effective mini militia hack with antiban. Features online auto update health hack Speed hack bullet rain grenede hack mag size hack If you have any confusion come here Main chanel Script chanel
  6. Ykiri

    Cant hack Dungeon Maker

    Im using vmos on my phone and i dont know why its eating a lot of space in my phone storage now the size of my vmos data is fking 20gb and i dont even install any apps besides dg maker and gg my phone is running of strorage lmao
  7. As of today, stats, hp and mp work fine. Didn't try items. But I'm sure it will work fine too. Thanks for all the efforts. Is it possible to increase inventory size? I tried fuzzy with inventory belt on and off but couldn't decrease the size of found elements below 12000. Any help will be appreciated.
  8. So uh, i made a really rudimentary one after looking through about 10 examples of lua script, but I can't figure out how to do the offset memory part after the search for all 3rd input(energy) values. It currently just goes through a ordered group search based on your HP, Armor and Energy, using a string to show all values to search for. (I think, i just started learning lua like 2 hours ago). Hopefully, it helps reduce your constant searching! Soul_Knight.lua
  9. Distance between two addresses is offset. Address 4C - address 44 = offset 8 Imagine below. address >>> value >>> type 0004 >>> 11223344 >>> dword -- static 0008 >>> 84 >>> float -- current health 000C >>> 100 >>> dword -- max health(static) In this case, we can search two static value as group search. They two are away at offset 8. gg.searchNumber('11223344;100::9', 4) gg.refineNumber('100') -- refine one static code p = gg.getResults(gg.getResultCount()) --Let it be we get 1 result --now we have static code 100.but we want edit above its address.need to subtract offset 4 to get address of current health --Let build a table for current health. --we'll use gg.setValues(). to use it,we need two info atleast. --address and type. about value? we can get by gg.getValues(). hi = {} hi[1] = {} hi[1].address = p[1].address - 0x4 hi[1].flags = gg.TYPE_FLOAT -- health is float hi = gg.getValues(hi) --attempt to get value print(hi[1].value) -->output is 84 hi[1].value = 445566 gg.setValues(hi) --now health will be edited as 445566. This is some usage of offset edit. If results are more than 1 ,you can set a loop. Idk its a need to you. But you will .
  10. Yes. Many scriptors also use group search. Most use group search directly. Few search single value and check around with offset. Same results but different run time.
  11. 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?
  12. 0~~0 means whatever number.Its in Xa. You can directly approach to what you want. As example if you want search 456(double type) Then search it. Single search is more more faster then group search. gg.searchNumber('456', 64) 64 is double .4 is dword etc.Then you might find 123 results.you can choose now what the number of results is what you want. Codes in Xa are never changed themself normally. But you can. And you can check its offset. They are in lib. So its addresses whenever restart will be like below -BC24DF04(first restart) -D769BF04(second restart) -9ADC7F04(third restart) Every restart you can see its last 3 (may be 4 for some) is always the same. Thats why i told you can approach directly by lib + offset. Here is full example for you according to my case. Try use this code. (Replace your codes) gg.searchNumber('456', 64) lol = gg.getResults(gg.getResultCount()) lol = gg.getValues(lol) -- if the twelfth is what you want! check1 = lol[12].value -- Lets edit now lol[12].flags = 64 lol[12].value = 789 gg.setValues(lol) --now we edited check2 = lol[12].value print('This is before edit: '..check1..'\nThis is after edit: '..check2)
  13. 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.
  14. 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:(
  15. the address changes everytime between restart but those values before(above) and after(below) ammo value didnt as far i know so... you can use ordered group search like this dwords = 20;10;130;680;30;1,049,414,861::25 then refine to ammo value = 130 the range use is Java_heap so it may take a while to get results or maybe it depend on the device...fast device = fast search...slow device = slow search(like mine) on my part i found that it much faster to find the ammo value itself then refine and edit as shown in video below : ZA2_ammo.mp4 <no video speed>
  16. Show addresses around in goto address interface. And which ones are you think static values which wont change on another virtual spaces or 32 and 64 bit(so that you can use nice group search script). Then I can make some codes for you.
  17. In this code, 1200;1200;15 is group search. You can see them in photo. 9 is distance of that group(from start one(1200) to end one(15)). If you choose two items into group,the distance must be 5 at least. Then everytime you add next items into group the distance will be added by 4. If 3 items in group, the distance must be at least 9.If 4 items, distance is 13.If 5 items, 17 and so on. If you dont put distance,gg will use 512 automatically. My group is included 3 items and they are in order. So I use 1200;1200;15::9.You can use prompt in place of 15. The last one 4 is short form of gg.TYPE_DWORD. Cuz its 4 bytes. You read gg api carefully and you will understand them. And make a lua file and input print(gg) And you can read some usage of gg functions.
  18. View File Tools For Hacks It's been a long time since I had been active on the forum. The main reason being that I don't get time for game hacking. So I decided to share my tools which I used back in the days for making things easy for me and also this will be like a summary post for beginners. The first file name FindHaxSever I made was just a beginning for finding new values in the game , then I took it up a knotch and added group value making also for it. Big thanks to @Enyby for his help in the where I was making the mistake in converting Decimal to Hex. Fixing which I was able to complete the group value thing. Just an example video for it's use I had shared on yt , and sorry for the opening slide... The video above just shows the function of finding values and making group values automatically. Also you will find a menu option called "Crash Support" , crashes happen mostly because of larger number of values edited at once. So if I know my value I can make group value easily by reducing the number of edited values. If you are a beginner and don't understand how to use values , group values in script and also have no idea how to make scripts. You can learn from the following link :- All in one Script for menu templates. (#6zf6rwms) Next option in the script if for finding offsets of you hack value. Offsets in them are very confusing for many people , so if you want to learn you can follow this link:- Templates for Using Offsets (#68um1uri) Then next up in the list is EditHax, which is not a big thing. It's just a script for finding different possible edits for a given hack value. And lastly there is the MultipleSavedEdit file. This file is for making scripts with hacks which have various edits possible for only 1 hack value. Like for value 1 edit to 999 gives 1 hack and editing same 1 to 0 makes another hack. So if we go conventionally , we will need to first make the group using 999 and then revert the 999 back to 1 then again search the group and edit to 0. Saying is easy but if u put it in script , the whole ballgame changes... When we make Script we make menu and function for every menu. For only one hack value we need 1 menu and 1 function. ~~~~~~~~~~ For 1 hack value we need 2 Menus and 2 Functions , one for hack and one for revert , this can also be made using ON-OFF MENU, then we only need 1 menu and 2 functions. ~~~~~~~~~~ For 2 hacks value we need 3 ON-OFF menus and 6 functions in the script to be able to use both hack values and revert also. ~~~~~~~~~~ For 3 hack values we need need 12 ON-OFF menus and 12 functions. ~~~~~~~ For 4 hacks values we will need 20 menus and Functions like this. So the work increases a lot . This thing i reduced to only 2 functions no matter how many times the user wants to edit , if he knows the edit value , he just need to input it. The input can be anything like prompt or seek bar or choice. If you find any difficulties understanding any of them , you can read the video description also . And yes the first video doesn't have full description for all the options, because all the videos are more than an year old from the time I made the scripts and I didn't had the time to make video for all the features now. Also just for beginners I attached the links to respective posts so things become easy for them to understand. Many will criticize and say these are useless , well maybe for you but not for others. In fast few days I have been getting a lot of Dms on my telegram for these scripts , people keep coming to me asking for them even though the videos have become like more than an year old now. So this is likely my last and final post on the forum , hopefully people find this post useful. And in the end I would like to thank @Enyby ,d2dyno and Aqua and all the related team members for such an amazing app. Special thanks to @Enyby for maintaining such an amazing community , I definitely learnt a lot in past years. And also my friend @ItsSC for providing guidance time to time. Submitter AKRAMRAZA Submitted 09/27/2020 Category Tools  
  19. Version 1.0.0

    6,800 downloads

    It's been a long time since I had been active on the forum. The main reason being that I don't get time for game hacking. So I decided to share my tools which I used back in the days for making things easy for me and also this will be like a summary post for beginners. The first file name FindHaxSever I made was just a beginning for finding new values in the game , then I took it up a knotch and added group value making also for it. Big thanks to @Enyby for his help in the where I was making the mistake in converting Decimal to Hex. Fixing which I was able to complete the group value thing. Just an example video for it's use I had shared on yt , and sorry for the opening slide... The video above just shows the function of finding values and making group values automatically. Also you will find a menu option called "Crash Support" , crashes happen mostly because of larger number of values edited at once. So if I know my value I can make group value easily by reducing the number of edited values. If you are a beginner and don't understand how to use values , group values in script and also have no idea how to make scripts. You can learn from the following link :- All in one Script for menu templates. (#6zf6rwms) Next option in the script if for finding offsets of you hack value. Offsets in them are very confusing for many people , so if you want to learn you can follow this link:- Templates for Using Offsets (#68um1uri) Then next up in the list is EditHax, which is not a big thing. It's just a script for finding different possible edits for a given hack value. And lastly there is the MultipleSavedEdit file. This file is for making scripts with hacks which have various edits possible for only 1 hack value. Like for value 1 edit to 999 gives 1 hack and editing same 1 to 0 makes another hack. So if we go conventionally , we will need to first make the group using 999 and then revert the 999 back to 1 then again search the group and edit to 0. Saying is easy but if u put it in script , the whole ballgame changes... When we make Script we make menu and function for every menu. For only one hack value we need 1 menu and 1 function. ~~~~~~~~~~ For 1 hack value we need 2 Menus and 2 Functions , one for hack and one for revert , this can also be made using ON-OFF MENU, then we only need 1 menu and 2 functions. ~~~~~~~~~~ For 2 hacks value we need 3 ON-OFF menus and 6 functions in the script to be able to use both hack values and revert also. ~~~~~~~~~~ For 3 hack values we need need 12 ON-OFF menus and 12 functions. ~~~~~~~ For 4 hacks values we will need 20 menus and Functions like this. So the work increases a lot . This thing i reduced to only 2 functions no matter how many times the user wants to edit , if he knows the edit value , he just need to input it. The input can be anything like prompt or seek bar or choice. If you find any difficulties understanding any of them , you can read the video description also . And yes the first video doesn't have full description for all the options, because all the videos are more than an year old from the time I made the scripts and I didn't had the time to make video for all the features now. Also just for beginners I attached the links to respective posts so things become easy for them to understand. Many will criticize and say these are useless , well maybe for you but not for others. In fast few days I have been getting a lot of Dms on my telegram for these scripts , people keep coming to me asking for them even though the videos have become like more than an year old now. So this is likely my last and final post on the forum , hopefully people find this post useful. And in the end I would like to thank @Enyby ,d2dyno and Aqua and all the related team members for such an amazing app. Special thanks to @Enyby for maintaining such an amazing community , I definitely learnt a lot in past years. And also my friend @ItsSC for providing guidance time to time.
  20. Lover1500

    Fast search

    Nice script. So searching some values and then checking its around static codes by lua script power and editing them are more and more faster than using group search. Thanks for this script example.
  21. View File Script : Among Us Hi Everyone, Enjoy The Script ! All descriptions of its features are in the script Feature : - No clip - Giant Size - Vision Hack Support ON/OFF : Yes *Sorry typo at my nick name lol haha Submitter argarrize Submitted 09/12/2020 Category LUA scripts  
  22. Version V3.3 Speed Run Hack

    43,110 downloads

    Hi Everyone, Enjoy The Script ! All descriptions of its features are in the script Feature : - No clip - Giant Size - Vision Hack Support ON/OFF : Yes *Sorry typo at my nick name lol haha
  23. the file size is about right and script execute properly except for the invalid binary script header error since i use the latest GG but if press OK it will run normally... but again... try multiple times too.
  24. I was trying to upload 8 ball pool hack but it says upload error and other files are uploading correctly. Its in lua exension and a valid lua hack script. Why is there upload error the file size is also good. And yes the script is encrypted.
  25. one way is.. you can do group search..refine to 1 address with fixed value and add offset to get to desire item address then edit(fixed or prompt) Stamps.mp4
×
×
  • 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.