AIMBOT_MISS

this callback is called whenever the ragebot misses a shot

along with it an instance of a aimbot_miss_t is passed into the callback

local function on_aimbot_miss(miss)
    print("missed", miss.player:get_name(), "due to", miss.reason_string)
end

callbacks.add(e_callbacks.AIMBOT_MISS, on_aimbot_miss)

Last updated