Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 02/04/2019 in all areas

  1. Have you tried it at least? I highly doubt that searching for 500 consecutive addresses and editing all of them to one value can noticeably slow down your script. So are you sure that it does not suffice because of performance reasons? As pointed out above, editing values one-by-one in a loop is very inefficient. This approach should be used instead, if simple one with fuzzy search does not suffice: Example of implementing it: local startAddress = 0x12340000 local count = 500 local editValue = '555444' local values = {} for i = 1, count do values[i] = {address = startAddress; flags = gg.TYPE_DWORD; value = editValue} startAddress = startAddress + 4 end gg.setValues(values)
    3 points
  2. Version 101.1

    191,943,942 downloads

    Overview: Play games your way! “GameGuardian” is a game cheat / hack / alteration tool. With it, you can modify money, HP, SP, and much more. You can enjoy the fun part of a game without suffering from its unseasonable design. Requires Android: 2.3.3+ GameGuardian Features Summary Runs on ARM, x64 and x86 devices, including x86 emulators (LDPlayer, Droid4X, MOMO, KOPlayer, Andy, Memu, Leapdroid, AMIDuOS, Windroye, RemixOS, PhoenixOS, AVD, Genymotion, Nox, BlueStacks etc.) Supports Android 2.3.3+ (Gingerbread) through Lollipop (5+), Marshmallow (6+), Nougat (7+), Oreo (8+), Pie (9+), 10+. Support work without root via different virtual spaces. Support different emulators like PPSSPP, ePSXe, GameBoy etc. Game deceleration and acceleration (speedhack) for ARM and x86 devices, including x86 emulators. Also supports both 32-bit and 64-bit applications on 64-bit devices using speedhack. Search feature: encrypted values. Search of unknown values when specifying the difference between values. Search addresses by mask. Explicit and "fuzzy" numeric searches. Text (String, Hex, AoB) search. Supports: Double, Float, Qword, Dword, XOR, Word, Byte, or Auto data-type searches. Lua scripting support. Modify all search results at once. Filtering of search results (address greater than and less than, value greater than and less than). Search in the background feature. 'The fill' feature. Time jump feature. Dump memory. Copy memory. Customizable UI. App locale for over 50 languages. And, much, much more. Notes: ** ROOT or VIRTUAL ENVIRONMENT ONLY ** This tool only works on rooted devices or in virtual environment (without root in limited mode)! GG can work in limited mode without root, through a virtual environment. For example, through Parallel Space, VirtualXposed, Parallel Space Lite, GO multiple, 2Face and many others. Read the help for more details. You can find more information about rooting your device at XDA Developers. Want to help us improve, or add a translation? Then please visit thread "If you want to add a new translation or improve an existing". If you are having issues with the app, please visit thread "Gathering information about GG errors". Want to donate and help keep the project going? That's awesome! You can donate any amount (anything helps) here: Donate Need help with how to use this application? Please visit "Video tutorials" and forum "Guides". Credit: @d2dyno - Owner, lead designer, project management. @Enyby - Lead coder, project management. @Trasd - Technical consultant, project management. @Aqua - Creator (retired).
    1 point
  3. Version 2.4

    48,118 downloads

    Name of the script: Script Bullet Force (SBF) Creator: Saicobo Version of this script: v2.4 Created for the game: Bullet Force Game version: v1.68.0 Actual state: End List of hacks: Fire Rate No Recoil Multi Shot Wall Hack Speed Hack Jump Hack Underground Fov Infinite Ammo
    1 point
  4. I developed a chat in the game guardian and if someone wants to help me with suggestions of what I could put I would be grateful: -:
    1 point
  5. Version 0.6

    38,054 downloads

    Tutorial video For more subscriber to ANDROJUNCTION YouTube channel This script wont work with latestversion of game Use with game version 1.2.6 Game got patched It can be hacked but if i make again they will patch again It will be like loop So if you want script for latest version of game you need to pay (message me if u want) Script ended Features: •Free shopping✓ • get 12k gold✓ •get 12k gems ✓ •get +1 level✓ •Health hack ✓(god mode for player and also for base) • AMMO HACK
    1 point
  6. server side means you can edit all values but when you spend or buy something, the game will contact the server and match the value on the server. if there is a value that does not match the server, the server will not allow the purchase. Sorry for bad grammar
    1 point
  7. Dear, will someone please respond?! How and what values to change? Pleaaaaaaaseeeeee!
    1 point
  8. You choose not only worst possible way, you try it make more worst. Progressive edit is much worst in performance terms.
    1 point
  9. Then just use mx, if you think it is strongest and 'undecryptable'. Is there example below one of the strongest and 'undecryptable' which you mean? I dont want to make you desperate, but you need to throw away your wrong mindset about 'undecryptable' source.
    1 point
  10. Counter-question: what do you want to achieve by uploading a script with highly-redundant encryption (28 kb), when it's source code is less than 1 kb? What is the purpose of "encryption" that can't stop anyone from obtaining the source code? Have not you learned that there can not be "undecryptable encryption" for GG script yet? This was discussed so many times here, but you still believe in fairy tales. Last but not least, do you realize that this script is useless? Why reinvent the bicycle? The only possible value for this script would be it being an example for newbies to learn something, but for this it had to be posted as source code.
    1 point
  11. If it is "nothing special", then why "encrypt" the file? No reason to hide the source code in this case, IMO. Source code: local configFile = gg.EXT_CACHE_DIR .. "/" .. gg.getFile():match("[^/]+$") .. ".cfg" local data = loadfile(configFile) if data ~= nil then data = data() end local last = gg.getFile() info = gg.prompt({ "Select Script To Encrypt:" }, data, {"file"}) if info == nil then os.exit() end if info == nil then os.exit() end gg.saveVariable(info, configFile) local open = io.open local read_file = function(path) local file = open(path, "rb") if not file then return nil end local content = file:read("*a") file:close() return content end Text = read_file("" .. info[1] .. "") if Text == nil then print("The directory or file name is wrong") else print(Text) end read_text_src.lua
    1 point
  12. View File Horrorfield Video tutorial Get 1k silver,gold and exp ——–-————— dont use with your main account If your account get ban i cant help So create a new account Submitter AjYouTube Submitted 02/03/19 Category LUA scripts
    1 point
  13. @Shuaiouke No. I understand you right. You need search your 500 address and change it. But you can use long way with loop if you want.
    1 point
  14. local t = {} t[1] = {} t[1].address = 0x18004030 t[1].flags = gg.TYPE_DWORD t[2] = {} t[2].address = 0x18004034 t[2].flags = gg.TYPE_DWORD t[3] = {} t[3].address = 0x18004038 t[3].flags = gg.TYPE_DWORD gg.loadResults(t) yourTable = gg.getResults(3) for i,v in ipairs(yourTable) do yourTable.value = 10000 yourTable.flags = gg.TYPE_DWORD end gg.setValues(yourTable)
    1 point
  15. Man everyone loves you for your work. But not everyone have a money to pay. Please back Saiaapiz what we like. Do it for free. You are the only one who can made realy good scripts for guns of boom mate. Please do scripts for free!
    1 point
  16. If you don't like your script decompiled, why don't you think of the game maker you cracked? they spend a lot of money and time than you. if your script doesn't want to be decompiled, don't share it. crackers don't know the creator and don't want to know him. no crackers no premiums free, no gameguardian applications and no this forum. Welcome to cyberspace
    1 point
  17. @DESYROLLERSE, you can't blame someone for not being able/not wanting to learn by "trial and error" approach, when you are not able/don't want to do this yourself. Just remember how many times you asked me to "give you an example" (more like write the code for you)? It looked like you were not able to progress in developing your script without getting more and more "examples". When I told similar thing to you last time, you were very angry, you were definitely thinking that I had to provide you everything you need when you ask for it. So since when you've started to agree with this statement? Looks like a clear example of hipocrisy and double standards.
    1 point
  18. Tried the ammo editing, but it reverted back after reloading the game. Could you please explain how you did all of yours that worked?
    1 point
  19. Up up up... Lol.. I become frustrated
    1 point
  20. Version 1.0.0

    571 downloads

    Password is: kriptihaxxx Best mods for zombie haters update coming soon!! Join my diacord for updates and help and more!! Discord: https://discord.gg/U4A9TfX
    1 point
  21. Please someone could explain with a video. It's too hard! Please help!
    1 point
  22. @zaiaapiz we had faith in you I am humble I have no credit card or anything and I appreciate your effort if I could pay for the script but I can not and many who believed you our hero you fell hopefully you will be on the side of the town, thanks for the previous script I wish it were free as before but I understand it is impossible
    1 point
  23. Version 735.0.2

    1,483 downloads

    Follow me for My Update List Cheat... 1. Level Digimon 2. Level Player You will more easily complete all maps in the dungeon
    1 point
  24. I never gived for free LoL. _______________________________________________ added 1 minute later @saiaapiz I personaly support on you that you start selling it because all they gonne do is patch and patch, and what do you get for it? nothing, all the time you spended in making the script to waste...its time consuming if you cheat more then 1 game knowing for every update you have to update your script. from my opinion towards you, its the best discision. top ont hat adults pay very good for gob scripts...soo :)
    -1 points
  25. Hi Mello! Actually your script works very nice but... everyone needs ESP first of all. cause it's very helpful then other hacks. Please add ESP and thx for script!
    -1 points
  26. Learn by trial and error... Taking shortcuts you learn nothing but how to copy someone else's work. It's time consuming, but more rewarding when you actually do it yourself.
    -1 points
  27. @Enyby Do you know if it is possible that the script i make can ask for root Rights? I want to make a Standoff 2 menu with root and no root function, if i grant permission then it will continue to Root version else it goes to No Root. Is that possible? If so How?
    -1 points
×
×
  • 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.