Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/22/2022 in all areas

  1. Version 1.0.0

    1,159 downloads

    A tool to find new class names after updates in unity games that use obfuscated class, field and method names. You must have an old dump that you know the Namespace and Class name in and the current dump in order to find the new Class name.
    2 points
  2. Hi! There's several mistake in Your Script: - If You choose 'Exit' it will execute Menu 2: Which downloading the Script instead of Exitting. The reason is: Choices are Ordered on gg.choice (Call = 1, Exit = 2) - The First Option (Menu 1) doesn't have the same File Location to the File that have been Downloaded (/Dump and /.pass) - The Exec function is Unnecessary since You didn't use them. I have made 2 Script that has it's Own use: Temp Script local file = '/Dump/niggers.lua' --This is Your File location. menu = gg.choice({"Call File", "Exit"}, nil, "Main") --Ordered Choice (Call = 1, Exit = 2) if menu == 1 then --Check if User chooce 'Call' if not (io.open(gg.EXT_STORAGE .. file, 'r')) then --Check if Script is NOT Downloaded fileData = gg.makeRequest('https://pastebin.com/raw/hNhEbgVd').content --Read Script from URL if not fileData then --Check if Pastebin is Empty print('Site is Down') --Tell User that URL is Invalid else gg.saveList(gg.EXT_STORAGE .. '/' .. file, gg.LOAD_APPEND) --If Pastebin exist, makes a New Lua File fileAppend = io.open(gg.EXT_STORAGE .. file, 'w'):write(fileData) --Save Pastebin Script into the New Lua dofile(gg.EXT_STORAGE .. file) --Run the Downloaded Script end else dofile(gg.EXT_STORAGE .. file) --Run the Downloaded Script end else os.exit() --Exit the Script end - Choices are now Adjusted: 'Exit' will Exit the script and 'Call File' will runs a simple Directory check. - If the file is NOT Downloaded yet, it will Download the script from Pastebin and Save it into a Directory (/storage/emulated/0/Dump/niggers.lua) - If the file Exist, it will run the Script instead via dofile Direct Script menu = gg.choice({"Call Script", "Exit"}, nil, "Main") --Ordered Choice (Call = 1, Exit = 2) if menu == 1 then --Check if User chooce 'Call' fileData = gg.makeRequest('https://pastebin.com/raw/hNhEbgVd').content --Read URL Script if not fileData then --Check if URL is Empty print('Site is Down') --Tell User the URL is Invalid else pcall(load(fileData)) --Run Pastebin Script end else os.exit() --Exit the Script end This Script does NOT Save the Pastebin Script but instead Run them Directly. This is a good Practice if You do NOT want Your Script to be Stolen from Local Directory.
    1 point
  3. Haha oh god this cesspit of blatant thievery and careless security violations and no wonder mobile gaming market looks like it does today. You would rather use underhanded methods, being skiddies and harming developers than try to establish any form of communication. Oh right now i remember why. Because the widespread market that is low life human garbage selling cheats to players in countries where gaming culture does not have a vast history so now there is almost expected to abide to the cheat black market. And for encryption? Lua script encryption is pretty much useless as the methods for bypassing them are far more developed than any amateurs mish mash of encryption code he found on stack overflow. Charging for cheats is stealing from hard working people and ruining the prospect of any genuinely enjoyable gaming experience going forward
    -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.