From 3ee68080965b1b13be5014ad12b37caf46484372 Mon Sep 17 00:00:00 2001 From: rubin Date: Sun, 29 Jan 2023 20:49:35 +0300 Subject: [PATCH] added setpos ammo timer --- mafia-tools.lua | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/mafia-tools.lua b/mafia-tools.lua index ac31af8..2455a6c 100644 --- a/mafia-tools.lua +++ b/mafia-tools.lua @@ -98,6 +98,17 @@ ammo_timer.loop = function() end end +ammo_timer.setpos = function() + repeat + wait(0) + sampSetCursorMode(3) + local x, y = getCursorPos() + config.data.timer_pos.x = x + config.data.timer_pos.y = y + until isKeyDown(1) + sampSetCursorMode(0) + config.save(config.data) +end -->> 2 MIN TIMER timer_2min = {}