перемещение kill list'a

Winstаl

Известный
1,004
415
как на луа перемещать килл лист?
в gametweaker.lua есть адреса

Lua:
    if fnc == "KillList" or fnc == "all" then

        if get_samp_version() == "r1" then
            if config.ini.settings.KillListChange then
                writeMemory(sampBase()+0xD7FD4, 4, representFloatAsInt(config.ini.settings.KillListPosX), true)
                writeMemory(sampBase()+0xD7FD8, 4, representFloatAsInt(config.ini.settings.KillListPosY), true)
            else
                if fnc ~= "all" then
                    writeMemory(sampBase()+0xD7FD4, 4, representFloatAsInt(0.75), true)
                    writeMemory(sampBase()+0xD7FD8, 4, representFloatAsInt(0.300), true)
                end
            end
        elseif get_samp_version() == "r3" then
            if config.ini.settings.KillListChange then
                writeMemory(sampBase()+0xEA2F4, 4, representFloatAsInt(config.ini.settings.KillListPosX), true)
                writeMemory(sampBase()+0xEA2F8, 4, representFloatAsInt(config.ini.settings.KillListPosY), true)
            else
                if fnc ~= "all" then
                    writeMemory(sampBase()+0xEA2F4, 4, representFloatAsInt(0.75), true)
                    writeMemory(sampBase()+0xEA2F8, 4, representFloatAsInt(0.300), true)
                end
            end
        end
    end