Author Topic: Fast Pressing Program  (Read 531 times)

0 Members and 1 Guest are viewing this topic.

seanyscott

  • Recruit
  • *
    • View Profile
  • Faction: Neutral
  • WB
Fast Pressing Program
« on: July 14, 2012, 09:11:58 PM »
Hey guys i was just wondering, does anyone know any program that can press (and possible hold ctrl but not needed) x really fast?

Thanks in advance,
                               Sean  :)

turbomarcin

  • Recruit
  • *
    • View Profile
  • Faction: Rhodok
Re: Fast Pressing Program
« Reply #1 on: July 14, 2012, 09:22:36 PM »
Download autohotkey (google it, I can't post the link).

and use this script (rightclick on the icon and select "Edit this script"):
Code: [Select]
#NoEnv
SendMode Input
SetWorkingDir %A_ScriptDir%

$[::
Loop
{
if GetKeyState("]", "P")
break 
Send {LControl down}
Sleep, 10
Send {x down}
Sleep, 10
Send {x up}
Sleep, 10
Send {x down}
Sleep, 10
Send {x up}
Sleep, 10
Send {x down}
Sleep, 10
Send {x up}
Sleep, 10
Send {LControl up}
}
return

Note that you must run AHK as administrator for it to work with Warband on Windows 7 (with UAC enabled).

Caba`drin

  • Administrator
  • *
  • It's time to toss the dice.
    • View Profile
  • Faction: Nord
  • MP nick: Caba_drin
  • M&BWBWF&SNW
Re: Fast Pressing Program
« Reply #2 on: July 15, 2012, 03:24:34 AM »
If you're trying to cheat gold or XP on your own character, save yourself the effort and just export your character to .txt, edit the file, and import. Or use CTRL-L

If you're trying to cheat XP on your stacks, I've got a .txt edit in my sig that will allow you to level them with a click in a dialog.

Or, you can use a macro as you've requested.



seanyscott

  • Recruit
  • *
    • View Profile
  • Faction: Neutral
  • WB
Re: Fast Pressing Program
« Reply #3 on: July 15, 2012, 04:09:15 PM »
Thanks guys that help alot  :) :lol:

seanyscott

  • Recruit
  • *
    • View Profile
  • Faction: Neutral
  • WB
Re: Fast Pressing Program
« Reply #4 on: July 15, 2012, 04:33:27 PM »
actually there is one more thing, can you please edit the script to have a stop button XD. thanks, sean

seanyscott

  • Recruit
  • *
    • View Profile
  • Faction: Neutral
  • WB
Re: Fast Pressing Program
« Reply #5 on: July 19, 2012, 01:10:52 PM »
still need some help with the stop button please, thanks sean  :mrgreen:

DogSoldieR

  • Sergeant
  • *
    • View Profile
  • Faction: Neutral
  • WB
Re: Fast Pressing Program
« Reply #6 on: July 19, 2012, 01:42:04 PM »
Quote
if GetKeyState("]", "P")

I believe the stop button is the "]" or "P" ?