Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 01/23/2023 in all areas

  1. Version 1.0.0

    1,047 downloads

    This Script will change all the Dump.cs file into new file.lua contain a lua table • remove void function since they act on themself or on the class and no return values • filter all possible function / classes for hack usage • ENUM not included • seal / protected / Abstract are filterd • filter system and all other dll functions • Work for PC and GG script Note : use the script on PC for faster results + the dump name MUST be "Dump.cs" --Script not Encoded feel free to learn
    2 points
  2. Version 1.11.0

    8,111 downloads

    This script is only needed to make it easier to work with Il2cpp. More information can be found in the github repository. You can also report script errors either by writing to me in private messages or by creating an issue on github. You can also suggest an idea for the development of the module by sending it to me in private messages.
    1 point
  3. This is my point, it does meet the requirement because valStart gets incremented by 0x250 before the if statement will check and compare valStart. If i put the if statement at the top, the loop will index once more which is a waste to do because we already know that the value has reached the condition when valStart was incremented. So for that reason i placed the if statement at the bottom. dex = {} for i = 1, loop do if valStart >= range[3]["end"] then print(i, "Condition: "..string.format("%x", valStart), string.format("%x", valEnd)) break end print(i, "Current: "..string.format("%x", valStart),"End address: "..string.format("%x", valEnd)) dex[#dex + 1] = {address = valStart, flags = gg.TYPE_QWORD} valStart = valStart + 0x250 end Look like this: It will increment loop once more and then do the break. At the top. But here i do if statement at the botton before loop index increments: dex = {} for i = 1, loop do print(i, "Current: "..string.format("%x", valStart),"End address: "..string.format("%x", valEnd)) dex[#dex + 1] = {address = valStart, flags = gg.TYPE_QWORD} valStart = valStart + 0x250 if valStart >= range[3]["end"] then print(i, "Condition: "..string.format("%x", valStart), string.format("%x", valEnd)) break end end
    1 point
  4. Will check, for now use the script that does not has the player info feature. So, older version.
    1 point
    Don't be fooled this scrip will instantly ban when you execute it. IT IS A BAN SCRIPT!! I'm reporting this and hope it gets taken down.
    1 point
  5. This script is also with a 100% ban, since it introduces forbidden values, for which you will be banned immediately...
    1 point
  6. Version V-5

    12,766 downloads

    Script search the offsets where hacker hook, inject, jump codes. Useful for searching offsets of modded games. Its only available for armv7 for now. I will update script when i am ready for arm64. Special Thanks to cmp, enyby, saiaapiz
    1 point
  7. How do I solve this problem My device is 64bit
    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.