Command & Conquer: Red Alert™ 2 and Yuri’s Revenge™

Command & Conquer: Red Alert™ 2 and Yuri’s Revenge™

Not enough ratings
Shift + Click to build 5 or multiple / Shift 连点建造
By U.N. Owen
   
Award
Favorite
Favorited
Unfavorite
AHK
a simple script that let you click 5 times when you shift + LMB, you can modify the code to suit you best

and you need autohotkey to run following script, its open sourced
https://github.com/AutoHotkey/AutoHotkey/releases

save the code snippet into text file and rename it with .ahk as extension, and run it, you can quit it from system tray
if not working, run as admin


其实就是按键精灵啦,不玩战网就用点土办法,这个是 AHK,下面代码粘贴进文本文件,后缀改成 .ahk,管理员运行,系统托盘区退出脚本
Shift + 点击 实现连点,自己可以看着改
需要下载开源免费的AHK
https://github.com/AutoHotkey/AutoHotkey/releases

v1
+LButton:: Click, Left Sleep, 10 Click, Left Sleep, 10 Click, Left Sleep, 10 Click, Left Sleep, 10 Click, Left Return

v2
+LButton:: { Send "{LButton}" Sleep 10 Send "{LButton}" Sleep 10 Send "{LButton}" Sleep 10 Send "{LButton}" Sleep 10 Send "{LButton}" }