Jump to content

Lover1500

Contributor
  • Posts

    340
  • Joined

  • Last visited

  • Days Won

    17

Everything posted by Lover1500

  1. sure. go ahead. I think you can play with vpn
  2. Class name and Field offset searcher (#4udgq21d) Have you tested the script?
  3. It was possible to claim rewards before. But the devs fixed it and banned acc afterward. For now, vip is only for speeding up battle and some other things. I noticed it too. But cant do anything since even static values I used to find vip value changed after get vip points. I might fix it someday
  4. It might be split apks or java based game. Check if the game has actual libs. Or Download the game apk from apkcombo or apkpure.
  5. Version 2

    5,349 downloads

    Features: -Full Vip -One Hit Enemy One hit does not work against real players.
  6. View File Mobile Legends Adventure Features: -Full Vip -One Hit Enemy One hit does not work against real players. Submitter Lover1500 Submitted 02/22/2023 Category LUA scripts  
  7. The script should work for both of armv7 and v8. If it doesnt work, may be script bug or game is protected. You can link to the game.
  8. Lover1500

    8ballsmash

    I added to support both 32/64 and added some explanation. Hope it makes you easier to understand unity pointers. modified_com.hypgames.ultimatepool.lua
  9. Lover1500

    libil2cpp

    -Goto AndroidMinisfest.xml -under <application tag, find android:extractNativeLibs="false" -Make it true -Sign and install -Now, game will export its libs outside as normal. If the game has apk signature protection, dont forget to kill signature before you edit AndroidMinifest.xml.
  10. I am not sure if this is what you need. I add some instruction that I think it is easy to understand. refiningValues.lua
  11. Lover1500

    GGIl2cpp

    This is very helpful for unity hackers. Full star for me.
  12. Can you tell exact error? Error when exporting Lib or metadata? Its better you show me the error log of gg when it crashes.
  13. Code to autoupdate the function. Like ByNameModding.
  14. Same. I always have to do reset password. It was lucky that I have recover email.
  15. View File codm class dumper For now, this script is only for 32 bit. Submitter Lover1500 Submitted 04/21/2022 Category LUA scripts  
  16. Version 1

    798 downloads

    For now, this script is only for 32 bit.
  17. gg has already it. Use :Hi for utf-8 and ;Hi for utf-16 in gg.searchNumber(). gg.searchNumber(";Hi") script will automatically convert into corresponding hex and will search it. ----- You are trying to convert signed pointer values of armv-7 into positive address. But becuz of this one, gg should not convert all negative values into positive. There are not only pointers which use negative value. you can try this short code to convert into positive hex. local arch64 = gg.getTargetInfo().x64 --to check if arm32 or arm64 local function negativeToPositive(value) if not arch64 and value<0 then return value & 0xffffffff else return value end end local value = gg.getValues({{address = 0x10001000, flags = gg.TYPE_DWORD}}) value[1].value = negativeToPositive(value[1].value) print(value[1].value) ----- Lets wait for enyby.
  18. gg.searchNumber('', gg.TYPE_FLOAT) gg.refineNumber('', gg.TYPE_FLOAT) local count = gg.getResultsCount() local res = gg.getResults(count) local x, y = {}, {} local xChecker, yChecker = {}, {} --get values at offset 0x44 and 0x4c for i, v in ipairs(res) do xChecker[i] = {address=v.address+0x44, flags=gg.TYPE_FLOAT} yChecker[i] = {address=v.address+0x4c, flags=gg.TYPE_FLOAT} end xChecker, yChecker = gg.getValues(xChecker), gg.getValues(yChecker) --put addresses with value zero into table x and y for i, v in ipairs(xChecker) do if v.value==0 then x[#x+1] = xChecker[i] end if yChecker[i].value==0 then y[#y+1] = yChecker[i] end end --check if the result amount of x and y are equal if #x~=#y then return print('Ohh the results of x and y are not equal. check maually please') end --loop local total = #x+#y for loop=1, total/2 do for i, v in ipairs(x) do v.value=x[loop].value end gg.setValues(x) for i, v in ipairs(y) do v.value=y[loop].value end gg.setValues(y) gg.sleep(500) end i dont understand the loop part what you want to do.
  19. This is what people were waiting for. Best and free field searcher script.
  20. Field pointer and Method function pointers are near each other. 0xc in arm32 and 0x18 in 64. You can easy check them after watch his tutorial
  21. not possible. i think. becuz every field offset values are always in A region. not in Ca.
  22. if you extract the zip file, you'll see dump.cs there
  23. @blocxits dump.cs. i showed how to get it in above video. can use il2cppdumper.com
  24. @blocx you'll know when you mod a game. sure
×
×
  • 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.