FINISH_COMMAND

this callback is called every time the client is done with a movement when this is called: all aimbot, antiaim, fakelag etc. features are finished it gives you an immutable instance of the current user_cmd_t

local function on_finish_command(cmd)
    print("final sidemove", cmd.move.y)
end

callbacks.add(e_callbacks.FINISH_COMMAND, on_finish_command)

Last updated