No More Room in Hell

No More Room in Hell

View Stats:
eirik Nov 22, 2014 @ 10:59pm
Binding Key(s)
bind "MOUSE2" "lastinv; +shove"

with that command when I press MOUSE2 (right-click) it should switch to last weapon used and quick shove after automatically

yeah,, it worked only first time when I start my NMRiH
when I click it for the second time it will only switch to last weapon used but never shove one.. and now my SHOVE function might bugged I can't do the SHOVE thing so I have to restart my game again to get it to works..

any helps here ? to make good key binding script
as expect, I want that script to works as many times as I click the MOUSE2

sorry for my english but I wish you guys could understand what I'm asking for... :csdmeh:
< >
Showing 1-6 of 6 comments
REDRUM (Banned) Nov 23, 2014 @ 8:19am 
Theres a program called Auto Hotkey (AHK), which could be used to simulate what you are trying to acomplish. It's a scripting language for setting up advanced hotkeys, and other functions, if you wish more help on the matter, I can help you privately.

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. :)
Last edited by REDRUM; Nov 23, 2014 @ 8:20am
REDRUM (Banned) Nov 23, 2014 @ 8:34am 
Download program here: autohotkey.com

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


eirik Nov 23, 2014 @ 8:44am 
THANKS ALOT !! SO AWESOME !!! :trolol:
REDRUM (Banned) Nov 23, 2014 @ 8:49am 
This script is better, use this:


F1::Suspend
End::ExitApp
*~RButton::
ifWinActive, No More Room in Hell
{
while GetKeyState("RButton","P")
{
Sendinput q
sleep 25
Sendinput v
sleep 1000
}
}
Return
HaYzzEr >:r Nov 23, 2014 @ 9:34am 
In case you don't want to use any softwares like ahk, you can do this:

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
eirik Nov 23, 2014 @ 9:43am 
Originally posted by HaYzzEr >:r:
In case you don't want to use any softwares like ahk, you can do this:

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 : )
< >
Showing 1-6 of 6 comments
Per page: 1530 50

Date Posted: Nov 22, 2014 @ 10:59pm
Posts: 6