Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/14/2022 in all areas

  1. I don't think there's any bp scripts that currently exist. You'll have to make your own. The reason bp scripts are almost extinct is because the game has been obfuscated since version 16.6.1, and most modding has been achieved by comparing 16.6.1 with the current version to deobfuscate the game's code and find hacks. The pixel pass was not a thing in version 16.6.1, so all the pixel pass code is obfuscated and almost impossible to deobfuscate. This makes it very difficult to find battle pass hacks.
    1 point
  2. @crimsontrooper I know you're asking about medals but have you had any success hacking anything else in the game? I've found items in the shop can be bought for free.
    1 point
  3. I was doing pg3d reverse, this security config was in obb in encrypted base64, but I didn't find any rules for pg 3d anti-cheat that detect game guardian
    1 point
  4. try the updated version New version 10.8.2.5.8.x64 released!
    1 point
  5. Version 1.2 (32-Bit)

    3,898 downloads

    Wanna debug your code ? But lazy to start remote debugging ? Use this, just put your address and ready2go ! Use this, might usefull when you want to know the caller, encrypted pointer, anything inside register. - Features: Dump Register Write Register Copy register to clipboard Jump onto register Note: Only work on 32-Bit Arm Processes. Don't forget to leave ❤, if it help you. Source: Github
    1 point
  6. Hello i would like to add one time password on my script And it should put it on specific folder like example it will creat a new folder and write it there so the user dont need to enter and enter it again and once the script update It will automatically delete the old one anyone have idea?
    0 points
  7. Hi! I've tested the Script and it works fine. The Input value must the same as password ('cdaa') defined here: local password = 'cdaa' The reason for this is: to reject user that gives wrong password. If the user gives the correct password, then the password is saved into a file (/storage/emulated/0/.pass/.pwd). Read my Implementation list on #Client-Sided The folder are hidden by purpose as it's only used by the script. However you can unhide the folder by changing lines 2 into this: (Remove the dots ...) local file = 'pass/pwd' You can now access them on /storage/emulated/0/pass/pwd. If this helps You, consider to approve this post as Solution. *Edit: I've Updated the script to Unhide the Folder & More Description on what the script does. test.lua
    0 points
  8. on emulators, the script causes errors for me, and loads incorrectly, and on a mobile smartphone, anti-cheat does not work, I tried a lot of hiding tags, but it finds gameguardian in memory, and then detects the apk virtualization doesn't help
    0 points
  9. One issue i cannot find the Folder where it actually save pleas put it on 0/storage/emulated/ -- Creat a new folder And save it there pleas
    0 points
  10. Also error in inpute value its always say Not Correct I also cannot find the new created folder it should put it on storafe/emulated so i can Modify it anywhere later on
    0 points
  11. Thank you Very much sir really needing this for very long time thank god Game guardian forums helpers still active!
    0 points
  12. Hi! It depends on your Approach. Well you can do something like this: Client-Sided: You can define your Password inside your Script (Make sure to Encrypt & Obfuscate them). You can always add this on your Updated script. 1) Implement if the folder already exist. If not, it will ask user for the password. If exist, it will read the folder that contains the password. 2) If User Password is correct, it will create a hidden folder and file that contains password. If wrong, the script will stop with warnings. local password = 'cdaa' local file = '.pass/.pwd' --Folder: .pass & File: .pwd if not (io.open(gg.EXT_STORAGE .. '/' .. file, 'r')) then input = gg.prompt({'Enter a value :'},{[1] = nil},{[1] = 'string'}) if input[1] == password then gg.saveList(gg.EXT_STORAGE .. '/' .. file, gg.LOAD_APPEND) --Add new file io.open(gg.EXT_STORAGE .. '/' .. file, 'w'):write(password) --Save password to file print('Correct!') else print('Not Correct') end else content = io.open(gg.EXT_STORAGE .. '/' .. file,'r'):read('*a') --Read file if content == password then print('Correct!') else os.remove(gg.EXT_STORAGE .. '/' .. file) --Delete if file not match with password print('Not Correct!') end end Server-Sided: It would be more better if you also save the password separated on Pastebin. So create a 2 Pastebin: 1 for your script and 1 for your password. This gives you more control over password and make it easier to update your script. Read more here: - Password on Pastebin - Online Script on Pastebin
    0 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.