Any way to boost CTRL + X cheat?

正在查看此主题的用户

状态
不接受进一步回复。

MeGusta

Recruit
So I'm really lazy and when I wanna boost my soldiers I use the CTRL + X but some take houndreds of clicks to upgrade, so I was wondering if there's some auto cheater or something?
 
findecanno 说:
I heard alt f4 gives your soldiers 10,000 experience per click. You should try that.

I heard that deleting C:\Windows\Fonts gives you this really awesome Germanic font that was originally removed from Windows but left in as an inside joke amongst Microsoft employees

Scully 说:
Some day you'll be too lazy to breathe.

I already am.
2520_classic_fan_lr_1192456891_7988879_103255999.jpg


 
I configured the macro for M&B to work for my Warband.

A = CTRL + X
N = LMB
#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.

$N:: ; this is the "'" key
Loop
{
    if not GetKeyState("N", "P")
        break
    Click
    Sleep, 10
}

$a:: ; this is the ";" key
Loop
{
    if not GetKeyState("A", "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
 
状态
不接受进一步回复。
后退
顶部 底部