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. I did a group search of the experience cost, then changed them to negative to get experience when I buy the upgrade.
  2. Then you simply need to search it right after performing group search. There is a function called "gg.setVisible" for this purpose. See API docs. https://gameguardian.net/help/classgg.html#a4ad04f38598e00a393edc274e38b2009 Here is the example of applying these things to your script: gg.setVisible (false) gg.searchNumber ('123;4567;8901', gg.TYPE_DWORD) gg.searchNumber ('123', gg.TYPE_DWORD) gg.getResults (100) gg.editAll ('545454', gg.TYPE_DWORD)
  3. Hy, i use following simple script gg.searchNumber ('123;4567;8901', gg.TYPE_DWORD) gg.getResults (100) gg.editAll ('545454', gg.TYPE_DWORD) How can i solve my problem. I have to search by group to find the correct 123 value. But i only want to change 123 into 545454, the other two values should be as they are. And what i have to do, that gameguardian will go back to the game. It always come up the Message - Script ended.... - Copy - Restart - OK. After the run of the script. Gameguardian should go back to the game. Sorry i'm new in Lua, and try my first steps.... ;-)
  4. hello again, seems im having trouble with the setValues() d = gg.prompt({i='MaxZ;LvlupZ;MaxX;LvlupX'}, {i='0;1;5::100'}) --note MaxZ = 123;LvlupZ = 456;MaxX 789;LvlupX = 999 --note wanted to do group search of d['i'] and '0;1;5::100' unlike with previews code gg.searchNumber(d.a..';15;5;16777473::10000', gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0) didn't work the same way/error gg.searchNumber(d['i'], gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(4) --gg.editAll('100',gg.TYPE_DWORD) testing with freeze o = gg.getResults(4) u = {} u[1] = {} u[1].value = '50' u[1].flags = gg.TYPE_DWORD u[1].freeze = true u[1].freezeType = gg.FREEZE_NORMAL u[2] = {} u[2].value = '100' u[2].flags = gg.TYPE_DWORD u[2].freeze = false u[2].freezeType = gg.FREEZE_NORMAL print('Replaced:', gg.addListItems(u)) gg.toast('first time freezing') goto absolutenothing error popped below Script ended: testing by absolutenothing Replaced: org.luaj.vm2.LuaError: bad argument: long expected, got nil Enjoy Exit. the code above do search the prompt d['i'] like this 123;456;789;999;0;1;5::100 then getResults(4) after that it does not edit the u[1] and u[2] then the script ended with error
  5. Maybe those looking to CONTRIBUTE to hacking this game, could start a group chat on discord? Working as a team can accomplish way more. Because the more we share, the faster we reach our goal. Just a thought.
  6. hi guys, do we have a function for group search for prompt and exact value like on the 2nd line on my script example: d = gg.prompt({A='A'}, {A='0'}) gg.searchNumber ('d.A;123;456;789::2000', gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0) gg.searchNumber('d.A',gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0) gg.getResults(1) gg.editAll('99999999',gg.TYPE_DWORD) i always have problem on that 2nd line, heres the error. Script error: org.luaj.vm2.LuaError: @/storage/emulated/0/Download/lua tests/File.txt:54 `gg.searchNumber('d.A;123;456;789::2000', gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0)` gg.searchNumber: bad argument #2 (string): number expected, got nil stack traceback: /storage/emulated/0/Download/lua tests/File.txt:54: in main chunk [Java]: in ? at org.luaj.vm2.Varargs.argerr(Varargs.java:280) at org.luaj.vm2.Varargs.optint(Varargs.java:202) at android.ext.Script$searchNumber.invokeUi(Script.java:1871) at android.ext.Script$ApiFunction.run(Script.java:737) at android.os.Handler.handleCallback(Handler.java:733) at android.os.Handler.dispatchMessage(Handler.java:95) at android.os.Looper.loop(Looper.java:136) at android.app.ActivityThread.main(ActivityThread.java:5120) at java.lang.reflect.Method.invokeNative(Native Method) at java.lang.reflect.Method.invoke(Method.java:515) at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:818) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:634) at dalvik.system.NativeStart.main(Native Method) or is there any method to search the offset from the exact values after this gg.searchNumber('123;456;789::2000',gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0) gg.searchNumber('123',gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0) gg.getResults(1) now after the result i want it going into the address value of that single result then search its offset then edit that address value from the offset of that single result. example from the address: 7C40DE78 = d.A 7C40DE7C = 123 7C40DE80 = 456 7C40DE84 = 789 so offset of 7C40DE7C going to 7C40DE78 is -8 while 123;456;789 are constant values i hope i explained right to what i want to happen on my script thanks.
  7. I fully agree with this, but there is one little misunderstanding. I am not the author of the script nor have any relation to the real one. So that guy stole someone's else work. I just did little reverse-engineering job to get the soure code, then removed all redundant parts, because I think that members of this forum have the right to get good-quality content and not scripts with bunch of useless code which does not help in any way. For example, useless encryption of the source code (it's useless because password that let's user run the script also let's him to get the source code) caused the file to be insanely large (88 kb), while decrypted version of that file has the size around 11 kb. That's why I am not sure about being the author of file here, cuz it may look like I am one of those guys who leech scripts somewhere and upload here.
  8. GameGuardian work without root So, as for work without root. This is not magic. Technical limitations were, and have remained. So it will not work anywhere and always. Actually it looks like this: 1. You put an application of virtual space (Parallel Space, VirtualXposed, Parallel Space Lite, GO multiple, 2Face and many others). 2. In it you add the game and installed GameGuardian. 3. From the virtual space application, you launch the game and GameGuardian. Actually everything. GameGuardian can be used to hack the game. Everything is simple and transparent. It was a good part of the news. Now about the bad: 1. The game has zero progress. You can not transfer the progress from the existing installation of the game, if the game itself does not provide it (through the cloud or somehow). 2. Not all games work through virtual spaces. 3. There may be another account in the game. 4. Not all functions will be available in GameGuardian. 5. On some firmware it does not work at all. If you cannot choose a proсess in GameGuardian, or get an error 105/106, then on your firmware, GG, without root, will not work. Try optimized versions of virtual spaces or another firmware or other device or get root. 6. In some virtual spaces GameGuardian does not work. What can be done in case of problems: 1. Try different virtual spaces if the problem is in them. Best option: Parallel Space. 2. Try changing the firmware. 3. Get a root and do not fool yourself. Once again: it will not work at all and always. It is possible that it will work for you and will not. Virtual spaces to run GameGuardian without root (#ct7bob3) Proper install without root - GameGuardian (#abausujp) Help: https://gameguardian.net/help/help.html#work_without_root Video-examples: Balls Bounce Free - hack balls - without root - GameGuardian, Parallel Space Bejeweled Stars: Free Match 3 - hack without root - group search - GameGuardian, GO Multiple Hack Tap Counter without root via GO Multiple on Android 7.1.1 - GameGuardian Hack Tap Counter without root via GO Multiple - GameGuardian Work without root via Parallel Space - GameGuardian Work without root via 2Face - GameGuardian Work without root via Mutiple Accounts - GameGuardian Work without root via GO Multiple - GameGuardian No root via VirtualXposed - GameGuardian (#b6l7k1qu) No root via VirtualXposed (without error 105) - GameGuardian (#bpb5835m) No root via optimized Parallel Space Lite - GameGuardian (#47glijbj) No root [from scratch] (boring and long video) - GameGuardian (#9rf9317c) No root via Dr. Clone - GameGuardian (#aft8whcy)
  9. Version 1.0.0

    12,704 downloads

    YouTube https://www.youtube.com/channel/UCA9i3ae2jk5AtkcmWdiPZPA Link do jogo https://play.google.com/store/apps/details?id=com.tencent.tmgp.cfmnac Em breve outros jogos Meu ? ?canal de telegrama ? http://zipansion.com/pt9J ? Group ? http://zipansion.com/ptFg Um brinde pra você um grupo no whatsapp https://chat.whatsapp.com/GfaKK3mj53i8yY0DOeVvyP ???????????????? Estou aberto para fazer parcerias, mas só vou responder pelo Telegrama (enviar texto em português ou inglês) Estou pronto para fazer parcerias, porem vou responder apenas pelo telegrama (mandem texto em inglês ou inglês) https://t.me / CLcheatsAndroidYT Group (GRUPO) https://t.me/joinchat/IEU8ng1GSVtiQXlMAh31LQ Canal (CANAL) https://t.me/CLcheatsandroid
  10. View File CrossFire Legends (WallHacker) YouTube https://www.youtube.com/channel/UCA9i3ae2jk5AtkcmWdiPZPA Link do jogo https://play.google.com/store/apps/details?id=com.tencent.tmgp.cfmnac Em breve outros jogos Meu ? ?canal de telegrama ? http://zipansion.com/pt9J ? Group ? http://zipansion.com/ptFg Um brinde pra você um grupo no whatsapp https://chat.whatsapp.com/GfaKK3mj53i8yY0DOeVvyP ???????????????? Estou aberto para fazer parcerias, mas só vou responder pelo Telegrama (enviar texto em português ou inglês) Estou pronto para fazer parcerias, porem vou responder apenas pelo telegrama (mandem texto em inglês ou inglês) https://t.me / CLcheatsAndroidYT Group (GRUPO) https://t.me/joinchat/IEU8ng1GSVtiQXlMAh31LQ Canal (CANAL) https://t.me/CLcheatsandroid Submitter CL_Cheats_Android Submitted 05/29/18 Category LUA scripts
  11. Some more updates: Our new downloads server is online and has been serving you the past few days. Enyby and I worked closely on getting this up, be sure to thank him! This will help keep site speed high, and mitigate some high bandwidth usage we had. Multiple backend security improvements. Improved caching methods in nginx, and updated nginx versions for faster loading. Hide user avatars on frontpage to improve main page loading. This reduces size to load to ~820KB, down from 1.3MB Some more SSL improvements (Gotta love keeping that green A+ SSL rating). Our privacy policy was already compliant with GDPR, in case you were curious. I think that in and of itself is a lot of improvements. I am also currently tinkering with 2 new servers, in 2 different countries to eventually try to achieve a triple-server load-balancer. This will be great for site speed and also less downtime. ETA on this is unknown, as I have to learn a few new systems.
  12. View File CrossFire Legends (read the description) Password: 0 if you do not understand how to use this file click on my YouTube channel YouTube https://www.youtube.com/channel/UCA9i3ae2jk5AtkcmWdiPZPA Game Link https://play.google.com/store/apps/details?id=com.tencent.tmgp.cfmnac Link to download http://zipansion.com/128wO In Brief Other Games My telegram? ?Channel? http://zipansion.com/pt9J ?Group? http://zipansion.com/ptFg Submitter CL_Cheats_Android Submitted 05/27/18 Category LUA scripts
  13. Version 1.0.0

    7,415 downloads

    Password: 0 if you do not understand how to use this file click on my YouTube channel YouTube https://www.youtube.com/channel/UCA9i3ae2jk5AtkcmWdiPZPA Game Link https://play.google.com/store/apps/details?id=com.tencent.tmgp.cfmnac Link to download http://zipansion.com/128wO In Brief Other Games My telegram? ?Channel? http://zipansion.com/pt9J ?Group? http://zipansion.com/ptFg
  14. 1. ITS BANNABLE SO DONT SHARE LIKE THISVIF BANNABLE KIRIN SAMA ~SENPAI our telegram group t.me/pubgPHscript
  15. Do VIP members get added to the Ascended group even though they don't meet the requirements?
  16. Hey all, back with another site structure update. We are adding a second user group, tentatively called Ascended. Rankbar will be made soon, perhaps after some logo updates. This group is where all active and contributing members will be moved to after the following criteria are met: Member for more than 1 month. Last post less than 3 months ago. More than 25 posts. More than 5 positive reputation. This change comes from an influx of spam and abuse of features from many users in the member class. The following class features have changed for members: Maxmimum profile photo size: 75Kb. Messenger sending: disabled from sending to certain staff. Maxmimum reactions allowed per day: 10. Uploading attachments: enabled; Max total attachment: 30Mb. Can create polls: no. Can only edit posts 30 minutes after posting. Max posts per day: 10. Can report content: no. Restricted to posting replies only in some forums. The improved feature set for the Ascended user class is as follows: Maxmimum profile photo size: 150Kb. Messenger sending: enabled; can send 10 messages per day; can store 20 messages. Maxmimum reactions allowed per day: 20. Uploading attachments: enabled; Max total attachment: 50Mb. Can create polls: yes. Can only edit posts 45 minutes after posting. Max posts per day: 25. Can report content: yes. Can create topics in more forums. We are of course open to feedback, but this is a step in the right direction towards rewarding active users, and also reducing spam messages to staff.
  17. I haven't released yet. Been busy. It will be vip only though (not here...) But I'll consider it. Showing fish size is very time consuming to do just fyi.... And cannot be scripted.
  18. Is someone already make a cheat for this game? I want cheat only for showing the size of fish when we catch it, it will be good for the aquarium to show big fish xD
  19. warriror999

    LUA scripting

    Hi, I have a question, I did a group search gg.searchNumber('123;345;789', gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) Lets say i want to modify 123 with 12300 456 with 85000 789 with 67549 How can i achieve this with lua script. Tried checking in https://gameguardian.net/help/ but wasn't able to find In GG without lua, after search results i can filter results with "number >=" and "number <=".44 Thanks in advance
  20. Version 1.0.0

    2,822 downloads

    I bring you a "new" script with just the color of the white doll I hope you enjoy ~~~~~~~~~~~~~~~~~~~~~~~~~ My group on the telegram https://t.me/joinchat/IEU8ng1GSVtiQXlMAh31LQ ~~~~~~~~~~~~~~~~~~~~~~~~~~ my channel on the telegram https://t.me/CLcheatsandroid ~~~~~~~~~~~~~~~~~~~~~~~~~ My YouTube channel sometimes posts videos there https://www.youtube.com/channel/UCA9i3ae2jk5AtkcmWdiPZPA ~~~~~~~~~~~~~~~~~~~~~~~~~
  21. Hello! I wanted to share my "protocol" to find any value in any application, I tried to group everything I learned from GG and people from this forum who helped me and others! If 1- doesn't work, go to 2-, etc... Each time I repeat until I find my value (sometimes they can be more than one), or nothing. I can see the value I'm searching for in memory, it is not a static value. If I dont know the value, go to 4-: 1- dword exact search if integer (1,2,3...), float exact search if not (0.1,0.5,1.8...), sometimes I do a group search of related values 2- Double exact search for integer or not (+ float exact search for integer if it fails, but I usually dont do that cause it is often time wasting) Now I think the value is encrypted or changes place each time: 3- Dword exact search "encrypted" if integer (I think a not integer value (float or double) is never encrypted this way (even if it is possible)) Now it is the same if I know the value or or not: 4- fuzzy Dword search value or float depending if it is integer value or not 5- if I know exactly how the value changes, I use advanced fuzzy search menu (more button) and I type the changes i can see to maybe waste less time, or only increased/decreased 6- fuzzy change/unchanged Now I'm sure the value always changes place, I search for a pointer: 7- Dword fuzzy search and "changed" each time the value changes, or after a loading, for certain values for example 8- Once there are just a few values, I can freeze the pointers one by one and see if the value still changes, if not, it is the good pointer Now i just follow the pointer, and look for my value, or try to change weird looking ones (it can still be encrypted) after where I land in memory. Sometimes they can be multiple pointers, so if I dont find my value I just go down in memory and follow the next pointer and repeat that. When my value is found, i look around it in memory (before or after) if I can't see something realted to (another currency...). It can be quite far sometimes, but there can still be interesting static values related. When I found what I want, I look for static values around it in memory tab and I copy as a group search with group size checked. Then I go in search tab, exact search and historic and I mark the last entry. Now I'll be able to find my value again next time :). Do you think it is good? Would you add something?
  22. Watch on YouTube: Group search 32 values - GameGuardian
  23. @CryNox42 @Cristian83 @nalcwap @Kingvillian24 @Renren30 Well, Just like @Enyby said, That's because the memory of your device is low or it's filled up by many other apps, If force unload of GG doesn't work, then nothing more is to do. Yet, I had this problem with my tablet too, One workaround for this was to free up memory, by closing other apps. There are many apps out there that clean memory, but I suggest one of the best out there, that works in root or non-root: Greenify (V 3.9.9.1 (Latest as now)) Description: Full version Optimized graphics and cleaned resources for fast load < improved result (1.39 MB total apk size) Analytics Disabled Encrypted all resources Languages: En, Ru Source: Farsroid.com
  24. Watch on Youtube: Group search 16 values - GameGuardian
  25. I'll be posting guide on another forum in VIP section... Always perfect cast Instant catch See the sizes of all the fish after you cast, to help pick the best fish. Use any rod (not permanent) Use any boat (not permanent)
×
×
  • 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.