maabus19
GamerLine-
Compteur de contenus
46 -
Inscription
-
Dernière visite
-
Jours gagnés
1
Tout ce qui a été posté par maabus19
-
[ARCADE PC] Robin Hood (Ice / Gamewax)
maabus19 a répondu à un(e) sujet de hippopippo dans ARCADE PC DUMP LOADER
Hi @Cool Coyote I uploaded it again for you. It will be shared for a few days so someone should make a mirror of it if others want it. https://mega.nz/file/xmxD2ZLB#U9-lPbw_FufOftk8EVvQgdb2nRnB_h891vu46KiFIuo -
Sega Mega LaserDisc Games Playable On Ares!
maabus19 a répondu à un(e) sujet de M0d3rnR3tr0Gam3r dans EMULATEUR NEWS
-
Sega Mega LaserDisc Games Playable On Ares!
maabus19 a répondu à un(e) sujet de M0d3rnR3tr0Gam3r dans EMULATEUR NEWS
@Mack1234 did it used to work? if so, try everything as it was, and just change this part from ; Détection Mega CD 32X si le nom de la rom contient "32X" If (InStr(romName, "32X")) { ; Mode hybride Mega CD 32X params := """" . romPath . "\" . romName . romExtension . """" . " --system=MegaCD32X --fullscreen" } Else { ; Cas standard params := """" . romPath . "\" . romName . romExtension . """" . " --fullscreen" } to params := """" . romPath . "\" . romName . romExtension . """" . " --system="LaserActive (SEGA PAC)" --fullscreen" then test with hyperion Oh i forgot the = after system in my previous post... try putting in the = sign with what i said above. -
Sega Mega LaserDisc Games Playable On Ares!
maabus19 a répondu à un(e) sujet de M0d3rnR3tr0Gam3r dans EMULATEUR NEWS
in the Ares.ahk I would assume you need to change the following lines. Add (SEGA PAC) and (NEC PAC) to section below... maybe after Sega Mega LD MSystem := [MSystem := ["Arcade","Atari 2600","WonderSwan","WonderSwan Color","Pocket Challenge V2","ColecoVision","MSX","MSX2","PC Engine","TurboGrafx-16","PC Engine CD","TurboGrafx CD","SuperGrafx","My Vision","Nintendo Entertainment System","Famicom","Famicom Disk System","Game Boy","Game Boy Color","Game Boy Advance","Super Nintendo Entertainment System","Super Famicom","Satellaview","Nintendo 64","Nintendo 64DD","SuFami Turbo","SG-1000","Master System","Mark III","Game Gear","Mega Drive","Genesis","Mega CD","Sega CD","32X","Sega Mega LD","ZX Spectrum","Neo Geo AES","Neo Geo MVS","Neo Geo CD","Neo Geo Pocket","Neo Geo Pocket Color","PlayStation"]] Then change this section ; Détection Mega CD 32X si le nom de la rom contient "32X" If (InStr(romName, "32X")) { ; Mode hybride Mega CD 32X params := """" . romPath . "\" . romName . romExtension . """" . " --system=MegaCD32X --fullscreen" } Else { ; Cas standard params := """" . romPath . "\" . romName . romExtension . """" . " --fullscreen" } Change to ; Détection LaserActive si le nom de la rom contient "(SEGA PAC)" If (InStr(romName, "(SEGA PAC)")) { ; Mode hybride LaserActive (SEGA PAC) params := """" . romPath . "\" . romName . romExtension . """" . " --system "LaserActive (SEGA PAC)" --fullscreen" } Else { ; Cas standard params := """" . romPath . "\" . romName . romExtension . """" . " --fullscreen" } If (InStr(romName, "(NEC PAC)")) { ; Mode hybride LaserActive (NEC PAC) params := """" . romPath . "\" . romName . romExtension . """" . " --system "LaserActive (NEC PAC)" --fullscreen" } Else { ; Cas standard params := """" . romPath . "\" . romName . romExtension . """" . " --fullscreen" } You might be able to put the second part as an Elseif, then Else { ;cas standard.. i think you would then need to put (SEGA PAC) and (NEC PAC) in your rom names for each type of game. (hyperion (SEGA PAC).zip) and (Demon Judgement (NEC PAC).zip) I havent used Hyperspin/rocketlauncher in a while so I might be wrong. I am using launchbox. -
Sega Mega LaserDisc Games Playable On Ares!
maabus19 a répondu à un(e) sujet de M0d3rnR3tr0Gam3r dans EMULATEUR NEWS
For Sega Games Ares.exe --system "LaserActive (SEGA PAC)" --fullscreen "path to .mmi file" Ares.exe --system "LaserActive (SEGA PAC)" --fullscreen "c:\laser active\Hyperion.mmi" For NEC games Ares.exe --system "LaserActive (NEC PAC)" --fullscreen "path to .mmi file" Ares.exe --system "LaserActive (NEC PAC)" --fullscreen "c:\laser active\Demons Judgement.mmi" -
[Arcade PC] Superbikes 3 v1.91 (RawThrills)
maabus19 a répondu à un(e) sujet de bigdenny dans ARCADE PC DUMP LOADER
why are you guys using the x64 version? the x86 works perfectly fine. -
[Arcade PC] Superbikes 3 v1.91 (RawThrills)
maabus19 a répondu à un(e) sujet de bigdenny dans ARCADE PC DUMP LOADER
here is my wheel2xinput. Make sure you install ViGEmBus_1.22.0_x64_x86_arm64 Wheel2XInput.zip make sure you change the guid in Super-Bikes-3.json to your wheel guid. You can run wheel2xinput.exe --trace. just press a button or turn your wheel it will show the device. you can click on the entry, and click copy guid, and past that in to the json file. Then change the button numbers to the buttons from your wheel. In trace you will see which button number it is when you press it. All available inputs are in the json file, you just need to change the button numbers to what you want. then run SB3wheel.bat in wheel2xinput-v0.1.5 folder you will need to make an ahk to close wheel2xinput when closing the game. otherwise you have to end it from the task bar. You can have different json files for different games as well. you can change the Force feedback and other settings in the json, but this is just a basic file to get it working. change the entries that i am pointing to. Do not change the target buttons axis 0 is gas pedal axis 1 is brake pedal This is what each target button does Button X - Tunes Button A - Start Button B - View Button Back - Coin1 Button RightShoulder - Vol+ Button LeftShoulder - Vol- Button RightThumb - Test Button LeftThumb - Service -
[Arcade PC] Superbikes 3 v1.91 (RawThrills)
maabus19 a répondu à un(e) sujet de bigdenny dans ARCADE PC DUMP LOADER
With Standalone. Wheel2xinput let's you map your wheel axis and buttons to the xinput gamepad controlls -
[Arcade PC] Superbikes 3 v1.91 (RawThrills)
maabus19 a répondu à un(e) sujet de bigdenny dans ARCADE PC DUMP LOADER
Yes I use wheel2xinput. Works great! -
[Arcade PC] Superbikes 3 v1.91 (RawThrills)
maabus19 a répondu à un(e) sujet de bigdenny dans ARCADE PC DUMP LOADER
-
[Arcade PC] Superbikes 3 v1.91 (RawThrills)
maabus19 a répondu à un(e) sujet de bigdenny dans ARCADE PC DUMP LOADER
Works like a champ Standalone too. -
[Arcade PC] Superbikes 3 v1.91 (RawThrills)
maabus19 a répondu à un(e) sujet de bigdenny dans ARCADE PC DUMP LOADER
not sure why it is doing that. -
[Arcade PC] Superbikes 3 v1.91 (RawThrills)
maabus19 a répondu à un(e) sujet de bigdenny dans ARCADE PC DUMP LOADER
Actually i just downloaded JC's. I extracted it and ran fnfmega.exe without adding or doing anything. I didnt realize that he put up a ready2play setup. i'm not sure why you would have a black screen then. i only got that when i had to add bepinex myself. -
[Arcade PC] Superbikes 3 v1.91 (RawThrills)
maabus19 a répondu à un(e) sujet de bigdenny dans ARCADE PC DUMP LOADER
if you use the one that JC posted, make sure that you are using the x86 version of bepinex I had originally used the x64 version, and it hung on the black screen. Everythign that JC posted works just fine without needing anything else. -
[Arcade PC] Superbikes 3 v1.91 (RawThrills)
maabus19 a répondu à un(e) sujet de bigdenny dans ARCADE PC DUMP LOADER
Here are the controls for Retrofan's you can use wheel2xinput to map controller buttons to a wheel. Controlls: Controlller Button X - Tunes Button A - Start Button B - View Button Back - Coin1 Button RightShoulder - Vol+ Button LeftShoulder - Vol- Button RightThumb - Test Button LeftThumb - Service Button - Coin2 (Not sure what button for coin2) Button - DBV (Not sure what button for DBV) Keyboard D - Test F - service Up arrow - Gas Down Arrow - Brake Left/Right Arrow - Steer Left/Right S - start V - view T - tunes 1 - coin1 2 - coin2 3 - DBV (-) - vol down + ‐ vol up Esc - quit Mouse: Middle mouse button will switch to mouse steering and buttons on keyboard, so believe up/down arrow , will be gas/brake -
[Arcade PC] Superbikes 3 v1.91 (RawThrills)
maabus19 a répondu à un(e) sujet de bigdenny dans ARCADE PC DUMP LOADER
if you are using the standalone version JC posted use the x86 version of bepinex installation -
MAME 0.281 & clones : Multiple Arcade Machine Emulator
maabus19 a répondu à un(e) sujet de 7zxkv dans EMULATEUR NEWS
Some controllers show up as multiple devices. My ipac shows up as a joystick, keyboard, and mouse. So does my logitech g920 wheel. You probably have to set up controller id's in mame so it always loads the correct controller as the correct id for example this is how windows sees all of my devices. but if any gets unplugged or even a reboot can load them in a different order so joy1 might become joy2. have to tell mame the device id and what to load it as. <?xml version="1.0"?> <mameconfig version="10"> <system name="default"> <!-- Keyboards: USB Keyboard: (device id: \\?\HID#VID_046D&PID_C534&MI_00#7&69638be&0&0000#{884b96c3-56ef-11d1-bc8c-00a0c91405dd}) IPac: (device id: \\?\HID#VID_D209&PID_0420&MI_00#8&6adaee4&0&0000#{884b96c3-56ef-11d1-bc8c-00a0c91405dd}) Wheel V KB: (device id: \\?\HID#VID_046D&PID_C232#2&b4b7c37&3&0000#{884b96c3-56ef-11d1-bc8c-00a0c91405dd}) Gcon2P1: (device id: \\?\HID#VID_2341&PID_8042&MI_02&Col02#8&1a22278a&0&0001#{884b96c3-56ef-11d1-bc8c-00a0c91405dd}) Zapper: (device id: \\?\HID#VID_2341&PID_8044&MI_02&Col02#8&1c5102a3&0&0001#{884b96c3-56ef-11d1-bc8c-00a0c91405dd}) Mouse: USB Mouse: (device id: \\?\HID#VID_046D&PID_C534&MI_01&Col01#7&c99e380&0&0000#{378de44c-56ef-11d1-bc8c-00a0c91405dd}) Gcon2P1: (device id: \\?\HID#VID_2341&PID_8042&MI_02&Col01#8&1a22278a&0&0000#{378de44c-56ef-11d1-bc8c-00a0c91405dd}) Zapper: (device id: \\?\HID#VID_2341&PID_8044&MI_02&Col01#8&1c5102a3&0&0000#{378de44c-56ef-11d1-bc8c-00a0c91405dd}) U360P1: (device id: \\?\HID#VID_D209&PID_0511&MI_01#8&29084685&0&0000#{378de44c-56ef-11d1-bc8c-00a0c91405dd}) U360P2: (device id: \\?\HID#VID_D209&PID_0512&MI_01#8&20ce3bd9&0&0000#{378de44c-56ef-11d1-bc8c-00a0c91405dd}) Ipac: (device id: \\?\HID#VID_D209&PID_0420&MI_01#8&2a84eca6&0&0000#{378de44c-56ef-11d1-bc8c-00a0c91405dd}) Light Gun: Gcon2P1: (device id: \\?\HID#VID_2341&PID_8042&MI_02&Col01#8&1a22278a&0&0000#{378de44c-56ef-11d1-bc8c-00a0c91405dd}) Zapper: (device id: \\?\HID#VID_2341&PID_8044&MI_02&Col01#8&1c5102a3&0&0000#{378de44c-56ef-11d1-bc8c-00a0c91405dd}) USB Mouse: (device id: \\?\HID#VID_046D&PID_C534&MI_01&Col01#7&c99e380&0&0000#{378de44c-56ef-11d1-bc8c-00a0c91405dd}) U360P1: (device id: \\?\HID#VID_D209&PID_0511&MI_01#8&29084685&0&0000#{378de44c-56ef-11d1-bc8c-00a0c91405dd}) U360P2: (device id: \\?\HID#VID_D209&PID_0512&MI_01#8&20ce3bd9&0&0000#{378de44c-56ef-11d1-bc8c-00a0c91405dd}) IPac: (device id: \\?\HID#VID_D209&PID_0420&MI_01#8&2a84eca6&0&0000#{378de44c-56ef-11d1-bc8c-00a0c91405dd}) Joystick: U360P1: (device id: Ultimarc Ultra-Stik Player 1 product_0511d209-0000-0000-0000-504944564944 instance_e6f671d0-6efc-11f0-800b-444553540000) U360P2: (device id: Ultimarc Ultra-Stik Player 2 product_0512d209-0000-0000-0000-504944564944 instance_e6f6e700-6efc-11f0-800c-444553540000) Gcon2P1: GUN4IR P1 (device id: GUN4IR P1 product_80422341-0000-0000-0000-504944564944 instance_3783b2f0-6f9a-11f0-8001-444553540000) Zapper: GUN4IR P3 (device id: GUN4IR P3 product_80442341-0000-0000-0000-504944564944 instance_f7aeaca0-7144-11f0-8001-444553540000) Wheel: USB\VID_046D&PID_C26D&REV_3902 --> <input> <mapdevice device="Ultimarc Ultra-Stik Player 1" controller="JOYCODE_1"/> <mapdevice device="Ultimarc Ultra-Stik Player 2" controller="JOYCODE_2"/> <mapdevice device="VID_2341;PID_8042" controller="GUNCODE_1"/> <mapdevice device="VID_2341;PID_8044" controller="GUNCODE_2"/> </input> </system> </mameconfig> -
Sega Mega LaserDisc Games Playable On Ares!
maabus19 a répondu à un(e) sujet de M0d3rnR3tr0Gam3r dans EMULATEUR NEWS
How did you get past the name entry in ghost rushing? I put my name in and couldn't advance. -
Sega Mega LaserDisc Games Playable On Ares!
maabus19 a répondu à un(e) sujet de M0d3rnR3tr0Gam3r dans EMULATEUR NEWS
Official notes for vajra... Not currently playable! This is an LD-ROM2 disc for the LaserActive, requiring the NEC PAC-N1/PAC-N10 module rather than the Sega PAC-S1/PAC-S10. This is here as a reference, to assist in future emulation efforts of the NEC PAC module. Notes for myst. myst 02-111 The first of the two LaserActive Myst prototypes known to exist. This game is generally more broken than the second beta, with multiple instances of incorrect footage being shown, and the main menu not showing. It does however not have as many long video sequences which fail to stop at the correct point in time. Generally the second prototype is better for playing however. Myst b2 02-110 test The second of the two LaserActive Myst prototypes known to exist. This game is one of the most advanced uses of the LaserActive hardware, making extensive use of single-frame or short animation sequences, looping sequences, and overlapping up to four distinct video streams with audio in the same disc regions. Being a prototype, the game contains numerous errors, which also occur on the real hardware. Some notes to help with playing this title: -Due to a game logic bug, video sequences which use frame skipping often play either 2x or 4x longer than they are supposed to, causing random following video data to appear on the screen. This happens for the main game introduction, as well as for many animation sequences in game. If you are patient, the “overrun” will eventually finish and the game will return to its correct position. This issue is likely fairly simple to fix as a hack, but it makes the game difficult to play currently. -Unless you select a language, the game runs in a broken mix of English and Japanese. Set the language when starting a new game to correct this. -The cursor can disappear in the pause menu. Be careful where you click. -The game save feature appears to be non-functional. -
Sega Mega LaserDisc Games Playable On Ares!
maabus19 a répondu à un(e) sujet de M0d3rnR3tr0Gam3r dans EMULATEUR NEWS
Quickly tested all the games. Can't verify quality of games as i tested while remoting in to my system, and did not have sound. Have it working full screen and using ahk to quit game in Launchbox. Now to figure out if there is any way to scrape data for it. Here are my findings. Ghost Rush! - stuck after entering name Goku: - working Hi-Roller Battle - can't figure out how to start mission Hyperion (J) - Working Hyperion (U) - Working J.B Harold Blue Chicago - loaded, but ran slow.. all japanese (supposedly multi language though) Myst B Test 2 111 - worked with issues Myst 02-110 - worked but is not a complete game Pyramid Patrol (J) - Worked Pyramid Patrol (U) - Worked Rocket Coaster - Worked Space Berserker (J) - Worked Space Berserker (U) - Worked Time Gal - worked Triad Stone - Worked Vajra - loading error -
[ARCADE PC] Robin Hood (Ice / Gamewax)
maabus19 a répondu à un(e) sujet de hippopippo dans ARCADE PC DUMP LOADER
in the readme that came with the loader. Controls: [1] : START [5] : COIN [9] : SERVICE [0] : ADMIN SWITCH [A] : ADVANCE SWITCH [R] : SPARE SWITCH [ARROW DOWN] : SELECT SWITCH [ESC] : EXIT -
[ARCADE PC] Robin Hood (Ice / Gamewax)
maabus19 a répondu à un(e) sujet de hippopippo dans ARCADE PC DUMP LOADER
Robin Hood 204-E https://mega.nz/file/J7ADzSLJ#ueTX3k9p0Vsho6Bo-lnXG7PE1uRSRzJwp0l7Hokr5XQ Can be launched with the 206-A launcher Not sure what the differences are but does have different files in the Model folder and Sound folder. I will leave up for a few days. -
[Arcade PC] ICE Game Dumps
maabus19 a répondu à un(e) sujet de witherzombie222 dans ARCADE PC DUMP LOADER
Robin Hood 204-E Can be launched with the 206-A launcher Not sure what the differences are but does have different files in the Model folder and Sound folder. I will leave up for a few days. -
[Arcade PC] Cooper's 9 [Konami PC based]
maabus19 a répondu à un(e) sujet de WildWolf dans ARCADE PC DUMP LOADER
After dark and cooper were freed yesterday. Vf3tb was also added. Haven't checked if that is free but I think it is. He released them because he is not having a show for like 2 weeks or so so this was his "present". But they are all already playable for free with other Loaders or older tp so no real loss there. -
[Arcade PC] Hypseus Singe: 2-Player Gun + VHS Games
maabus19 a répondu à un(e) sujet de xxOToTOxx dans ARCADE PC DUMP LOADER
Aww that sucks!
