wangjiaxin857 發表於 2025-4-3 15:46:34

TwMs v269.3 技能15下

//TwMs v269.3 技能15下
{$lua}
originalBytes = originalBytes or {}

local aob = "E8 ? ? ? ? 89 84 24 ? ? ? ? 48 8B 84 24 ? ? ? ? C7 00 00 00 00 00"
local results = AOBScan(aob)

if results then
  for i=0,results.Count-1 do
    local addr = tonumber(results, 16) -- 关键转换
    originalBytes = readBytes(addr, 5, true)
    writeBytes(addr, 0xB8, 0x0F, 0x00, 0x00, 0x00)
  end
  results.destroy()
end


if originalBytes then
  for addr, bytes in pairs(originalBytes) do
    writeBytes(addr, bytes, bytes, bytes, bytes, bytes)
  end
  originalBytes = nil
end

SpeedRG 發表於 2025-4-3 15:50:13

技能15下?  全技能15下還是特定技能15下

wangjiaxin857 發表於 2025-4-3 15:52:48

SpeedRG 發表於 2025-4-3 15:50 static/image/common/back.gif
技能15下?  全技能15下還是特定技能15下

我試了下幾個職業所有技能都是15下,不知道是不是所有職業都是15下

smilelin0419 發表於 2025-4-3 17:32:20

這種寫法會導致有關於local aob = "E8 ? ? ? ? 89 84 24 ? ? ? ? 48 8B 84 24 ? ? ? ? C7 00 00 00 00 00"
搜到的結果都改成15下

所以有的技能也能打15下,但就會CS
頁: [1]
查看完整版本: TwMs v269.3 技能15下