Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/29/2018 in all areas

  1. I have modified this script(v3.7.6) so that it wont crash, only easy aim and always head shot works. Esp wont work. Its somewhat buggy. If u want a stable and updated script contact @saiaapiz. GoB v3.7.6 Modified by pZ.lua
    5 points
  2. I have modified this script(v3.7.6) so that it wont crash, only easy aim and always head shot works. Esp wont work. Its somewhat buggy. If u want a stable and updated script contact @saiaapiz. GoB v3.7.6 Modified by pZ.lua
    4 points
  3. Script price 25$ Doller Play PÚBG Hack Scripts Low price and best then guns of boom ?
    4 points
  4. Here is a part from the script that is used in GG for text search: if utf16 then encoding = 'UTF-16LE' end It means that "UTF-16LE" encoding is used if user selects corresponding option (via checkbox). So, if you need same result as in GG text search, then use this encoding. Also check my previous comment, I have added info that explains why you got different result when "UTF-16" encoding was set.
    3 points
  5. Are you sure that string that you are searching for is encoded in UTF-16 in process memory? You may try other encodings from available ones (see "bytes" function description in GG API reference). Edit: Those 2 bytes at start of the array from your second screenshot is byte order mask. You need to use "UTF-16LE" encoding in your case. I am not sure that BOM won't be included if you choose it, give it a try.
    3 points
  6. Here is an example that you have asked for. Function to search text was taken from this post. function searchText(text, encoding) local bytes = gg.bytes(text, encoding) local ret = '' for i, b in ipairs(bytes) do ret = ret..';'..b end ret = ret:sub(2)..'::'..#bytes return gg.searchNumber(ret, gg.TYPE_BYTE) end function getResultsCount() if gg.getResultsCount then return gg.getResultsCount() end return gg.getResultCount() end local input = gg.prompt({'Input string to search:'}, nil, {'text'}) local str = '' if input == nil then -- Something to do if the prompt window was cancelled (this block can be omitted) end if input ~= nil then str = input[1] end if #str > 0 then gg.clearResults() searchText(str, 'UTF-16') gg.getResults(getResultsCount()) gg.editAll('1', gg.TYPE_BYTE) end text_search.lua
    2 points
  7. What do you mean work like comments? I did write my contact, web, etc in my scripts, it is enough to give information. They can contact me, also find my website or find my channel. If your purpose is possible to add url clickable then trigger browser to open, I think it will never happen. GG is free no ads, no pop up. Imagine that in the scripts have a ton of url.
    2 points
  8. 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 :)
    2 points
  9. Version v3.9.3

    43,940 downloads

    Features • ESP • Aimbot • Always Headshot • Damage Hack • Infinity Ammo • No Recoil • Admin Panel • Field Of View Hack Extra Note • Run script before starting a match. • Mostly doesn't work on x86. • This trial script may not working in future game updates. - Script will not be updated anymore, for more information. https://t.me/joinchat/AAAAAFKvzx7E__GdERLGcA Gameplay
    1 point
  10. Ok here is the script Assassin's Creed Rebellion v2.0.1 ToolBox by BadCase (#87r1v042) sadly i have had no luck with the helix and dna but you only have to get enough to obtain a character with the script you can set them to level 39
    1 point
  11. Watch on YouTube: 8.69.0: Faster search with hide options - in some cases in 134 times - GameGuardian
    1 point
  12. I prefer sending it directly to moderator? why? I buy this script lol so I choose what to do with it, not you? Be it scam or not I still have it from him just that it's not working maybe I just don't really know how to make it works or maybe it need a little tweak. After giving it to the moderator if he manage to make it works then it's up to him if he want to share it with the rest or not.
    1 point
  13. i played a little more and it isn't always 1 negative number and a positive number they can both be positive but it's always the sum of those 2 values, the value between them is randomly generated and it doesn't seem to have any use for us. and the structure in the memory around the money values should be like this(obviously "???" means idk) : 65537 Hero level Experience Gold Available skill point Available talent point Honor ???? ????? Strength Intelligence Agility Current hp Current mp everything is for the main character and lumped togheter btw it's the same encryption for everything so : value1 value2 value3 value 1 + value 3 = what you have
    1 point
  14. Any chance you could not rip off every feature I add to my script?
    1 point
  15. 1 point
  16. Place update script place ? many people hope u will add new script update
    1 point
  17. Guys calmdown @saiaapiz will do the update when he have a times! He will surprise it....
    1 point
  18. Bro guns of boom updated to 4.9.0 version very recently so this cheats not working now,please update a new script thanku?
    1 point
  19. Pls update this script , not working after today's update
    1 point
  20. View File PACYBITS FREE INFINITE STORE HACK + GOLD HACK + PACK UNLOCKER + INFINITE TOKENS THIS SCRIPT CAN BE USED TO ACQUIRE: 1.INFINITE PACKS OF ALL TYPES FREE 2.INFINITE GOLD 3.INFINITE TOKENS 4.PACK UNLOCKER FOR SEASONAL PACKS 5.MAKE EXISTING LIGHTNING ROUND PACKS INFINITE WATCH THIS VIDEO TO KNOW HOW TO USE THE SCRIPT WATCH THIS VIDEO TO KNOW HOW TO USE THE SCRIPT Submitter RONO_PLAYS Submitted 11/23/18 Category LUA scripts
    1 point
  21. can someone help me i'm new to this. I got game guardian on windows 10 64bit and i rooted bluestacks through bstweaker every time i try and speed hack with game guardian it does not work but on my android phone that's rooted it works any help please
    1 point
  22. it is a function that you can call when they select a button in your script, with entername() put whatever you want it to do after the name is entered where the gg.alert() is
    1 point
  23. Here ya go function entername() --opens prompt playername = gg.prompt({[1] = 'Enter the player name.'}, {[1] = '0'}, {[1] = 'text'}) if playername == nil then gg.alert('You did not enter anything') home() else -- the variable playername[1] holds the value entered gg.alert('The Player name ' .. playername[1] .. ' was entered') end end here is a text file with it in it since things tend to get messed up when copying and pasting from the forums demo.txt
    1 point
  24. Its better to provide the exact info as to why its not working just saying its not working wont get you any help as it may be due to many reasons would help if u can attach screenshots of the problem/errors you are facing then i can give you a solution
    1 point
  25. What is field of view changer mean? Also how do u change damage of guns in game guardian _______________________________________________ added 0 minutes later Also are u ever gonna update the always headshot?? We've been waiting almost a month
    1 point
  26. Someone pls hack MPL pro game...i tried with GG the values are changing but when we submit the score it come back to normal.....can someone help me with it https://getmpl.com/iOUBRO2nyQ
    1 point
  27. This is what it's telling me now please help
    1 point
  28. What method you use to find that hack? Can you teach me how to find and make like that. Please...
    1 point
  29. lol you can try posting it here so everybody could test your script.
    0 points
  30. Version 1.0.0

    21,243 downloads

    Hey Guys< Its Mr.X Today I'm here to share my VIP Script , I just tested it on couple of Android devices Today 3/10/2018> It is 100% Working and Its Anti-Ban !! NOTE: Don't need mod apk , Just use google play apk !! Download Links are Given below: Mr.X VIP Script Link : Click here VIP Password Link : Click here DD Rv Script Link : Click here You can get links from here also: Click here https://anotepad.com/notes/jwdf98 My Script features : 1)One Click Lobby(Wallhack+Body Color) 2)One Click Island(Fix Wallhack+balck sky) 3) No recoil(every gun active again) 4) Auto_headshot(95%) Links are in texts file below : Don"t worry< I"ll add more features in my next version ! Mr.X Script and Pass.txt
    -1 points
  31. Version 1.1.6

    1,550 downloads

    THIS SCRIPT CAN BE USED TO ACQUIRE 1.GOD MODE WHERE YOU NEVER LOSE ANY ONLINE VERSUS MATCH 2.95+ DEFENSE ,CONTROL AND ATTACK FOR EACH PLAYER 3.unlimited div 1 rewards everytime you win. 4.unlimited fut and super packs everytime you win. 5.free division promotion points WATCH THIS VIDEO TO KNOW HOW TO USE THE SCRIPT CORRECTLY WATCH THIS VIDEO TO KNOW HOW TO USE THE SCRIPT CORRECTLY
    -1 points
  32. Version 1.1.7

    1,585 downloads

    This script can be used to acquire: 1.ALWAYS WIN ONLINE VERSUS PVP 2.UNLIMITED DIV 1 REWARDS EVERY TIME YOU WIN 3.ALWAYS BEAT YOUR OPPONENT 11-0 4.100 DEFENSE 100 CONTROL & 100 ATTACK FOR ALL PLAYERS WATCH THIS VIDEO TO KNOW HOW TO USE THE SCRIPT WATCH THIS VIDEO TO KNOW HOW TO USE THE SCRIPT
    -1 points
  33. Version 1.1.7

    5,002 downloads

    THIS SCRIPT CAN BE USED TO ACQUIRE: 1.INFINITE PACKS OF ALL TYPES FREE 2.INFINITE GOLD 3.INFINITE TOKENS 4.PACK UNLOCKER FOR SEASONAL PACKS 5.MAKE EXISTING LIGHTNING ROUND PACKS INFINITE WATCH THIS VIDEO TO KNOW HOW TO USE THE SCRIPT WATCH THIS VIDEO TO KNOW HOW TO USE THE SCRIPT
    -1 points
  34. Thanks for the script, could you make a script to exchange sbc cards?
    -1 points
  35. @NoFear please tell me where can I mail the script/lua to you and you can try to see how to make it works. I am not able to send you message or maybe if you have discord please tell me. Thank you very much in advance
    -1 points
  36. Version 1.1.11

    7,255 downloads

    this script can be used to: 1.rank up to division 1 from whatever division you are currently on even if you lose the versus matches 2.always receive max division 1 rewards even if you lose a versus match 3.unlimited fut and super packs 4.unlimited tokens and gold from div 1 rewards 5.guaranteed max div 1 rewards every time you play versus
    -1 points
  37. Version 1.2.5

    19,320 downloads

    This script can be used to acquire 1.unlimited gold elite pack 2.unlimited tokens DO NOT EXCEED 10 MILLION TOKENS TO AVOID BEING BANNED IF YOU EXCEED 10 MILLION TOKENS YOU WONT BE ALLOWED TO ACCESS ONLINE FEATURES I.E TRADING
    -1 points
  38. Version 1.7.4

    47,195 downloads

    View more scripts from the creator This script can be used to acquire 1.Unlimited number of duplicates of any player of your choice 2.Unlimited gold when you sell the duplicates 3.Allows online trading of the duplicated cards warning Do not stack more than 300 million coins at once to avoid ban WATCH THIS VIDEO TO KNOW HOW TO USE THE SCRIPT WATCH THIS VIDEO TO KNOW HOW TO USE THE SCRIPT
    -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.