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. above table represent Evolution stages and Levels in it. so how to search a dino at Level 40 with HP 274 we use group search = Evolution stage ; Level ; 274 :: 17 base on the table Level 40 is Evolution stage 3 so start with = 3 ; Level ; 274 but in codes, Level are just store as value 1 to 10. you can see in the table each stage has 10 levels so Level 40 = 10 so the final group search = 3 ; 10 ; 274 :: 17
  2. increase group size from 4509 to 4613
  3. ahh i see, it does work if i do that, thankyou.. a question from me, what if i have so many phase grouping that more than 3? do i need increment for it? so i dont have to write SET_POSITION(phaseValues[i][1], phaseValues[i][2], phaseValues[i][3].............................., phaseValues[i][1000])
  4. hm maybe for now i will keep them outside function also in a case where i want to put another phase grouping like this : local phaseValues = {{171, 172, 200},{181, 182, 300},{191, 192, 400}} is it allowed to be written like that? after added that, so the full code will be this : function SET_POSITION(P1, P2, P3) local saved = gg.getListItems() local edited = {} for i, v in ipairs(saved) do if v.name == "P1" then v.value = P1 table.insert(edited, v) elseif v.name == "P2" then v.value = P2 table.insert(edited, v) elseif v.name == "P3" then v.value = P3 table.insert(edited, v) end end if #edited > 0 then gg.setValues(edited) gg.addListItems(edited) else gg.toast("NO MATCHING P1/P2/P3 FOUND.") end end local function createPhaseDisplayer(phaseValues, buffInfo, progressSymbol, backgroundSymbol) local phasesCount = #phaseValues local currentPhase = 0 return function () currentPhase = currentPhase + 1 if currentPhase > phasesCount then os.exit() end local indicatorFirstPart = string.rep(progressSymbol, currentPhase) local indicatorSecondPart = string.rep(backgroundSymbol, phasesCount - currentPhase) local indicator = indicatorFirstPart .. indicatorSecondPart local phaseValue = phaseValues[currentPhase] local buffInfo = buffInfo local displayMessage = string.format("\n%s : %s", buffInfo, indicator) gg.toast(displayMessage, true) end end local phaseValues = {{171, 172, 200},{181, 182, 300},{191, 192, 400}} local buffInfo = "MISSION" local symbol1 = "=" local symbol2 = "-" local displayPhase = createPhaseDisplayer(phaseValues, buffInfo, symbol1, symbol2) for i = 1, #phaseValues do SET_POSITION(phaseValues[i]) displayPhase() end
  5. Recover Energy = 26; 96 Recovery Porion (L) = 27; 4448 Recovery Potion (S) = 28; 96 Mystic Flute = 29; 352 Small Flute = 30; 96 Holy Herb = 31; 4448 Sacred Leaf = 32; 96 Energizing Stew = 33; 352 Energizing Riceball = 34; 96 Mystic Elixir = 35; 96 Homeopathic Elixir = 36; 352 Eternal Candle = 37; 96 Awakening Vessel = 38; 352 Royal Gift = 39; 32864 Kairo Flan = 40; 32864 Wairo Flan = 41; 32864 Kairo Creamy Cake = 42; 32864 Wairo Creamy Cake = 43; 32864 HP Orb = 44; 32864 MP Orb = 45; 32864 Vigor Orb = 46; 32864 Power Orb = 47; 32864 Resilience Orb = 48; 32864 Agility Orb = 49; 32864 Fortune Orb = 50; 32864 Miracle Mallet = 51; 352 Wisdom Orb = 52; 32864 Dexterity Orb = 53; 32864 Forage Orb = 54; 32864 Travel Orb = 55; 32864 Fondness Orb = 56; 32864 Running Shoes = 57; 96 Blessed Rain = 58; 96 Bounty Bag = 59; 96 Pouch (Grass) = 60; 96 Pouch (Wood) = 61; 96 Pouch (Food) = 62; 96 Pouch (Ore) = 63; 96 Pouch (Mystic Ore) = 64; 96 Skill Up Orb = 65; 104 Bronze Trophy = 66; 2152 Silver Trophy = 67; 2152 Gold Trophy = 68; 2152 Kairo Grail = 69; 2152 Crown of Courage = 70; 2152 above is Group Item IDs and Flags. i think nothing changed from this : Kingdom adventurers (#ct8d7j) for version 2.5.7 to search Group Item you had already unlocked : = 1;0;ID;Flag;4::25 ie: Miracle Mallet = 1;0;51;352;4::25 once found tap and hold ID value, choose Offset calculator and enter offset 98 as shown as below : VID_20250609020508.mp4 that get you to quantity value. as for Group Item that you had yet to unlock : search = 0;0;ID;Flag;4::25 but this time you need to activate it first the first 0 (second address above ID) is the activation value so change it to 1 the second 0 is for display "New" - same change to 1 but optional again to get to quantity use the ID value and add offset 98.
  6. @MonkeySAN Hi there, you have been a godsend with the LUA scripts. I was wondering if you might still have the one for Group Items x64? I tried clicking on the quoted reply but it's redirecting me to a 'Sorry! File not found' page. I would attempt to do it manually and follow Jimeous however I think it requires different Syntax as it always returns no results. Your advice would be appreciated in that regard. Thank you so much for your contributions!
  7. Uhm hey Apex I've join your telegram but the Group was removed??? And I've test the Left to Survive it shows error but thanks for the script it really help!
  8. mask search tutorial: Example of the mask search - GameGuardian (#1asz7l9n) https://gameguardian.net/help/help.html#help_mask_search But with "Group Search" in this context do you mean to filter the result list based on multiple masks? You can't filter by multiple masks at once. But you have the option to use wildcards by using the "?" symbol. Then every hex value from 0 to F will be valid in which ever position you placed the symbol.
  9. Thanks for the response. Sorry It's kind of a long story and confusing lol. But let me try to better clarify my question. It's pretty specific and straight forward. When I get my refined result from my group search, which is that number "6", I long press on it, and select "search nearby" and I search for -1 Dword with "After distance" of 500. The problem is, the address (as shown in the attached screenshot) is always different when I restart the game. Is there a way to write something in the script to perform this "long press/search nearby" without knowing what that address will be? That's all I need to know.
  10. Yeah unfortunately it's so weird and unreliable. I tried various group searches and backwards pointer searches. It works 4 or 5 times in a row when I restart the game, but then sadly it stops working
  11. But if you did a nearby search of 500 you should be able to find another group search that is better and more static.
  12. Hello, Wondering if someone can please help me. I have a group search and refined value like this: gg.searchNumber("0.10000000149;2.5;6.0::9", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1, 0) gg.refineNumber("6", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1, 0) local t = gg.getResults(1) gg.addListItems(t) t = nil What I'd like to do is use the result of "6" from above to perform a "NearBy Search" with an "After" distance of 500 for value: -1 DWORD. The problem is the address of the "6" keeps changing when I restart the game. Is there a proper way to code the script so that it does what I need even when the address of the "6" changes? I've searched and played around with it and couldn't figure it out at all. Not even sure if it's doable. That's why I'm asking. Would appreciate any assistance.
  13. Hello I'm newbie here, i just want to know how to do Mask Addresses Group Search, i already tried to find the tutorial but i can't find it, what i found only value group search(byte, word, dword, qword, float, etc)... Please help me and thank you
  14. I'm using both Cheat Engine and Game Guardian at the same time. Cheat Engine for fixing values like HP and GameGuardian for group searches and editing memory. I have found out how to turn the prices of anything that costs premium currencies into 0, and I'm looking to find a way to make something in the shop to never run out of stock next, or cheat in the highest tier of equipment from the Foundry. I have found a Lua script that used to work 2 months ago, but it has broke ever since.
  15. TxXDRAGONXxT

    Kingshot

    Hello i need some help with this game I have tried to do the group search and added the other section of memory and when i change the result i get no change Game link https://play.google.com/store/apps/details?id=com.run.tower.defense
  16. Again. Have you READ anything (comments and replies) in THIS thread? if you REALLY did, then you will know what does that group search is for.
  17. Hello i need some help with this game I have tried to do the group search and added the other section of memory and when i change the result i get no change Game link https://play.google.com/store/apps/details?id=com.soul.zhongjianshang
  18. i entered the dword group search and got this what do i do now @MonkeySAN
  19. For the new season points : UTF-8 = :SSPSuit21AirPoints.amount Dword group search(ordered) = 25D;1,397,773,139D;846,489,973D;1,919,500,593D;1,852,403,536D;1,630,434,164D;1,853,189,997D::25 HEX search = h 00 53 53 50 53 75 69 74 32 31 41 69 72 50 6F 69 6E 74 73 2E 61 6D 6F 75 6E 74 00 - Season pass unlock by @NoFear is still working - Armv8 only
  20. thats because offset 0x14 wasnt correct to begin with. Build item = Gate value 1 = Pointer value 2 = Build ID value 3 = Build Level value 4 = Amount now i want you tap hold value 1 until this popup appear : i dont know if 32bit the same as 64bit. but if there are 2 "Go to the Pointer", then choose the 2nd one with long address - it will bring you to the next page - screen shot that and post it here. --------------------------------- btw..you can search the Gate more easily using this group search = 28;0;1;99::13
  21. IDs are the same as from that older post. to change item, change the ID. after you had done, dont forget to change it back to original values and save the game. it will stay the same after restart. so that you can easily find that item again if needed. in this case, Sturdy Board. group search = 75;3;3;24;50::17
  22. View File DEXInfoExtractor This script can help you extract methods and fields from the DEX file in memory. The accuracy of method types and parameters cannot be guaranteed. If the extracted size is too large, you can adjust it in the settings. Submitter TdLove Submitted 03/17/2025 Category Tools  
  23. Version 1.0

    220 downloads

    This script can help you extract methods and fields from the DEX file in memory. The accuracy of method types and parameters cannot be guaranteed. If the extracted size is too large, you can adjust it in the settings.
  24. sorry for future security. the group link is located in the comment pin column https://youtu.be/UjSLeSNWF9A?si=MT2lDzNDguN7vlFb
  25. You are already ranked 13th on this forum. That's pretty amazing. Have you tried vmos... it will help you... I see this post has a lot of replies and it's very deserved that you won them all. I don't mind if you join my telegram group. Definitely not a fake account.
×
×
  • 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.