Jump to content

Search the Community

Showing results for 'pubg script'.

  • 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

Found 10,000 results

  1. please double check the script is working correctly, by comparing the offsets from the script with a game you are able to dump. (as shown in my second and thirds picture )
  2. Hi, yes I got this working, however when finding the address the offsets are 0000 Thank you, the script works perfectly, however when putting the resulting offsets on the dumper app I get the same error. The Zygisk-Il2CppDumper also works fine, but when I try to create a script with BadCases toolbox, it crashes because all namespaces are blank. I'll just try to make a script in a different way.
  3. View File Get Registration Offsets (Code+Metadata) Simple script will get the registration offsets for code and metadata. Allows you to copy offsets to your clipboard Submitter APEXggV2 Submitted 04/15/2024 Category Tools  
  4. Version 1.0.0

    222 downloads

    Simple script will get the registration offsets for code and metadata. Allows you to copy offsets to your clipboard
  5. View File CarX street speedhack a unique script written from scratch, all unique values and not stolen for the benefit of our community, did not encode anything spedhack which does not affect the timer, but also affects the time of the game itself (you can play enjoyable games online) Submitter HACK_DUL Submitted 04/15/2024 Category LUA scripts  
  6. Version 1.0.0

    158 downloads

    a unique script written from scratch, all unique values and not stolen for the benefit of our community, did not encode anything spedhack which does not affect the timer, but also affects the time of the game itself (you can play enjoyable games online)
  7. View File Mr.autofire -cash hack- 2 billion Play game till shop opens or u have 60 gems Go to shop - Load script get out of shop & go back in Pic 60 gems get 1999999999 Submitter Jamieq Submitted 04/14/2024 Category LUA scripts  
  8. Version 3.0.0

    60 downloads

    Play game till shop opens or u have 60 gems Go to shop - Load script get out of shop & go back in Pic 60 gems get 1999999999
  9. Here, run this script. it will get code and meta registration Offsets and let you copy to clipboard [GET]-RegistrationOffsets-v01--APEX[GG]v2.lua
  10. why everyone keeps asking about "is it fixed/patches", i already told this countless time, it wont get fixed anytime soon, and if you using my premium script, it will crash your game since emulator uses x86_64 while the script made on aarch64, or you just replace everything, this can cause instablity because there's might be just a types you accidentally replaced and caused NULL REFERENCE and the LuaVM confused and just crash
  11. Thanks. Try now @alien420, @Khadimulislam: On 2/14/2024 at 12:44 AM, nok1a said: If your using 64 Bit download this script, should work: function class_Pointer() local range = gg.getRangesList("global-metadata.dat") -- get dll pointer UserProfile gg.setRanges(gg.REGION_OTHER) gg.searchNumber("h00 55 73 65 72 50 72 6F 66 69 6C 65 2E 49 6E 66 72 61 73 74 72 75 63 74 75 72 65 2E 64 6C 6C 00", gg.TYPE_BYTE, nil, nil, range[1].start, range[1]["end"]) -- UserProfile.Infrastructure.dll local char_UserProfile = gg.getResults(2) gg.setRanges(gg.REGION_ANONYMOUS) gg.clearResults() gg.searchNumber(char_UserProfile[2].address, gg.TYPE_QWORD) local pointerCheck = gg.getResults(1) gg.clearResults() -- get class pointer JourneyProgress gg.setRanges(gg.REGION_OTHER) gg.searchNumber("h00 4A 6F 75 72 6E 65 79 50 72 6F 67 72 65 73 73 00", gg.TYPE_BYTE, nil, nil, range[1].start, range[1]["end"]) -- JourneyProgress local char_Journey = gg.getResults(2) gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber(char_Journey[2].address, gg.TYPE_QWORD) local t = gg.getResults(gg.getResultsCount()) for i, v in ipairs(t) do v.address = v.address - 0x10 end t = gg.getValues(t) local class_Pointer_JourneyProcess = {} for i, v in ipairs(t) do if v.value == pointerCheck[1].address then class_Pointer_JourneyProcess[i] = v.address end end gg.clearResults() return class_Pointer_JourneyProcess end local class_Pointer_JourneyProcess = class_Pointer() function field_numberOfCompletedJourney(input) local Level = input gg.searchNumber(class_Pointer_JourneyProcess[1], gg.TYPE_QWORD) local t = gg.getResults(gg.getResultsCount()) for i, v in ipairs(t) do v.address = v.address + 0x190 v.flags = gg.TYPE_DWORD end t = gg.getValues(t) local numberOfCompletedJourney = {} for i, v in ipairs(t) do if v.value == (tonumber(Level[1]) - 1) then numberOfCompletedJourney[#numberOfCompletedJourney + 1] = t[i] end end if #numberOfCompletedJourney == 0 then gg.toast("Level not found, did you input correct level?") gg.sleep(100) else local LevelSet = gg.prompt( {'Input desired Level to edit to'}, {[1]=''}, {[1]='number'} ) for i, v in ipairs(numberOfCompletedJourney) do v.value = tonumber(LevelSet[1]) - 1 end gg.setValues(numberOfCompletedJourney) gg.toast("Level set, go in game and back to lobby for apply the change visually") end gg.clearResults() end function start() local Level = gg.prompt( {'Input your current Level'}, {[1]=''}, {[1]='number'} ) if Level == nil then gg.toast("No input") else local nonNumb = 0 for i in string.gmatch(Level[1], "%U") do local char = string.byte(i) if char < 0x30 or char > 0x39 then nonNumb = nonNumb + 1 end if nonNumb ~= 0 then gg.toast("This is not a number") else field_numberOfCompletedJourney(Level) break end end end end while (true) do if gg.isVisible() then gg.setVisible(false) start() end gg.sleep(100) end
  12. View File Ramboat 2 -cash/gold hack If fresh game Play till level 2 & u can move between screen pages Load script - read info & pic Quick tutorial in script for Energy/battery Submitter Jamieq Submitted 04/13/2024 Category LUA scripts  
  13. @MonkeySANHello Mr MonkeySAN, can you share the Lua script for Kingdom Adventurers, the file on the forum is no longer available. Thank You
  14. Version 2.5.3

    64 downloads

    If fresh game Play till level 2 & u can move between screen pages Load script - read info & pic Quick tutorial in script for Energy/battery
  15. People beeing ***** and started joking because termux isnt for games, im interested because i also wanted to hook enterpassword offset and even got the script for it, give me ur discord
  16. View File Stunt Bike Extreme -gem hack- Load script & find -9999999 in buying bikes ,the last bike & 3rd last Submitter Jamieq Submitted 04/13/2024 Category LUA scripts  
  17. View File Trial Mania -money hack- Load script, pic first bike showing -999999999 Done Submitter Jamieq Submitted 04/13/2024 Category LUA scripts  
  18. Version 0.2.14

    118 downloads

    Load script, pic first bike showing -999999999 Done
  19. Version 0.502

    81 downloads

    Load script & find -9999999 in buying bikes ,the last bike & 3rd last
  20. Just press that triangle and then select the script wherever you have it on your device.
    Very nice script it help me to beat the game in veteran mode but i hope there was unlimited command point tho anyways good job ^^
  21. Thank you for your help. I was able to get the addresses from the script, but the resulting offset is just "0000" lol. I give up
  22. I can't figure out how to run the Lua scripts can someone please help?
  23. View File Ninja Dash Run hacks for all currency Load script & follow instructions U can see in primary pic all values can be edited, with searches Submitter Jamieq Submitted 04/12/2024 Category LUA scripts  
  24. brother please update script.
×
×
  • 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.