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'm already unlock almost every skill GG supports lua script is really awesome Also, group item as well : The only unbreakable things are : (in my testing) - Resident mod : this will get your account banned (actually just ban flagging, but quite hard finding its value) - Egg mod : dunno how to make this work - marriage-exclusive job : at first it works, but next login it'll be gone, converted to crystal, and again, banned - train items : it may be able to be hacked if used just for leveling or upgrading building, but not work for egg atk/def/special exp during incubate state. also, the items will be disappeared on the next login (my workaround for this is by using save list and rebase things, but first i need access to material shop) - building things (exp, lv, time for lv up) : just use everything i mod for leveling, no need cheating this things lol the others, i think is cheat-able
  2. I managed to get it fixed. If anyone else has the "Invalid Wallet Earned" error, you can go to this facebook group https://www.facebook.com/groups/908275372557162/311327944539006 The moderator is using an injector tool that you have to pay a monthly fee for, but is supplying people with max coins and gems for free. This will fix the error for anyone that got it, because it changes the values without needing to load the game because it sends the values to your FB user id for the game. He has fixed this issue for many people before, so if you get him to help you, I can pretty much guarantee he'll fix the issue for you. If for some reason in the future he no longer helps people with this issue, I believe this could be the tool he uses - https://damarist.de/vip/ it's £5 a month and it was the only one I could find, so if you are going use it please do so at your own risk as it could be a scam for all I know. Only bother using it if the facebook group is no longer available.
  3. You can use editAll with values separated by semicolon, like in group search.
  4. boss, I'm developing a script, this is a group search where I need to edit each value separately, in this case there are 3 float values, I need to edit each one for other specific values. gg.editall is not for this case because it edits all values in list for a single one, and in my case I would need to edit one by one how would that edition look in a script? my group search is gg.searchNumber("1151.92004394531F;-262.89999389648F;17.30963516235F::9", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) and those are the separate numbers; 1°) 1151.92004394531 2°) -262.89999389648 3°) 17.30963516235 I need to edit the numbers for these; 1°) -1.106,31103515625 2°) 523,13757324219 3°) 68,24115753174 (Obs: it is a teleportation so the big numbers)
  5. great, because i can not test, and sorry the confusion i not mean the games but this app, bro please upload here because the size not br permited to me, not want link outside, is mine but i will delete [added 4 minutes later] only need upload the 32 because the other is uploaded here
  6. gg.alert('Sucess') function start() end function menuC() menu = gg.choice({'Life','Sair'},nill,'Bypass') if menu == 1 then life() end if menu == 2 then os.exit() end end function life() gg.searchNumber('5,53552857e-315',gg.TYPE_DOUBLE) gg.getresult('22') gg.editAll(freeze) end function exit() os.exit() end menuC() in gg.searchnumber I need a group search with the following code: 100F;5.53552857e-315E::5 in gg.results I need 22 results and in the gg.editall part I need to freeze all 22 values that appear in the search can someone give me a hand?
  7. @ Boardoptions try this fix, it works in my device tell me if works in your device,, the size is more big because need some work to work , thanks Super Clone [3.6.41.0226] fixed.apk
  8. View File Hooked Inc. Simple Lua Script Menu : Free buying Unlimited cash Script error? Contack me on whatsapp Enjoy ^_^ Whatsapp group Click here Submitter ExtremeBoy Submitted 04/03/2020 Category LUA scripts  
  9. Version 1.0

    5,395 downloads

    Menu : Free buying Unlimited cash Script error? Contack me on whatsapp Enjoy ^_^ Whatsapp group Click here
  10. I see, well I will need to play the game a bit langer because there are many things in the game I do not understand, I hope you can explain it for me. in video 1 I show you how to do multiple combos at once but were can I see how much time it takes? does the game shows any status, and also I realeased that characters can be locked or something, were does that stand. so much stuff in the game and I aint used to playing this kind of games. so I would appreciate if I get some info, like for examble with the pvp was very handful info. the most annoying part about this game is that a proper group search is barely possible because the game ceep changing majure values..like to different addresses in stead of the same range..vey annoying thing that I never encounterd before. , I mean not like this, anyway. please give me some more info about the game, all can help. oh yeah, and is there a place were I can se every character of the game?
  11. It's not the only way, but it is suitable for your case. The most efficient implementation of this way from the ones proposed in this topic can be found in this post: How to group values to edit in a search? (#2mhgpa6) It reuses the table returned by "getResults" function that leads to better performance of the code, but as it was mentioned above, it does not really matter when results count is relatively small.
  12. By the way, for this reason, this code: local t = {1, 2, 3, ..., 1000} much faster than this: local t = {} t[1] = 1 t[2] = 2 t[3] = 3 ... t[1000] = 1000 For the table, an array of the right size is immediately allocated, and not reallocated repeatedly as it is populated. Although, again, this is true when the number of elements is thousands and tens of thousands, and not when there are hundreds of them. In this case, there will be no apparent difference.
  13. The group search is not ordered, so I would prefer second approach from those Enyby mentioned. For this case it would be something like the following: gg.setRanges(gg.REGION_ANONYMOUS) gg.clearResults() gg.searchNumber('1014350479;1012202996;1083179008;1050253722;1031127695;1065353216;1065353216;1067282596:61', gg.TYPE_DWORD) local results = gg.getResults(5000) local edited = {} for i, v in ipairs(results) do if v.value == 1014350479 then edited[#edited + 1] = {address = v.address, flags = v.flags, value = 1011011011} elseif v.value == 1050253722 or v.value == 1031127695 then edited[#edited + 1] = {address = v.address, flags = v.flags, value = 1} end end gg.setValues(edited)
  14. Do I have to use clearResults after each refine search? Does old group's values exist to do refine search again after doing clearResults?
  15. Dot decimal separator. So '1.014.350.479' is not a valid number. For change one value from group search need do refine search and editAll after that. Or load all values and work with it in loop. Use 'if' and 'setValues'.
  16. Hi guys, I'm new at GG I have a script like this gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber('1.014.350.479;1.012.202.996;1.083.179.008;1.050.253.722;1.031.127.695;1.065.353.216;1.065.353.216;1.067.282.596:61', gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(5000) I want to change "1.014.350.479" to "1.011.011.011" and "1.050.253.722;1.031.127.695" to "1". Because I only know how to edit all of them with "editAll()", not know how to group them like this. Thanks for your help
  17. SAGEPAPI

    5 Heroes

    Yeah they do, can u send a screen record when u group search maybe you forgot something u dont know of.
  18. Moula

    5 Heroes

    Group search brings no results! I'm version 2.6.1. [added 4 minutes later] Updated to 2.6.2 and still no results (not that I expected that to help)
  19. SAGEPAPI

    5 Heroes

    Just group search both the coins and gems.
  20. any idea what mod does the lad in the fb group uses?
  21. View File PLANTS VS ZOMBIE SIMPLE LUA SCRIPT (UNLIMITED SUN/COINS) PASSWORD : EXTREMEBOY SCRIPT HELLO! THIS IS MY FIRST CREATION THE MENU : UNLIMITED SUN GAME SPEED NO DELAY ╔══════════[★]═════════╗ >>>FIND ME IN FACEBOOK HERE<<< >>>ADD ME IN WHATSAPP<<< >>>JOIN MY WHATSAPP GROUP<<< ╚══════════[★]═════════╝ WARNING IF THE SCRIPT ERROR JUST TELL ME IN THE COMENT OR CONTACT ME IN FACEBOOK : EXTREMEBOY Submitter ExtremeBoy Submitted 02/08/2020 Category LUA scripts  
  22. Version 2.1

    31,745 downloads

    PASSWORD : EXTREMEBOY SCRIPT HELLO! THIS IS MY FIRST CREATION THE MENU : UNLIMITED SUN GAME SPEED NO DELAY ╔══════════[★]═════════╗ >>>FIND ME IN FACEBOOK HERE<<< >>>ADD ME IN WHATSAPP<<< >>>JOIN MY WHATSAPP GROUP<<< ╚══════════[★]═════════╝ WARNING IF THE SCRIPT ERROR JUST TELL ME IN THE COMENT OR CONTACT ME IN FACEBOOK : EXTREMEBOY
  23. @ItsSC will this work in Sector 7? and do i need to change something with GG settings like memory range etc before using this script. And is there some kind of short video or an instruction on how to use this script? i think i understand the switch packages because i already use it before(change with gasoline right?) but how about the season and customize other things script? do you have any discord group for this script?
  24. View File Decrypted PUBG Lite Script by Exa21 Just Sharing ━━━━━━━━━━━━━━━━━ Decrypt Script ━━━━━━━━━━━━━━━━━ Script Name > Decrypted Script PUBG Lite.lua Encrypt Type > Unknown Game > PUBGM Lite ━━━━━━━━━━━━━━━━━ Execute = [✓] ━━━━━━━━━━━━━━━━━ Decrypted By @Exa21 Join For More - @SCGaminGCH @INSANEhacks @ERR0R10 @SniperTMhaker ━━━━━━━━━━━━━━━━━ ━━━━━━━━━━━━━━━━━━━━━ ՏᏟᏀᎪᎷᏆΝᏀ ━━━━━━━━━━━━━━━━━━━━━ Decrypt Script Hosts Makers Lib Modding Shell Script ━━━━━━━━━━━━━━━━━━━━━ Creators -> @Exa21 ━━━━━━━━━━━━━━━━━━━━━ Join Group -> @SCGaminGGroup ━━━━━━━━━━━━━━━━━━━━━ https://t.me/SCGaminGCH ━━━━━━━━━━━━━━━━━━━━━ Submitter Abed_Nego Submitted 01/21/2020 Category PUBG  
×
×
  • 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.