Install Steam
sign in
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem




local function OutputLogs(s)
OutputLogMessage(s.."\n")
OutputDebugMessage(s.."\n")
end
local Recoil_Activator
function OnEvent(event, arg)
if (event == "PROFILE_ACTIVATED") then
EnablePrimaryMouseButtonEvents(true)
elseif event == "MOUSE_BUTTON_PRESSED" and arg == Macro_Activation_Key then
Recoil_Activator = not Recoil_Activator
OutputLogs(Recoil_Activator and "ON_Macro" or "OFF_Macro")
elseif event == "MOUSE_BUTTON_PRESSED" and arg == 1 and Recoil_Activator then
MoveMouseRelative(1, -1)
repeat
MoveMouseRelative(-5, 5)
Sleep(1)
MoveMouseRelative(5, -5)
Sleep(1)
until not IsMouseButtonPressed(1)
end
end
if (event == "PROFILE_ACTIVATED") then
EnablePrimaryMouseButtonEvents(true)
end
if IsKeyLockOn("capslock")then
if IsMouseButtonPressed(1)then
MoveMouseRelative(0, 0)
repeat
MoveMouseRelative(-3, 4)
Sleep(2)
MoveMouseRelative(3, -3)
Sleep(3)
until not IsMouseButtonPressed(1)
end
end
end