snatcher Posted June 11, 2022 Report Posted June 11, 2022 (edited) EDIT - You can find a working external script with instructions in this post ---------------------------------------------------------------- Hi! First post in this forum. Greetings to all. I am a long time fan of T1 & T2 and I recently stumbled upon The Dark Mod while looking for some T2 Fan Missions and I immediately fell in love with it. Here goes a heartfelt thanks to the developers for having created this masterpiece and my recognition and appreciation to the TDM content creators and artists. Thanks. Back on topic. A couple of weeks ago I started playing Splinter Cell Chaos Theory. The game makes use of the mouse wheel to increase and decrease the speed of the character and while it took a couple of missions to get used to it, it felt natural from that point on. So much so that after beating the game and launching TDM again my first thought was: this game mechanic should be a must in the stealth genre. You can see it in action in the first minute of this video: I understand chances are this new mechanic cannot be implemented in TDM right away: we are currently limited by the 3 existing speeds / levels of sound (correct me if I am wrong) but regardless, if the development Team would allow us to use the mouse wheel to switch between creep, walk & run it would be a step forward in the right direction, in my humble opinion. Cheers! Edited July 10, 2022 by snatcher 2 Quote
Obsttorte Posted June 11, 2022 Report Posted June 11, 2022 Yeah, manipulating the movement speed via the mouse wheel is actually something I like about the Splinter Cell games, too. And yes, changing that would indeed not be a minor thing, but you could use Autohotkey for your purpose. Quote FM's: Builder Roads, Old Habits, Old Habits Rebuild Mapping and Scripting: Apples and Peaches Sculptris Models and Tutorials: Obsttortes Models My wiki articles: Obstipedia Texture Blending in DR: DR ASE Blend Exporter
snatcher Posted June 11, 2022 Author Report Posted June 11, 2022 34 minutes ago, Obsttorte said: [...] but you could use Autohotkey for your purpose. I can try, that's for sure! Consider my request as a long term project to eventually allow for a greater degree of movement, especially while creeping around. The first step is to allow the mouse wheel to perform different actions, I guess. Thanks, Obsttorte. Quote
Obsttorte Posted June 11, 2022 Report Posted June 11, 2022 First version (I couldn't resist ) speed = 1 ; init with walk speed wheelup:: if (speed == 0) ; we are creeping { speed = 1 Send {u up} } else if (speed == 1) ; we are walking { speed = 2 Send {z down} } return wheeldown:: if (speed == 1) ; we are walking { speed = 0 Send {u down} } else if (speed == 2) ; we are running { speed = 1 Send {z up} } return In this setup u is used for running and z for creeping. You can other keys, of course, although I would avoid modificator keys as used by TDM per standard. Works quiet well. I'll add a constant to allow to alter the sensivity so that you can adjust how much you have to turn the wheel to switch between states. You have to have AutoHotkey installed nevertheless. Quote FM's: Builder Roads, Old Habits, Old Habits Rebuild Mapping and Scripting: Apples and Peaches Sculptris Models and Tutorials: Obsttortes Models My wiki articles: Obstipedia Texture Blending in DR: DR ASE Blend Exporter
Obsttorte Posted June 11, 2022 Report Posted June 11, 2022 Second version (should have waited :P) speed = 1 ; init with walk speed steps = 3 ; amount of steps needed for switching state state = 0 ; counter for state switch wheelup:: state += 1 if (state > steps) state = steps if (speed == 0 && state >= 0) ; we are creeping { speed = 1 Send {u up} } else if (speed == 1 && state >= steps ) ; we are walking { speed = 2 Send {z down} } return wheeldown:: state -= 1 if (state < -2*steps+1) state = -2*steps+1 if (speed == 1 && state <= -steps) ; we are walking { speed = 0 Send {u down} } else if (speed == 2 && state <= 0) ; we are running { speed = 1 Send {z up} } return The important things to modify to your likings are u and z as above, as those control which keys are used for running and creeping as well as steps, which specifies how many digits the mousewheel needs to be turned to switch the movement. Setting it to 1 let it behave like the first version posted earlier. Quote FM's: Builder Roads, Old Habits, Old Habits Rebuild Mapping and Scripting: Apples and Peaches Sculptris Models and Tutorials: Obsttortes Models My wiki articles: Obstipedia Texture Blending in DR: DR ASE Blend Exporter
snatcher Posted June 11, 2022 Author Report Posted June 11, 2022 That's very nice of you, Obsttorte. I know my way around AutoHotkey and I will give it a go. Thanks! Quote
snatcher Posted June 11, 2022 Author Report Posted June 11, 2022 It works wonders! Thanks! I think I will settle to 2x mouse wheel steps. Well done, Obsttorte. I think we have an excellent proof of concept. Quote
freyk Posted June 11, 2022 Report Posted June 11, 2022 We use the mousewheel to move objects. I dont want to use it for the players speed. (Maybe for sam, but not for the tdm player, imho) How about pressing down the mousswheel and scroll (middleclick). Or use something else. Quote Info: My portfolio and darkmod graphical installer Amnesty for Bikerdude!
Obsttorte Posted June 11, 2022 Report Posted June 11, 2022 Nobody says this gets implemented in the core mod. I just fulfilled a request. Of course modificators can be used. You can replace the mousewheel stuff with this for example !wheeldown ; ALT+mousewheel down ^wheeldown ; CTRL +wheeldown ; SHIFT <^>!wheeldown ; AltGr analog for wheelup ~wheeldown ; don't block native function you can combine them ^!wheeldown ; CTRL+ALT+wheel down More info here. Customize as you need it. 1 Quote FM's: Builder Roads, Old Habits, Old Habits Rebuild Mapping and Scripting: Apples and Peaches Sculptris Models and Tutorials: Obsttortes Models My wiki articles: Obstipedia Texture Blending in DR: DR ASE Blend Exporter
snatcher Posted June 12, 2022 Author Report Posted June 12, 2022 13 hours ago, freyk said: We use the mousewheel to move objects. I dont want to use it for the players speed. (Maybe for sam, but not for the tdm player, imho) How about pressing down the mousswheel and scroll (middleclick). Or use something else. It shouldn't be a problem if implemented well. The mouse wheel would perform the same action when holding objects but only if the Parry/Manipulate key is pressed. Of course the whole thing should remain optional: use the mouse wheel to control speed or switch weapons / other. Quote
snatcher Posted June 13, 2022 Author Report Posted June 13, 2022 (edited) Obsttorte, I have improved changed your script a little. I hope you don't mind. The highlight is that the script will only run when TDM is in focus (tested in Win 10). The only issue remains when leaning forward + switching speed. For some reason I don't quite understand we stop leaning. If anyone wants to test this: Download AutoHotkey, install it, open Notepad, paste the below script inside, save it as whatever.ahk and double click on the file you just saved. Settings > Controls > Weapons: Remove mouse wheel bindings from Next Weapon and Previous Weapon (or from any other setting you may have set the mouse wheel to) Settings > Controls > General: Make sure Toggle Crouch is enabled and Always Run is disabled Settings > Controls > Movement: The Run and Creep keys must match in both TDM and the script. While using the script you can turn pages using Next Inv. Item / Prev Inv. Item To end the script, go to the Windows taskbar, look for a green icon with an "H", right click on it and select Exit. ; ===================================== ; Adjust player speed with mouse wheel ; ------------------------------------- ; An AutoHotkey script for The Dark Mod ; version 3.0 by Obsttorte & snatcher ; ===================================== key_creep = c ; in-game creep key key_run = r ; in-game run key speed = 0 ; init speed (-1 = creep / 0 = walk / 1 = run) steps = 1 ; amount of mouse wheel steps needed for switching state ; ------------------------------------- ; do not edit anything past this point ; ------------------------------------- state = speed * steps ; counter for state switch #IfWinActive ahk_exe TheDarkModx64.exe ; run only when TDM is focused wheelup:: !wheelup:: ^wheelup:: +wheelup:: state += 1 if (state >= steps) { if (speed == -1) ; we are creeping { speed = 0 Send {%key_creep% up} } else if (speed == 0) ; we are walking { speed = 1 Send {%key_run% down} } state = 0 } return wheeldown:: !wheeldown:: ^wheeldown:: +wheeldown:: state -= 1 if (state <= steps * -1) { if (speed == 0) ; we are walking { speed = -1 Send {%key_creep% down} } else if (speed == 1) ; we are running { speed = 0 Send {%key_run% up} } state = 0 } return Cheers! Edited June 15, 2022 by snatcher Quote
wesp5 Posted June 13, 2022 Report Posted June 13, 2022 I still wonder why anybody would need this ;). I always crawl as fast as possible if nobody is near anyway! Quote
snatcher Posted June 13, 2022 Author Report Posted June 13, 2022 The external script is a proof of concept. It takes some time to get used to it and it doesn't work that well because for this new game mechanic to work at an acceptable level we require at least 5 incremental speeds, one for each mouse wheel step. In slow-paced games like this we don't need creep and run keys but a more refined, tactical movements (imho). Quote
Babberoni Posted June 15, 2022 Report Posted June 15, 2022 Yes, this is something I wanted to see more after I played Splinter cell even if it didn't work properly if I moved diagonally, I think there is a person in the TDM community who was making a thief inspired game that had this feature, I can't remember their name though Quote
AluminumHaste Posted June 15, 2022 Report Posted June 15, 2022 I recently replayed that game and I very much disliked that approach to the game. However, it was tightly integrated into the detection / sound system of the game. If there were loud environmental noises playing you could go a little faster without being heard. In practice, I never really used more than 2 or 3 movement speeds. Quote I always assumed I'd taste like boot leather.
Obsttorte Posted June 15, 2022 Report Posted June 15, 2022 I also wouldn't add it to the core mod. The whole game is setup for three movement speeds and two poses. Changing this to a system like in Splinter Cell would be a tremendous undertaking with very little benefit. I provided the script as I think that beeing able to switch between the three speeds via the mouse wheel is an understandable wish, and it wasn't much work to set it up, but not to suggest that it would be worthwhile adding it to the core mod. Quote FM's: Builder Roads, Old Habits, Old Habits Rebuild Mapping and Scripting: Apples and Peaches Sculptris Models and Tutorials: Obsttortes Models My wiki articles: Obstipedia Texture Blending in DR: DR ASE Blend Exporter
chakkman Posted June 15, 2022 Report Posted June 15, 2022 I like it a lot in Splinter Cell, but, I don't need it in Thief/Dark Mod. Additionally to a dark meter, you also have a noise meter in Splinter Cell, and, the movement speed is mostly for that. Moving faster makes more noise, and, you will constantly watch your sound meter when you adjust your movement speed. Quote
snatcher Posted June 15, 2022 Author Report Posted June 15, 2022 I never gave a damn about the noise metter in SC. I trusted devs did their job and when there was white noise around I assumed I could get away with more of my own noise. It worked as far as I recall. Quote
snatcher Posted June 16, 2022 Author Report Posted June 16, 2022 (edited) 4th version of the script. I altered it so that when you are running and stop, you are back to "walking" mode. It feels quite natural now, considering the limitations. ------------------------------------ If anyone wants to put it to test, follow below instructions (please note it takes some time to get used to it): Download AutoHotkey, install it, open Notepad, paste the below script inside, save it as TDM.ahk and double click on the file you just saved. Settings > Controls > Weapons: Remove mouse wheel bindings from Next Weapon and Previous Weapon (or from any other setting you may have set the mouse wheel to) Settings > Controls > General: Make sure Toggle Crouch is enabled and Always Run is disabled Settings > Controls > Movement: The Forward, Run and Creep keys must match in both TDM and the script. To end the script, go to the Windows taskbar, look for a green icon with an "H", right click on it and select Exit. Known limitations: You can turn pages and numbered dials using Next Inv. Item / Prev Inv. Item. To prepare for a long jump from idle, move the mouse wheel up before executing your move You cannot move objects you are holding back and forth You cannot lean forward and switch speeds at the same time, for some reason Warning: fighting is as cumbersome as ever! ; ===================================== ; Adjust player speed with mouse wheel ; ------------------------------------- ; An AutoHotkey script for The Dark Mod ; version 4.0 by Obsttorte & snatcher ; ===================================== ; ------------------------------------- ; Configure your keys below ; ------------------------------------- ; In-game move forward key key_forward = w ; In-game creep key key_creep = c ; In-game run key key_run = r ; ------------------------------------- ; Do not edit anything past this point ; ------------------------------------- speed = 0 ; init speed (-1 = creep | 0 = walk [default] | 1 = run) steps = 1 ; amount of mouse wheel steps needed for switching state [default = 1) state = speed * steps ; counter for state switch #IfWinActive ahk_exe TheDarkModx64.exe ; run only when TDM is focused HotKey, *~%key_forward% up, keyForwardHandler return keyForwardHandler: if (speed == 1) ; we are running { speed = 0 ; walk Send {%key_run% up} } return *wheelup:: state += 1 if (state >= steps) { if (speed == -1) ; we are creeping { speed = 0 ; walk Send {%key_creep% up} } else if (speed == 0) ; we are walking { speed = 1 ; run Send {%key_run% down} } state = 0 } return *wheeldown:: state -= 1 if (state <= steps * -1) { if (speed == 0) ; we are walking { speed = -1 ; creep Send {%key_creep% down} } else if (speed == 1) ; we are running { speed = 0 ; walk Send {%key_run% up} } state = 0 } return Cheers! Edited June 16, 2022 by snatcher Quote
Filizitas Posted June 16, 2022 Report Posted June 16, 2022 This is so funny. Quote Can we have more scary Zombie Horror maps?
datiswous Posted June 17, 2022 Report Posted June 17, 2022 Possible solution for Linux: http://manpages.ubuntu.com/manpages/trusty/man1/imwheel.1.html (not tried yet) Quote
snatcher Posted June 22, 2022 Author Report Posted June 22, 2022 Version 5 of the script posted. Change-log: v5: To prevents sudden halts when running, a one-second delay has been added between the moment the player stops going forward and the script takes you automatically back to walking mode. To allow for a greater freedom of movement, the script requires to know now your backwards, right and left keys. v4: Altered so that when player is running and stops, you are back to walking mode. v3: The script only runs when TDM is in focus (tested in Win 10) v2: Second version by Obsttorte v1: First version by Obsttorte ------------------------------------ If anyone wants to put it to test, follow below instructions (please note it takes some time to get used to it): Download AutoHotkey, install it, open Notepad, paste the below script inside, save it as TDM.ahk and double click on the file you just saved. Settings > Controls > Weapons: Remove mouse wheel bindings from Next Weapon and Previous Weapon (or from any other setting you may have set the mouse wheel to) Settings > Controls > General: Make sure Toggle Crouch is enabled and Always Run is disabled Settings > Controls > Movement: The Forward, Run and Creep keys must match in both TDM and the script. To end the script, go to the Windows taskbar, look for a green icon with an "H", right click on it and select Exit. Known limitations: You can turn pages and numbered dials using Next Inv. Item / Prev Inv. Item. To prepare for a long jump from idle, move the mouse wheel up before executing your move You cannot move objects you are holding back and forth You cannot lean forward and switch speeds at the same time, for some reason Warning: fighting is as cumbersome as ever! ; ===================================== ; Adjust player speed with mouse wheel ; ------------------------------------- ; An AutoHotkey script for The Dark Mod ; version 5.0 by Obsttorte & snatcher ; ===================================== ; ------------------------------------- ; Configure your keys below ; ------------------------------------- ; In-game movements keys key_left = a key_right = d key_forward = w key_backward = s ; In-game creep key key_creep = c ; In-game run key key_run = r ; ------------------------------------- ; Do not edit anything past this point ; ------------------------------------- delay = 1000 ; delay in miliseconds between running > walking [default = 1000] speed = 0 ; init speed (-1 = creep | 0 = walk [default] | 1 = run) steps = 1 ; amount of mouse wheel steps needed for switching state [default = 1] state = speed * steps ; counter for state switch #IfWinActive ahk_exe TheDarkModx64.exe ; run only when TDM is focused HotKey, *~%key_forward% up, keyForwardHandler return keyForwardHandler: if (speed == 1) ; we are running { sleep, delay if (!GetKeyState(key_forward) && !GetKeyState(key_backward) && !GetKeyState(key_right) && !GetKeyState(key_left)) { speed = 0 ; walk Send {%key_run% up} } } return *wheelup:: state += 1 if (state >= steps) { if (speed == -1) ; we are creeping { speed = 0 ; walk Send {%key_creep% up} } else if (speed == 0) ; we are walking { speed = 1 ; run Send {%key_run% down} } state = 0 } return *wheeldown:: state -= 1 if (state <= steps * -1) { if (speed == 0) ; we are walking { speed = -1 ; creep Send {%key_creep% down} } else if (speed == 1) ; we are running { speed = 0 ; walk Send {%key_run% up} } state = 0 } return Cheers! 1 Quote
Oktokolo Posted June 25, 2022 Report Posted June 25, 2022 Nice idea and i don't think, it would hurt core mod to have it. But i have no mouse wheel, so would like rebindability of the "keys" if it does end up making it in somehow. Quote
Obsttorte Posted June 26, 2022 Report Posted June 26, 2022 @OktokoloWhat would be the point then? You have two key to control speed now and you would have two keys to control speed then. The only addition might be to allow players to turn those keys into toggles. Quote FM's: Builder Roads, Old Habits, Old Habits Rebuild Mapping and Scripting: Apples and Peaches Sculptris Models and Tutorials: Obsttortes Models My wiki articles: Obstipedia Texture Blending in DR: DR ASE Blend Exporter
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.