Jump to content

BadCase

Modding Team
  • Posts

    683
  • Joined

  • Last visited

  • Days Won

    33

Everything posted by BadCase

  1. If you know what you want to edit values to but just not how to do it in lua send more details on exactly what value you want to edit using lua
  2. You can hack prices instead, of notebooks
  3. FIFA does not have either, it is not a Unity engine game
  4. If GG ever gets updated I can pretty much guarantee that they will not be enabled, Enyby has been pretty clear about this in the past.
  5. Try using my toolbox instead it has a more up to date version of this as a plugin BadCase's Toolbox (#9ptv7xz2)
  6. try recentvalue[1].value
  7. I don't use thumb often, I may recognize it because it was from a script I worked on at some point
  8. I think everyone has been wondering, last I check Enyby logged in one time this year after not logging in for several months
  9. BadCase

    How to fix this?

    Try uninstalling and reinstalling
  10. That looks like it might be a arm7 opcode
  11. It will be different from game to game, some will have some text strings in method names most will simply be numbered
  12. Nearly every person I speak to that has issues running GG is on Android 12 or 13, my recommendation is that if you want to continue using GG stop updating your android and possibly roll it back
  13. Basically a Void is doing things instead of returning a value, editing it to return a value will not have the desired effect and most times it will just behave as though the void method was not even called instead you will want to find the lines in it were the values it is handling are loaded and modify their LDR Also you can easily hook one void method and call another using the B arm instruction
  14. Setting a float using this method will only allow you to set it to a limited number of values, here are reverse hex edits for some valid values ["ARM8"] = {{ ["hex_edits"] = "0000A852r", ["float_value"] = 2 }, { ["hex_edits"] = "0020A852r", ["float_value"] = 8 }, { ["hex_edits"] = "0040A852r", ["float_value"] = 32 }, { ["hex_edits"] = "0060A852r", ["float_value"] = 128 }, { ["hex_edits"] = "0080A852r", ["float_value"] = 512 }, { ["hex_edits"] = "00A0A852r", ["float_value"] = 2048 }, { ["hex_edits"] = "00C0A852r", ["float_value"] = 8192 }, { ["hex_edits"] = "00E0A852r", ["float_value"] = 32768 }, { ["hex_edits"] = "0000A952r", ["float_value"] = 131072 }, { ["hex_edits"] = "0020A952r", ["float_value"] = 524288 }}
  15. Most emulators have an option to enable root so there is no need to install a virtual space in them.
  16. View File BadCase's Discord API Has Most GET, POST, PUT and DELETE Methods from the Discord API I will try to add PATCH methods later PUT and DELETE Methods use a PHP curl script on my server, the code is included at the bottom of the script if you want to run it on your own server. Submitter BadCase Submitted 03/27/2023 Category Tools  
  17. Version 1.0.9

    634 downloads

    Has Most GET, POST, PUT and DELETE Methods from the Discord API I will try to add PATCH methods later PUT and DELETE Methods use a PHP curl script on my server, the code is included at the bottom of the script if you want to run it on your own server.
  18. I am pretty sure this can be done by first renaming with os.rename and then removing the renamed file with os.remove
  19. Ah yes I ran into the max paste error while I made the API last night, thought I broke something at first lol BTW I made this after I posted my reply last night BadCase's PasteBin API (#72l4i839) Also if the reply I sent with the code in it worked you can mark it as the accepted answer
  20. If you want to post as private, make sure you are posting with username, you can't post private as Guest
  21. View File BadCase's PasteBin API Set these values at top of pasteBin table api_dev_key = "YOUR_API_DEV_KEY", api_user_name = "YOUR_USERNAME", api_user_password = "YOUR_PASSWORD", Usage: -- Upload with username -- print(pasteBin.publishPaste(api_paste_code, api_paste_name, true)) -- Upload without username --print(pasteBin.publishPaste(api_paste_code, api_paste_name, false)) -- List users pastes --print(pasteBin.listPastes()) -- Delete a paste -- print(pasteBin.deletePaste("Jef8vQcX")) -- replace "Jef8vQcX" with valid paste key from users paste -- Get users info -- print(pasteBin.getUser()) -- Get users private or public paste -- print(pasteBin.getUserPasteRaw("zbEbNh2n")) -- replace "zbEbNh2n" with valid paste key from users paste -- Get public or unlisted paste -- print(pasteBin.getPasteRaw("zbEbNh2n")) -- replace "zbEbNh2n" with valid paste key Submitter BadCase Submitted 03/24/2023 Category Tools  
  22. 2 = private https://pastebin.com/doc_api
  23. Version 1.0.1

    303 downloads

    Set these values at top of pasteBin table api_dev_key = "YOUR_API_DEV_KEY", api_user_name = "YOUR_USERNAME", api_user_password = "YOUR_PASSWORD", Usage: -- api_paste_format https://pastebin.com/doc_api#5 -- api_paste_expire_date https://pastebin.com/doc_api#6 -- api_paste_private https://pastebin.com/doc_api#7 -- Upload with username pasteBin.publishPaste(api_paste_code, api_paste_name, postAsUser, api_paste_private,api_paste_expire_date,api_paste_format) -- print(pasteBin.publishPaste(api_paste_code, api_paste_name, true,"2","N","lua")) -- Upload without username pasteBin.publishPaste(api_paste_code, api_paste_name, postAsUser, api_paste_private,api_paste_expire_date,api_paste_format) --print(pasteBin.publishPaste(api_paste_code, api_paste_name, false,"0", "N","lua")) -- List users pastes --print(pasteBin.listPastes()) -- Delete a paste -- print(pasteBin.deletePaste("Jef8vQcX")) -- replace "Jef8vQcX" with valid paste key from users paste -- Get users info -- print(pasteBin.getUser()) -- Get users private or public paste -- print(pasteBin.getUserPasteRaw("zbEbNh2n")) -- replace "zbEbNh2n" with valid paste key from users paste -- Get public or unlisted paste -- print(pasteBin.getPasteRaw("zbEbNh2n")) -- replace "zbEbNh2n" with valid paste key
  24. function publishToPastebin(api_dev_key, api_paste_code, api_paste_name, api_user_name, api_user_password) local char_to_hex = function(c) return string.format("%%%02X", string.byte(c)) end local function urlencode(url) if url == nil then return end url = url:gsub("\n", "\r\n") url = url:gsub("([^%w ])", char_to_hex) url = url:gsub(" ", "+") return url end local api_user_key = "" if api_user_name then local url = "https://pastebin.com/api/api_login.php" local headers = { ["Content-Type"] = "application/x-www-form-urlencoded" } local data = "api_dev_key=" .. api_dev_key .. "&api_user_name=" .. api_user_name .. "&api_user_password=" .. api_user_password local result = gg.makeRequest(url, headers, data) api_user_key = result.content end local url = "https://pastebin.com/api/api_post.php" local api_paste_private = "0" local api_paste_expire_date = "N" local api_paste_format = "lua" api_paste_name = urlencode(api_paste_name) api_paste_code = urlencode(api_paste_code) local headers = { ["Content-Type"] = "application/x-www-form-urlencoded" } local data = "api_option=paste" .. "&api_dev_key=" .. api_dev_key .. "&api_user_key=" .. api_user_key .. "&api_paste_private=" .. api_paste_private .. "&api_paste_name=" .. api_paste_name .. "&api_paste_expire_date=" .. api_paste_expire_date .. "&api_paste_format=" .. api_paste_format .. "&api_paste_code=" .. api_paste_code local response = gg.makeRequest(url, headers, data) if response.code == 200 then return response.content else return "Error: " .. response.message end end local api_dev_key = "YOUR_DEV_KEY" local api_user_name = "YOUR_USERNAME" -- Only needed if you want paste uploaded with username otherwise paste will be uploaded as Guest local api_user_password = "YOUR_PASSWORD" -- Only needed if you want paste uploaded with username otherwise paste will be uploaded as Guest local api_paste_code = [[local testText = "Some Text" gg.alert(testText)]] local api_paste_name = "file name.lua" --Upload with username print(publishToPastebin(api_dev_key, api_paste_code, api_paste_name, api_user_name, api_user_password)) --Upload without username print(publishToPastebin(api_dev_key, api_paste_code, api_paste_name))
×
×
  • 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.