Results 1 to 5 of 5

Thread: Autoclick?

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    DarthLazy's Avatar Protector Domesticus
    Join Date
    May 2010
    Location
    Karachi
    Posts
    4,867

    Default Autoclick?

    I am looking for a software that will press x when I have ctrl pressed in the Mount and Blade warband window, every one I have tried does not press anything, help?
    Quote Originally Posted by Heathen Hammer View Post
    Real imperialism is shown by Western apologists who are defending Ukraine's brutal occupation of Novorossija.
    Quote Originally Posted by Heathen Hammer View Post
    Sovereignty of Ukraine was recognized by Yeltsin and died with him.

  2. #2

    Default Re: Autoclick?

    I use voice commands for warband which doesn't answer your question but will solve your problem.
    "When I die, I want to die peacefully in my sleep, like Fidel Castro, not screaming in terror, like his victims."

    My shameful truth.

  3. #3
    ♔KillZoneGB♔'s Avatar Ducenarius
    Join Date
    Jun 2009
    Location
    Gloucester UK
    Posts
    939

    Icon14 Re: Autoclick?

    I don't have the game, but have you tried GlovePIE.

    If you know Basic then it should be straight forward to program.
    System
    OS: Windows 7 Home Premium 64-bit (TBA Win7 Prof)
    Processor: i7 4820K Ivy E @ 4.4Ghz (Mild OC), MB Sabertooth X79
    Memory: Kingston HyperX Fury Red 16GB DDR3-1600 Dual Kit (TBA to 64GB Quad 8X8GB)
    GPU: NVIDIA GTX 670 Phantom (TBA SLI Nvida xxx)
    Water Cooled


  4. #4

    Default Re: Autoclick?

    Using AutoIt, a scripting language, it can be easily done.

    Just create a new script, and copy/paste the following.

    HTML Code:
    #Include <Misc.au3>
    
    Sleep(5000)
    While 1 And not _IsPressed("1B")
    Send("^x")
    WEnd
    And then save and execute (f5).
    If it presses the keys a bit too quickly, you can add a Sleep(500) in the loop. (time is in ms)
    To stop it press escape.
    Under the patronage of apple.
    Patron of ybbon66.

  5. #5
    DarthLazy's Avatar Protector Domesticus
    Join Date
    May 2010
    Location
    Karachi
    Posts
    4,867

    Default Re: Autoclick?

    Thanks guys .
    Quote Originally Posted by Heathen Hammer View Post
    Real imperialism is shown by Western apologists who are defending Ukraine's brutal occupation of Novorossija.
    Quote Originally Posted by Heathen Hammer View Post
    Sovereignty of Ukraine was recognized by Yeltsin and died with him.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •