Forum Discussion

Mach6TicTac's avatar
5 years ago

Holospray Bind Macro Bannable

I recently made a really bare bones script to instantly use the bottom most quip you have. I made it so pressing mouse5 will use it, while holding mouse4 will repeatedly use it. I've used it mostly to throw out a holospray (since reaching my middle finger to F1 is really annoying), and the spam to spam Crypto's voiceline "They. They did this to both of us(.)" to make him say They over and over (trust me its really funny). One thing in my venture of learning LUA is that it didn't occur to me if this was bannable or not. I'd rather not get banned for this because I have "MoveMouseRelative" in the script so EAC detects it as a no recoil cheat.

function OnEvent(event, arg)
   if event == "MOUSE_BUTTON_PRESSED" and arg == 5 then
      PressKey("F1") 
      Sleep(15)
      ReleaseKey("F1") 
      Sleep(15)
      MoveMouseRelative(0,50)
      Sleep(15)
      PressMouseButton(1)
      Sleep(15)
      ReleaseMouseButton(1)
   end
   if event == "MOUSE_BUTTON_PRESSED" and arg == 4 then
      repeat
      PressKey("F1") 
      Sleep(15)
      ReleaseKey("F1") 
      Sleep(15)
      MoveMouseRelative(0,50)
      Sleep(15)
      PressMouseButton(1)
      Sleep(15)
      ReleaseMouseButton(1)
     until event == "MOUSE_BUTTON_PRESSED" and arg == 4
   end
end

14 Replies

  • hayhor's avatar
    hayhor
    Hero
    5 years ago

    @Mach6TicTac🤣 I've probably got hundreds of posts since then helping people. And if you knew the answer to how macros would be received why even make the thread?


    My point was you were given advice not to do it which is common sense, but you responded with "I dont see why it is a big deal." So clearly you want one person to say it's ok so when you get banned you will be able to claim you did nothing wrong. You've probably already done it and are now worried about them finding it.