Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Basically what the program will do is press the buttons after a certain interval, so it will press "Q"(last weapon used), then after 1 second(Or milliseconds) it would press "V"(Shove).
I tried binding stuff like +attack to a button, but some reason it only works once. AHK will do what you want though. :)
F1 will toggle it on and off
End will exit AHK completely
Basic hotkey I tested for you, will work for what you are trying to do. Paste the following into a .ahk file and run it:
F1::Suspend
End::ExitApp
RButton::
Sendinput q
sleep 25
Sendinput v
Return
F1::Suspend
End::ExitApp
*~RButton::
ifWinActive, No More Room in Hell
{
while GetKeyState("RButton","P")
{
Sendinput q
sleep 25
Sendinput v
sleep 1000
}
}
Return
alias +lastinvshove "lastinv;+shove"
alias -lastinvshove "-shove"
bind mouse2 "+lastinvshove"
Additionally you can make a cfg file to your ...\Steam\SteamApps\common\nmrih\nmrih\cfg\ and use: exec yourcfg.cfg
thanks : )