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. Past the group search in the gameguardian search bar. Then edit 1.0 to the speed you want. For example 2.0
  2. Oke, see if works. gameguardian hide: 4 Speed value: 1.0F Memory Range: Ca Group search: 1.0F;0.33333334327F;0.02999999933F:9 tutorial:
  3. Current capabilities of GG are more than enough to find values that meet this condition. There are 2 main approaches for this case: - ordered group search with "placeholder" values; - searching for target value and checking whether found results meet the condition(s) (like whether value at offset X is equal to Y). So the task is to find all float values equal to 15.0 for which float value at offset -16 (-0x10) is equal to 2.0. With the first approach the code may be next: gg.clearResults() gg.searchNumber("2.0F;0D~~0D;0D~~0D;0~~0D;15.0F::17") gg.refineNumber("15.0", gg.TYPE_FLOAT) And the second approach can be implemented, for example, like this: gg.clearResults() gg.searchNumber("15.0", gg.TYPE_FLOAT) local results = gg.getResults(gg.getResultsCount()) local checkValues = {} for i, v in ipairs(results) do checkValues[i] = {address = v.address - 0x10, flags = gg.TYPE_FLOAT} end checkValues = gg.getValues(checkValues) for i, v in ipairs(checkValues) do if v.value ~= 2.0 then -- exact comparison of float values should be avoided in general, but for particular case of value "2.0" it will work results[i] = nil end end gg.loadResults(results)
  4. Idk where to ask, but that is what i would like to have added, this would be great for faster value searching like in cpp mod menus, for an example i search 2 Float and then an offset of 4 values underneeth it is an aim assist value of 15 Float, Now game guardian is checking 4 values underneeth the 2 Float if the value is 15, it is gonna edit this value. This is faster then group search (2F;15F:50), i came to this idea because i saw this is how the cpp mod menus value editing works on an youtube video At Time 10:30
  5. group search ordered type E : Double = diamond value ; gold value :: refine to Gold value then use increment to pinpoint the correct one. once found..goto the address and scroll above to find Diamond value.
  6. View File Live Telegram Help by BadCase Setup Intructions: [On Telegram] Create a group for use with the script if you have not already. [On Telegram] Message /newbot to @BotFather and choose a name for your Telegram bot. Copy the token from the message it sends you. [In Script] Paste the token into the bot_token variable in the script. [On Telegram] Invite @RawDataBot to you group. Copy your chat id from the message it sends, you can find it under "chat": {"id": [In Script] Paste the chat id into the chat_id variable in the script. [On Telegram] Remove @RawDataBot from your group. [On Telegram] Invite your bot to the group. All done. Additional configuration options are documented in the scripts commented code, make sure you read all of the comments. Submitter BadCase Submitted 12/24/2021 Category Tools  
  7. Version 1.0.7

    651 downloads

    Setup Intructions: [On Telegram] Create a group for use with the script if you have not already. [On Telegram] Message /newbot to @BotFather and choose a name for your Telegram bot. Copy the token from the message it sends you. [In Script] Paste the token into the bot_token variable in the script. [On Telegram] Invite @RawDataBot to you group. Copy your chat id from the message it sends, you can find it under "chat": {"id": [In Script] Paste the chat id into the chat_id variable in the script. [On Telegram] Remove @RawDataBot from your group. [On Telegram] Invite your bot to the group. All done. Additional configuration options are documented in the scripts commented code, make sure you read all of the comments.
  8. Hi! Sorry for the late response, usually i can only contribute thread per day because i'm busy with my project. Anyway, i kinda can't quote some of your question because i'm on mobile device, so i will answer a few here xD. Any files has its own permission assigned, its consist of user, group, system. As its name, it's permit the allowed party to do such thing with the files (Read, Write, Modify). To access the file permission, just hold the file until the file option comes. You might find something like 'attributes' or 'permission'. I recommend to use MiXplore or ES File Explorer to see that kind of option because the stock file manager usually doesn't have it. An alternative way to this is to delete unnecessary game files and replace them using blank file with the same name. You might ask 'wich file?'; thus you can do this on database, app_cache, files folder, etc. You might do it your-self, just try the file one by one, if it affect the game (Make the game crash), revert the file to original one and leave untouched Yes, you can try the shell code i gave you above. The memory manipulation will work as memory bypass, so you can use memory hacks without being detected. I might unclear to explain this, just run the code using Android Terminal Emulator or ADB. You might wonder what game PID is, basically the game has its own process ID when its running. To find the game PID, use this code: pidof com.criticalforceentertainment.criticalops It will show some kind of number, make sure to copy it. Now put the pid into '[pid]' field that i've been mention in the code. You might find this difficult, you can just try this one-liner: if $a in "pidof com.criticalforceentertainment.criticalops"; do mount -o bind /proc/2/maps /proc/$a/maps; end -Good Luck!
  9. yes but not good with script sorry for this im not good with group search offset chain
  10. @MonkeySANby using the method you provided for tapping gg for executing script, I used it thrice, but it infinitely looped second one(shoot and enter clip size) gg.setRanges(gg.REGION_CODE_APP | gg.REGION_C_ALLOC | gg.REGION_C_DATA | gg.REGION_ANONYMOUS) gg.setVisible(false) while true do if gg.isVisible() then gg.setVisible(false) local fi = gg.prompt({"Enter Clip Size"}, {[1] ="0"}, {[1] ="number"}) gg.searchNumber(fi[1],gg.TYPE_DWORD) gg.getResults(20000) gg.sleep(100) end gg.setVisible(false) while true do if gg.isVisible() then gg.setVisible(false) local gi = gg.prompt({"Shoot And Enter Clip Size"}, {[1] ="0"}, {[1] ="number"}) gg.refineNumber(gi[1], gg.TYPE_DWORD) gg.getResults(100) end gg.sleep(100) end gg.setVisible(false) while true do if gg.isVisible() then gg.setVisible(false) local gti = gg.prompt({"Shoot And Enter Clip Size last time"}, {[1] ="0"}, {[1] ="number"}) gg.refineNumber(gti[1], gg.TYPE_DWORD) local t = gg.getResults(3) for i, v in ipairs(t) do t[i].freeze = true end gg.addListItems(t) end gg.sleep(100) end end
  11. Hi, I need help with the prompt command, I want to know if it's possible to replace sleep function in the code below with some other method in which I can choose when to execute the refine function local fi = gg.prompt({"Enter Clip Size"}, {[1] ="0"}, {[1] ="number"}) gg.searchNumber(fi[1],gg.TYPE_DWORD) gg.getResults(20000) gg.sleep(3000) local gi = gg.prompt({"Shoot And Enter Clip Size"}, {[1] ="0"}, {[1] ="number"}) gg.refineNumber(gi[1], gg.TYPE_DWORD) gg.getResults(100) gg.sleep(5000) local gti = gg.prompt({"Shoot And Enter Clip Size last time"}, {[1] ="0"}, {[1] ="number"}) gg.refineNumber(gti[1], gg.TYPE_DWORD) local t = gg.getResults(3) for i, v in ipairs(t) do t[i].freeze = true end gg.addListItems(t) gg.setRanges(gg.REGION_CODE_APP,gg.REGION_C_ALLOC, gg.REGION_C_DATA,gg.REGION_ANONYMOUS) One thing that just came to my mind is using functions, sleep and a loop and asking to either sleep or use refine in prompt, please give ideas and new methods to use. I used setranges function in the beginning but it was only searching in anonymous region,why??
  12. hi there. the script dont work for me. even the group search = 166D;12F::5 cant be found when searching it. is there any specific requirement? like the game need to be 32bit or 64bit version or something?
  13. WhoKnowsWho

    utf-8 search

    I have no idea about it being possible through scripting. Perhaps. But in the search bar you can't have both. UTF-8 is only UTF-8. That's why i suggest you to search in byte instead of string. Because then you can do a group search mixing byte, word, dword, float, double and qword...but with string search you can only search for strings. So what you can try to do is search the string. Then gameguardian will show you the results. if you see the string twice copy the first 11 results and then you have your bytes. And then search for nearby values that do not change and copy them as a group search. But i believe your main question answered. You can't do group search in UTF-8 or any other kind of string encoding using the gameguardian search bar.
  14. blocx

    utf-8 search

    bcz when i search something it come in first sometimes it come in second it for that if it possible to group search utf8
  15. WhoKnowsWho

    utf-8 search

    I meant for do the ordered group search. If i have to much results searching by string i do convert the string to byte and then copy a nearby dword or qword so that i have a cleaner order group. But its not clear what your trying to do. is this for a pointer search?
  16. blocx

    utf-8 search

    hi all i would know if its possible to make group search with utf-8 search ( i try to locate a value but just with single search result comes with 20 results and offset work not perfectly ) thanks in case i search earnedStars ( but appear twice in results )
  17. MAARS

    Script cheat

    @CmP answered well but notice that searching simply 17 can lead you to thousands of results and editing all those can make the crash, learn about group search to make your search more accurate
  18. blocx

    Script cheat

    there are 2 option 1 use an group search and offset 2 use chainer ( most advanced ) for 1 try to find fix values near ur good address and calcul offset for 2 reffer that https://gameguardian.net/forum/files/file/1409-chainer/
  19. im using the Battle Pass to check what item i will get when changing the ID. so that i can use that ID value in Event Quest to claim it. as in Event Quest the item wont show up when you changed it..you will only see what you got after you claim it clearly you need to watch the video again and pay attention. yep if i may say so..its in the game codes anyway. search for the big value (ie.Cash 50000) then goto..scroll up and you will see the others values too. check all the values then Copy as group search -> Add group size
  20. geez..im bad at explaning things given my English was not that good but you can use search bar on top and type in.. = group search that whats we call it. you can get more info from alot of people rather than just me alone. by do it over and over again..mostly after clear data, uninstall and reinstall...start new game all over again..looking for a pattern. if you see a pattern that keep showing up the same everytime..then you know its the right one. hmm..not really sure. only had a chance to test it on Halloween Event...not before it.
  21. That's because I was showing how you can change them manually. Using the group search hack means all your hunters are hacked so if you're in a guild the hunter you have selected for the guild hunt will be hacked too. So if they start a guild hunt then your hunter will have the hacked stats and it will be obvious. If you change them manually you can leave your guild hunter unchanged.
  22. Ok I think I have found a way to hack Diamonds Lvl 13 reward is 15 diamond Lvl 15 reward is 7500 gold So do a group search 15;7500 Region anonymous Dword Refine to 15 There'll be lot of 15 results you can edit them with incremental to find the main value or just edit them all both work Change it to 100000000 I haven't made it to lvl 13 yet so I can't check if it will work but I'm pretty confident that it will work
  23. It's group search and other is incremental statement
  24. blocx

    AdVenture Ages

    maybe u need to adapt search ur offert can be differrent but logic is the same dword anonymous group search with price off offer and search is ordered first number is last offert last number is first offert ( first offert left up last offert right down) for level up card number its in dword but find with auto
  25. Okay so I'm working on a game called days after I'm trying to hack the store prices to make it worth for free My method is to start with fuzzy# search set to auto Then search for the prices without full stops eg. 19.99 = 1999 value I then group search 409 ($4.09) 1899 ($18.99) 2699 ($26.99) displayed like this 409;1899;2699 set to auto again and get a couple of values I then change to zero and this is the result can you tell me why or is there any solution XiaoYing_Video_1630969029571.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.