Jump to content

AKidWithMidgetFriend

Ascended
  • Posts

    354
  • Joined

  • Last visited

  • Days Won

    7

Everything posted by AKidWithMidgetFriend

  1. Firstly I'd recommend getting used to the layout of the forums the three biggest sections to be mindful of is Help, Requests, and Downloads. All pretty self explanatory but the lateral of the three is where you'll post the scripts you make and want to share Now to answer your question about having the script ask the user for the current value of gold gg.prompt({}, {}, {}) It takes three tables as arguments and what these arguments should/could be are found here https://gameguardian.net/help/classgg.html#afe6c5b86ba0ae295899fd259232aac2b I don't understand the part about the offset and 68 lines however, and this maybe what you should make your first help thread about however Hope it helps, good luck!
  2. https://m.apkpure.com/race-rocket-arena-car-extreme/com.smokoko.race Is this the correct game?
  3. You used get speed instead of set speed for the off hack
  4. Red line was just a note for the 'com.game.whatever' because it should be the package name of the game if you don't know the package name of the game use gg.getTargetPackage() or print(gg.getTargetPackage())should tell you the package name of the current running process --packagenamegoesthere can be deleted entirely it's just a comment Then script() tells it to go to a function called script it was meant to be replaced by whatever function handles your menu replace it with main() also might need to change then script to then do script I'm not sure I didn't check my syntax it was for reference
  5. With this if the selected process in GG isn't the prefined one then script will immediately end you can add a toast or an alert to tell the user that the selected process is incorrect ofcourse just put it before os.exit()
  6. local game = gg.getTargetPackage() if game ~= 'com.whatever.game' --PackageNameGoesThere then os.exit() else then script() end Would look something like this^
    Should always have some indication on what game the script is for, and some of the best ways to do that is to put it in the post or as the script name**EDIT** I didn't see Roblox in the tags my apologies** It's an alright script but I'd recommended going about structuring it to turn on and off, and learning how to make and utilize functions. Also be sure to have a "if menu == nil then" check going in case the user gives taps off the menu
  7. AKidWithMidgetFriend

    script

    Think this line might also be a problem... When the whole script is ran the error returned is Try v
  8. We're good now thank you!
  9. I was helping someone in private messages and noticed there's no way to insert code box's in replies/messages on mobile is it possible to do this?
  10. Honestly with the new interface clutter isn't something I've really minded with the collapsible sections and all. Someone else might have a reason not to, but as long as we have a way to reinstall gg just in-case I'd say go for it:)
  11. When the gg menu is minimized it will automatically resume process, Better to use gg.processPause() in a script so it stays paused while it runs
  12. First go to the search tab(magnifying glass) you'll know the button when you see it; Looks like just about every other pause button
  13. The pause button in the top right hand corner of the GG interface under the process' icon Il2cppdumper gui, use the largest .so in the lib and the metadata (I've been able to just drop the apk directly into the gui and it works as well)
  14. Yes v.value = 999 would set the values for the v's in the i, v in pairs loop defaultly/autonomously
  15. I'm sure it is, however I haven't done it myself... Maybe somebody else would be able to help sorry
  16. Wouldn't v.value = prompt[1] work?
  17. For i, v in pairs(r) do v.address + 0x9C v.flags = gg.TYPE_DWORD end Been a minute since I've written a GG script but this MIGHT be a loop that'll do whats needed (please correct me if I'm wrong like I said it's been a minute and I'm not as active is I'd like to be) Replaces this
  18. From User @NoFear in another post "You would use a disassembler... IDA for example. Then could search strings for the "0xD0". Granted, will be insane number of results. Because the 0xD0 I believe could be used for something else on another function. " Field offsets don't go to a specific address or function, and they should be used to locate something else. ---------------------------------------------------------- Edit: IDA does have a freeware version but I don't think it supports arm64 you may have to use ghidra
  19. Artix Encryption (#c1ci2exo) This seems like a good one
  20. Utility for extracting .dll files from various dumps (#am9msy5a) Hmmmm, try this^
  21. The problem for GG WAS that it was a split apk, I was trying to post a non-split apk of the game but my internet is too bad and I was going to wait until I got to work tomorrow to do it. But glad to hear you got it working!
  22. Like this? Normal script: QuickRblx.lua Obfuscated version: script.lua Sorry I don't obfuscate my scripts at all so it's partially guess work but this was obfuscated with the PSU obfuscator's discord bot script.lua QuickRblxScript.lua
  23. Being a split apk shouldn't matter, but what app is it I'll take a look *Edit* Space Shooters you've already said this my bad
  24. go to memory pages and hit the bulky arrow Don't put in an address instead just hit XA and select the libil2cpp.so file (there isn't one for this game so I don't circle anything but your menu will look something like this choose the one with the libs file path) This should give you the start of the lib files address, long press this and hit "offset calculator" then type in the offset from Dnspy and put a lowercase h and hit "go to" This should bring you to the correct address Shout out to @NoFear (sorry for pinging you) for his reply to my thread when I was wondering about searching offsets months back Pretty sure from there you can search the address once you know it in hex which should help you go about automating the process with a 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.