Aller au contenu

Le Forum

  1. Emulation & Arcade

    1. ARCADE PC DUMP LOADER

      Arcade zone tous les derniers jeux d'Arcade disponible sur PC

      52,1 k
      messages
    2. EMULATEUR NEWS

      l'actualité sur l'émulation Console PC

      11,3 k
      messages
    3. ROMS & ISO

      Télécharger des jeux qui vont bientôt disparaitre.
      Sauvegarder la patrimoine vidéoludique

      7 k
      messages
    4. TUTO

      des tutoriels pour l'installation d'émulateurs, loader pour rejouer a vos jeux favoris.

      6,5 k
      messages
    5. SAV - Help

      le service après vente des émulateurs et des jeux Arcade-PC

      Pour toutes vos questions c'est ici (hors demande de roms et de dumps).

      2,6 k
      messages
  2. Gaming

    1. NEWS JEUX VIDEO

      toute l'actualité des jeux video next-gen

      1,3 k
      messages
    2. BEST PC GAMES

      les meilleurs jeux sur PC

      862
      messages
    3. HARDWARE

      le matériel et et les accessoires gamer et numérique
      votre config PC Gamer, Raspberry Pie...

      937
      messages
    4. RETROGAMING

      pour les nostalgiques du pixel

      416
      messages
    5. INDIE GAME

      des jeux indépendants crée par des amateurs ou des petits studios.

      231
      messages
    6. DOUJIN GAME

      des jeux indépendants crée par des amateurs japonais shmup, fight, beat-em-all, puzzle

      441
      messages
    7. MUGEN

      Créer son propre jeux de combat (Fighting Game] avec le logiciel M.U.G.E.N.

      442
      messages
  3. Goodies

    1. HERE COMES A NEW CHALLENGER   (35 364 visites de ce lien)

      présentation des nouveaux membres

    2. PAO PAO CAFE

      le petit coin détente

      1,2 k
      messages
  • 🎮 Best contributeurs

  • netflix emulator emulflix video streaming youtube tuto
  • đź’¬ Posts

    • Please share the JConfig so that we can play the game with a pad or wheel.
    • This is the easiest way to load temple run, as you know it will ERROR, if you don't set your monitor to 60hz .I run mine at 165z. it changes it so easy.  ) To prevent the game from crashing, it must run at 60Hz. You can set this manually in the tr.ini file to avoid using external software like the Nvidia App." I’ve included a way to set the monitor to 60Hz directly in the tr.ini file. This fixes the set resolution error issue so you don't have to mess around with the Nvidia App or other third-party tools." Set the refresh rate/frequency to 60 Open tr.ini ad this anywhere RefreshRate=60 Frequency=60 VSync=1
    • River City Girls             1&2 There's trouble once again in River City, and this time only the girls can save the day! Using a variety of attacks, weapons, and items, these hot-blooded heroines are ready to teach the city’s lowlifes a lesson - either solo or in 2-player co-op! It’s an old-school rumble for a new generation!   Download https://5play.org/index.php?do=cdn&id=168086&lang=en Mod info: full game - removed paid subscription game trailer   covers rcg               River City Girls 2   The River City Girls are back! Misako, Kyoko, Kunio, and Riki - joined by newcomers Marian and Provie - hit the streets for an all-new beat-'em-up adventure! Team up for local or online co-op and explore a massive world packed with new abilities, enemies, locations, and more!   Download https://5play.org/index.php?do=cdn&id=164405&lang=en Mod info: full game - removed paid subscription game trailer   covers rcg2              
    • Does anyone have the ArcCabView settings ini? The MEGA link is broken and the one I saved seems to be broken and I can't fix it.
    • I found a solution for those having issues with audio device detection and crashing, thought I'd share if anyone needs it. This is done by installing a virtual  audio device that can be switched to before game start, then switched back to your default HDMI audio after the game loads to get sound from the game properly. So no headphones or audio cables needed. The whole process is done via AHK script (v1.1 - https://www.autohotkey.com). This is for the STAND ALONE version of the game so demulshooter is used.  You will need to download 3 windows utilities. VB-Cable (requires installation) NirCmd (command line app) SoundVolumeView (command line app)   1. VB-Cable (Virtual Audio Cable)Official download page: https://vb-audio.com/Cable/  Direct download (latest version as of 2024/2025): → VBCABLE_Driver_Pack45.zipThis is the free version you need for your script (it creates "CABLE Input" and "CABLE Output").   2. NirCmd (by NirSoft)Official download page: https://www.nirsoft.net/utils/nircmd.html  Direct download (zip file containing nircmd.exe): → https://www.nirsoft.net/utils/nircmd.zip   3. SoundVolumeView (by NirSoft) Official download page: https://www.nirsoft.net/utils/sound_volume_view.html  Direct downloads 64-bit (recommended for most modern PCs): → https://www.nirsoft.net/utils/soundvolumeview-x64.zip 32-bit: → https://www.nirsoft.net/utils/soundvolumeview.zip   Extract and install VBCABLE_Driver_Pack45.zip to windows default location   Extraxt/copy files from nircmd-x64.zip and soundvolumeview-x64.zip files in a tools folder or where you like. I placed files for both in one folder - D:\Gun Build\Tools\Nircmd   After VB-Cable install you should see the device in windows sound settings as CABLE Input   You can test game launch by manually selecting CABLE Input. If working then use this script so you do not have to manually select audio device. The script will switch it to CABLE Input, then after the game loads it will switch back to default (Mine is 2 - AVT GC573). You will need to edit your paths in the script along with the name of your HDMI_Device. The timing has to be right on the switch back to HDMI for game sound to work. On my system DelaySeconds is set to 10, your mileage may vary. For non Sinden owners you can delete all instances of Sinden and Lightgun.exe. After Paths and DelaySeconds are tuned the game should start with proper sound. For Sinden borders I am using a bezel with white border using ArcCabView, but you can use Reshade using DX9 if bezel use with ArcCabView is having issues. (Much less work to run the game without a bezel). Happy zombie blasting!   #NoEnv #SingleInstance Force #NoTrayIcon SendMode Input SetWorkingDir %A_ScriptDir% ; ========================= CONFIG ========================= SindenPath := "D:\Gun Build\Tools\Sinden Lightgun PVZ\Lightgun.exe" GameFolder := "D:\Gun Build\Roms\TEKNOPARROT\Plants vs Zombies\Sega\Shell" ShellExe := "shell.exe" DemulShooterPath := "D:\Gun Build\Tools\DemulShooter\DemulShooter.exe" NircmdPath := "D:\Gun Build\Tools\Nircmd\nircmd.exe" SoundViewPath := "D:\Gun Build\Tools\Nircmd\SoundVolumeView.exe" HDMI_Device := "2 - AVT GC573" DelaySeconds := 10 ; === Updated with correct window title from Window Spy === GameWindowTitle := "PvzCore" ; ========================================================= ; Close old instances RunWait, taskkill /f /im Lightgun.exe,, Hide RunWait, taskkill /f /im Shell.exe,, Hide RunWait, taskkill /f /im DemulShooter.exe,, Hide ; Start Sinden Lightgun Run, %SindenPath% ; Switch to VB-Cable so the game loads properly RunWait, "%NircmdPath%" setdefaultsounddevice "CABLE Input" 0,, Hide RunWait, "%NircmdPath%" setdefaultsounddevice "CABLE Input" 1,, Hide ; Start DemulShooter Run, "%DemulShooterPath%" -target=arcadepc -rom=pvz,, Hide ; Launch the shell with correct working directory SetWorkingDir, %GameFolder% Run, %ShellExe%, %GameFolder% ; Wait for game to fully load Sleep, % DelaySeconds * 1000 ; Switch audio back to HDMI RunWait, "%SoundViewPath%" /SetDefault "%HDMI_Device%" all,, Hide ; ====================== FOCUS FIX ====================== ; Keeps the PvzCore window focused at all times (fixes trigger losing focus) SetTimer, KeepGameFocused, 250 ; Check every 250ms - fast enough for lightgun KeepGameFocused: IfWinNotActive, %GameWindowTitle% { IfWinExist, %GameWindowTitle% WinActivate, %GameWindowTitle% } Return ; ======================================================= ; ====================== HOTKEYS ====================== F12:: SetTimer, KeepGameFocused, Off RunWait, taskkill /f /im Shell.exe,, Hide RunWait, taskkill /f /im Lightgun.exe,, Hide RunWait, taskkill /f /im DemulShooter.exe,, Hide ExitApp Return ~Esc:: SetTimer, KeepGameFocused, Off RunWait, taskkill /f /im Shell.exe,, Hide RunWait, taskkill /f /im Lightgun.exe,, Hide RunWait, taskkill /f /im DemulShooter.exe,, Hide ExitApp Return    
  • 🕹️ New post

×
×
  • CrĂ©er...