Main > Lightguns |
Time Crisis 5 now dumped and working! |
<< < (6/6) |
Ace:
Thought i'd share some progress with Time Crisis 5 Aimtrak works perfectly with Demulshooter 10.1.4 with the DemulShooterX64.exe with game sight or without, perfect accuracy and no need to change anything in the engine/config file. My left and right buttons act as the peddles as well and here's how to set it up with no AHK go to Time Crisis 5\TC5\TimeCrisisGame\Config\DefaultInput.ini (click properties and untick read only) Original lines 27&28 look like this: ; USB FOOT SWITCHキーバインド .Bindings=(Name="t",Command="StartPedalL | OnRelease StopPedalL") .Bindings=(Name="y",Command="StartPedalR | OnRelease StopPedalR") I've changed them to this: ; USB FOOT SWITCHキーバインド .Bindings=(Name="RightMouseButton",Command="StopPedalL | OnRelease StartPedalL") .Bindings=(Name="MiddleMouseButton",Command="StopPedalR | OnRelease StartPedalR") Please note i had to also change the stop and start pedal around as when i hold my left button and fire it cancels out the button press so it kept on hiding after each shot!!!! Only happens on my left button atm and have emailed Andy at ultimarc to ask about this. This will also affect my idea for cycling through weapons as i can hide with my right button and press the trigger and i stay hidden (which is perfect) however with the left button when i press the trigger he stands up!!!!! In the same file i've also edited lines 102 & 105 to below so now by pressing 1 and 5 the keyboard will control Crosshair and credits .Bindings=(Name="One",Command="ToggleCrosshair") .Bindings=(Name="Five",Command="DebugAddCredit") Have a AHK Script please see below: #SingleInstance, force Run, DemulshooterX64.exe -target=es3 -rom=tc5 run, "E:\LaunchBox\Games\Teknoparrot\Time Crisis 5\TC5\Binaries\Win64\TimeCrisisGame-Win64-Shipping.exe" -NOINI -Language=JPN -playside=1 Escape:: Process,Close,TimeCrisisGame-Win64-Shipping.exe Run,taskkill /im "TimeCrisisGame-Win64-Shipping.exe" /F ExitApp return Which works perfectly so thank you, what i need help on is below please: 1. My Pc is set at 1920x1080 but its scaled to 150% so when i launch the game the aiming is off and doesn't work. How or what do i need to type in my AHK for it to launch the game at 100% and then revert back to 150% on exiting (or is there another way???) 2. My Left and Right buttons are mapped off screen as GP Button 1 & GP Button 5 (believe these out put as Joy 1 Button 5 etc) Would like to map these as Credit and Cross Hair which are set as 1 & 5 via a AHK please. (Tried to map this directly in the file but had no luck atm) 3. Would like to be able to cycle through weapons as well and haven't edited that in the file but could do i suppose but atm its "o" was thinking on screen holding right button which is Mouse Middle and pressing the trigger to cycle through and could also set it up as left button and trigger and be able to cycle up and down depending what side you're on Open to help and suggestions and help with a AHK Script please as i'm not to familiar with them and leaning myself. Sorry for the long post and hope somethings can help and assist others and hoping someone can help me please Thanks also to Tiberius Thanks a lot |
Ace:
Finally got Time Crisis 5 running perfectly with a Aimtrak and all buttons working off a AHK Script (This is how i like it working other people may not) I've already posted my Aimtrack utility set up in here so feel free to find that but here's what i done to set it all up: Time Crisis 5\TC5\TimeCrisisGame\Config\BaseInput.ini (Need to go to properties and untick read only) Changed Lines 27 & 28 to this .Bindings=(Name="RightMouseButton",Command="StopPedalL | OnRelease StartPedalL") .Bindings=(Name="MiddleMouseButton",Command="StopPedalR | OnRelease StartPedalR") (Swapped the start and stop around so you hold the left and right buttons to hide) Then changed Lines 101 &104 to this .Bindings=(Name="One",Command="ToggleCrosshair") .Bindings=(Name="Five",Command="DebugAddCredit") Here's my AHK Script: You'll need to change the path where your game is etc but everything works #SingleInstance, force Run, DemulshooterX64.exe -target=es3 -rom=tc5 run, "E:\LaunchBox\Games\Teknoparrot\Time Crisis 5\TC5\Binaries\Win64\TimeCrisisGame-Win64-Shipping.exe" -NOINI -Language=JPN -playside=1 1Joy5:: Send, 5 1Joy1:: Send, 1 ~MButton & LButton:: Send, o ~RButton & LButton:: Send, o Escape:: Process,Close,TimeCrisisGame-Win64-Shipping.exe Run,taskkill /im "TimeCrisisGame-Win64-Shipping.exe" /F ExitApp return With this you can add coins and turn crosshair off/on off screen with the left and right buttons, on screen you can move Left, Right and hide with the left and right buttons. Then while holding either Left or Right button and pressing the trigger you can cycle through weapons while hiding. Hope this helps some people and is useful to some. I turned my AHK into an .exe and that's what i use to launch everything. Also if people have scaling issues like i did my PC is set to 150% just tick the Dpi n properties on the DemulshooterX64.exe Thanks also to Tiberius and others for your help and feel its good to share and help Johno |
Vocalitus:
What is the minimum specs to run this game? FX6300/i5, GTX 610, WinXP64 + 6gb Ram. |
Firebat138:
Hopefully not a dead topic. Got the game running with a mouse cursor for now... For the life of me I can not figure out to MOVE. It says push right pedal. I have the AHK script working great to map left and right mouse buttons and 1 and 5 for start and crosshairs. can shoot great, just cant move. I am missing something I am sure EDIT: Found the ahk edits to make T and Y the move buttons. I was only trying to use the mouse buttons |
teeboz:
old topic just wanted to say thanks. works perfect. --- Quote from: Ace on September 18, 2020, 06:09:04 am ---Finally got Time Crisis 5 running perfectly with a Aimtrak and all buttons working off a AHK Script (This is how i like it working other people may not) I've already posted my Aimtrack utility set up in here so feel free to find that but here's what i done to set it all up: Time Crisis 5\TC5\TimeCrisisGame\Config\BaseInput.ini (Need to go to properties and untick read only) Changed Lines 27 & 28 to this .Bindings=(Name="RightMouseButton",Command="StopPedalL | OnRelease StartPedalL") .Bindings=(Name="MiddleMouseButton",Command="StopPedalR | OnRelease StartPedalR") (Swapped the start and stop around so you hold the left and right buttons to hide) Then changed Lines 101 &104 to this .Bindings=(Name="One",Command="ToggleCrosshair") .Bindings=(Name="Five",Command="DebugAddCredit") Here's my AHK Script: You'll need to change the path where your game is etc but everything works #SingleInstance, force Run, DemulshooterX64.exe -target=es3 -rom=tc5 run, "E:\LaunchBox\Games\Teknoparrot\Time Crisis 5\TC5\Binaries\Win64\TimeCrisisGame-Win64-Shipping.exe" -NOINI -Language=JPN -playside=1 1Joy5:: Send, 5 1Joy1:: Send, 1 ~MButton & LButton:: Send, o ~RButton & LButton:: Send, o Escape:: Process,Close,TimeCrisisGame-Win64-Shipping.exe Run,taskkill /im "TimeCrisisGame-Win64-Shipping.exe" /F ExitApp return With this you can add coins and turn crosshair off/on off screen with the left and right buttons, on screen you can move Left, Right and hide with the left and right buttons. Then while holding either Left or Right button and pressing the trigger you can cycle through weapons while hiding. Hope this helps some people and is useful to some. I turned my AHK into an .exe and that's what i use to launch everything. Also if people have scaling issues like i did my PC is set to 150% just tick the Dpi n properties on the DemulshooterX64.exe Thanks also to Tiberius and others for your help and feel its good to share and help Johno --- End quote --- |
Navigation |
Message Index |
Previous page |