Jump to content

Mavric

Members
  • Posts

    3
  • Joined

  • Last visited

Everything posted by Mavric

  1. I have a quick question. I have made some hotkey macros for a game I play that simply send a few different key presses with a single hotkey. The problem I am having is that often when I press the hotkey and I am moving my mouse around the cursor will stutter and chop around. This is an FPS game so you can see why that would be a problem. Is there anything I can do to alleviate this problem? Here are a few of the functions I wrote: this one lets me use a couple of skills and switch a hot bar with 1 button Func Thand() send("4"); send("{NUMPAD2}"); Send("^4"); Sleep("500"); send("4"); EndFunc this one lets me cycle through some skills with 1 button func NukeCycle() if $nukeX = "0" Then Send("'"); $nukeX += 1; ElseIf $nukeX = "1" Then Send(";"); $nukeX = 0; EndIf Sleep("200"); EndFunc
  2. Exactly what I needed, thanks a lot!
  3. Hey guys, I've been searching around but I can't seem to find exactly what I'm looking for (or maybe I don't understand what I've been reading). I'm looking to write a script that will detect my mouse wheel being moved up or down and then either increase or decrease a variable accordingly. Thanks for the help!
×
×
  • Create New...