Aller au contenu

Johno

GamerLine
  • Compteur de contenus

    22
  • Inscription

  • DerniĂšre visite

Tout ce qui a été posté par Johno

  1. Hi, Sorry for the noob question but I’d there one place or a pack you can download all the games that work with hypseus singe please as very new to this but interested in getting these playable in time. Thanks for any help with this and love the work that’s happening
  2. Nice to see work is still happening although the project is dead now. Any news on Razing Storm as this just needed inputs sorting out so hoping someone may continued this and get it working. Thanks for any info and always nice to see you around Wildwolf and hope your well my friend
  3. Is there a discord channel for this emulator
  4. Hi, I shared and posted a full breakdown in this thread a while back just scroll back and you’ll be good to go. Can move left and right with my buttons and then off screen I can turn the crosshair on and off which is needed as it disappears, I can also scroll through weapons also.
  5. This has been added to the Teknoparrot library so just add it and run it through that đŸ‘đŸ»â˜ș Shouldn’t have any issues that way.
  6. Hoping someone can help and you don’t mind me posting in here I’m using a Aimtrak and the Nuvee plugin to play Playstation gun game in ePSXE. In the nuvee config you can hide cursor or have it visible. I’d like to set up different versions of each with and without. How is this possible as when you change the config in nuvee it changes for all the games and even if you save a game profile as well and also have another exe in another folder lol any help appreciated thank you.
  7. Using Demulshooter 10.1.4 and the 64.exe as people have said you don’t need to edit anything in the actual game for sight. As when in the continue screen the blue in game sight lines up perfectly in the centre of the white sight so it’s perfect from Argonlefou aka Demulshooter. Only edit what I’ve put but again only if your gun is set up in the utility the same as mine. If not you should be able to figure out what to change in my AHK script to get the buttons working for you. But your gun needs to be configured properly via the utility and your hid/gun id saved in Demulshooter. Have completed this with in game sight on and off so can confirm it’s perfect with Demulshooter đŸ‘đŸ»đŸ˜Š
  8. Hi feel free to use what I’ve posted and start over again from scratch đŸ‘đŸ» You’ll need Demulshooter as well and get your gun configured and saved in that and then keep everything in the same folder as the games exe. Got it it working perfectly with and without a sight and completed the game
  9. 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
  10. Hi mate, I haven’t accessed test or service menu I’m afraid đŸ™đŸ» All my adjustments have been made directly to the game input ini file. And then I solved my scaling issue by ticking the dpi on the demul64.exe All I need now is how to type ‘Joy 1 Button 5’ to register as 5 on a keyboard to put in a AHK Script any help appreciated with this please. Thanks a lot
  11. 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ƒL[ƒoƒCƒ“ƒh .Bindings=(Name="t",Command="StartPedalL | OnRelease StopPedalL") .Bindings=(Name="y",Command="StartPedalR | OnRelease StopPedalR") I've changed them to this: ; USB FOOT SWITCHƒL[ƒoƒCƒ“ƒh .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
  12. Thank a lot for this â˜ș If you can shed some light on the Aimtrak info I posted that would be great Thanks again đŸ‘đŸ»
  13. Would love to see a tutorial on how to set this up with Xbox game pad for 1&2 players through launchbox đŸ‘đŸ»đŸ˜Š
  14. Great work by everyone and nice to have this game playable. Hoping you guys that are a whizz with AHK scripts might be able to write one for the attached pic. This is how someone on YouTube has it set up but only lists the buttons and what they do. He doesn’t share how this is set up đŸ™đŸ» Any help appreciated please Thank you
×
×
  • CrĂ©er...