Jump to content

BotBot72826

Members
  • Posts

    5
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

BotBot72826's Achievements

Rookie

Rookie (2/14)

  • First Post Rare
  • One Month Later
  • Dedicated Rare
  • Reacting Well Rare
  • Week One Done

Recent Badges

0

Reputation

  1. I need to somehow check if the value is suitable if it has an offset this code is similar to what I need but it takes about 30 minutes gg.searchNumber("600", 4) local results = gg.getResults(gg.getResultsCount()) gg.clearResults() local offsets = { [0x4] = 1, [-0x4] = 1 } for i, result in ipairs(results) do for offset, value in pairs(offsets) do local address = result.address + offset if gg.getValues({{address = address, flags = gg.TYPE_DWORD}})[1].value == value then gg.setValues({{address = result.address, value = 0, flags = gg.TYPE_DWORD}}) break end end end and this code cannot be edited by offsets, I need to somehow speed it up or get some kind of alternative
  2. in the mod menu i use these codes to edit the values. I need to implement them for game guardian I want to do this because the group search is taking too long. if you help i will be grateful gg.searchNumber("60", Flags.DWORD); gg.refineNumber("1",Flags.DWORD,-0x4); gg.refineNumber("1",Flags.DWORD,0x4); gg.refineNumber("1",Flags.DWORD,0x10); gg.refineNumber("90",Flags.DWORD,0x14); gg.refineNumber("1",Flags.DWORD,0x18); gg.refineNumber("1",Flags.DWORD,0x28); gg.editAll("0", Flags.DWORD,-0x4); gg.editAll("0", Flags.DWORD,0x4); gg.editAll("0", Flags.DWORD,0x10); gg.editAll("0", Flags.DWORD,0x18);g g.editAll("0", Flags.DWORD,0x28);
×
×
  • 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.