Jump to content
LaunchBox Community Forums

Your Friendly A.I Overlord

Members
  • Posts

    662
  • Joined

  • Last visited

  • Days Won

    3

Posts posted by Your Friendly A.I Overlord

  1. 37 minutes ago, dulanikita said:

    hello I have installed the emulator but I did not understand which file to link to the text file for the game to start

    can you help me ?

    Install a game in Vita3K and take a note of the Title ID.

    621197026_Schermopname(58).thumb.jpg.adac5399f3438069261ebdae72cc5320.jpg

    For example the Title ID for the game Downwell is PCSB00952. Create a text-file with that Title ID. So in this case PCSB00952.txt. Add that text-file as a rom file to your Playstation Vita platform.

    1028347528_Schermopname(63).thumb.jpg.c4f10d3828157531732d2777be5b8294.jpg

    In LaunchBox > Manage > Emulators > Vita3K, make sure [Remove Quotes] and [Remove file extension and folder path] are ticked.

    Add the command-line parameters: --fullscreen -r

    449624901_Schermopname(62).thumb.jpg.0ee410309c0441ff536e11500468e8e7.jpg


    For exiting Vita3K, in the [Running Script] tab add:

    250695272_Schermopname(61).thumb.jpg.08364af9af649eb46c08717d4a3a3bcc.jpg

    $Esc::
    {
    WinClose, ahk_exe {{{StartupEXE}}}
    }
    • Thanks 3
  2. I myself have set up TeknoParrot to open as few windows a possible. In the LaunchBox emulator set up I have ticked [Attempt to hide consolw window]. From LaunchBox I start TeknoParrot minimized and in the TeknoParrot settings I have ticked [Hide console window]. I agree with zugzwang that it's best not to launch TeknoParrot as admin. But TeknoParrot can be misbehaving sometimes.

  3. The games I tested with all exit fine back into LaunchBox from an up-to-date version of TeknoParrot (1.0.0.729). TeknoParrot natively exits with Escape. And for me in the past, an error sometimes popped up when exiting with an exit script from LaunchBox. In my experience TeknoParrot sometimes doesn't like to be closed with WinClose or Process, Close.

  4. 7 hours ago, meecob said:

    I doesn't work for me. It just takes me back to windowed mode. Control Q does work fine but I wish to use Escape.

    Make sure you do not run yuzu.exe with admin rights.

  5. 4 hours ago, Xngears said:

    The only thing I'm wondering now is if the script could be edited so that instead of hitting ESC, I can hit a specific button instead. I'm using the Dualsense controller and I've got the mic button mapped to close active windows (thus, close the emulator). Any way I could have that button be the Dolphin+DS4 killer?

    I could probably also use something like reWASD to map ESC to the button, but I'm looking for whatever is the simplest method.

    You can already do this with DS4Windows.

    698328181_Schermopname(50).thumb.jpg.1d89f047d466b55b5d94366b11b7ffe0.jpg

    Create a new profile for your controller or edit an existing one.

    1704437364_Schermopname(51).thumb.jpg.a0f6b5196a7fc1c7d4f690fbc7cb2c3c.jpg

    Go to the [Special Actions] tab and click [New Action].

    1260543967_Schermopname(52).thumb.jpg.8a871fee7738a1574e3d93eef172d2e0.jpg

    Tick [Mute] (your Mic. button) and at [Select an Action] select [Press/Toggle Key]. Then on the on-screen keyboard click the [Escape] key.

    1414506034_Schermopname(53).thumb.jpg.000b4a4f2b82c9f6b472b99e29915ca9.jpg

    Give your special action a name > Save.

    1779193524_Schermopname(54).thumb.jpg.6f52c6190ffc381bf53821efdd47996a.jpg

    If you want you can create an auto-profile that automatically applies when you start Dolphin.

  6. On 2/11/2022 at 6:27 PM, gerrymarsh87 said:

    The script is the issue on model 2. It launches fine without the script, and if I open x360ce before, it works with no issues. 

    It looks like m2emulator loses focus to X360CE because X360CE launches after m2emulator. M2emulator then pauses / freezes. In LaunchBox you can add X360CE (or an AutoHotKey script to start X360CE) to your game as an additional app to run before launching your game. JoeViking245 created a plugin for LaunchBox to add additional apps to multiple games at once.

    *Edit*

    @gerrymarsh87 Now that I thought about it some more, I remember mapping the controls of my wheel in m2emulator directly, on a per game basis. I didn't need X360CE for m2emulator. So, first map your controls on a per game basis in m2emulator. Then it is probably a good idea to calibrate your controls in the game's service menu also.

  7. 3 hours ago, Xngears said:

    It will open up Dolphin and DS4Windows successfully. The only issue is that DS4Windows.exe sticks around even after Dolphin closes.

    This is how I've got the code set up to point to my DS4Windows directory:

    Run, "F:\Essential Programs\DS4Windows\DS4Windows.exe",,Min

    Esc::
    {
        Process, Close, DS4Windows.exe
        WinClose, ahk_exe Dolphin.exe
    }

    First open DS4Windows and go to [Settings]. Tick [Start Minimized] and make sure [Close Minimizes] is unticked.

    199565764_Schermopname(49).thumb.jpg.060417f3c5bba67ad31e2c4cee3dc393.jpg

    Then, in LaunchBox, try the following script:

    Run, F:\Essential Programs\DS4Windows\DS4Windows.exe
    
    $Esc::
    {
    Run, F:\Essential Programs\DS4Windows\DS4Windows.exe -command shutdown
    WinClose, ahk_exe Dolphin.exe
    } 

     

    • Like 1
    • Thanks 1
  8. 2 hours ago, gerrymarsh87 said:

    Ok so we have some progress..  This script, starts up fine, but it doesnt minimize X360CE, I need to still click off of it, onto my game.  Then on exit, X360CE closes with no issues...  I did verify that ",,min " is whats causing X360CE to not respond. 

    Thank You guys for your help so far, this has been occupying my last few nights. 

    Currently this is the script I have in there...   

    Run, "C:\Users\Gerry\Desktop\X360CE\X360CE.exe"
    WinMinimize, ahk_exe x360ce.exe
    Esc::
    {
        WinClose, ahk_exe X360CE.exe
        WinClose, ahk_exe Yuzu.exe
    }

    Try:

    Run, C:\Users\Gerry\Desktop\X360CE\X360CE.exe
    WinWait, ahk_exe X360CE.exe
    WinMinimize
    
    $Esc::
    {
    WinClose, ahk_exe X360CE.exe
    WinClose, ahk_exe Yuzu.exe
    }

     

    • Like 1
  9. 16 hours ago, gerrymarsh87 said:

    Its just X360CE, it says not responding, and I have to end the task.  I have tried another Yuzu game, and tried the script with another emulator and I am having  issues. 

    A while back I did exactly the same as you, using X360ce for my Thrustmaster wheel. And I did experience the same problem. If I recall correctly the reason was that X360ce does not like to be launched minimized.  For me, when X360ce was launched minimized it technically did what it was supposed to do, but the GUI froze and was hard to close. I could not find any other solution than to not launch X360ce minimized.

    *Edit*

    My solution was to launch X360ce as normal (windowed), but when it is fully loaded (after 5 seconds), minimize X360ce to the taskbar using: WinMinimize, ahk_exe x360ce.exe. (I do have to add that I have a separate LaunchBox setup just for playing racing games  with my Thrustmaster wheel and first start X360ce then LaunchBox / BigBox from an AutoHotKey script.)

    • Like 1
  10. 1 hour ago, malaki1974 said:

    I wanted the cfg file so I could see what +/- looked like so I could just paste it in. 

     

    <?xml version="1.0"?>
    <!-- This file is autogenerated; comments and unknown tags will be stripped -->
    <mameconfig version="10">
        <system name="crusnusa">
            <video>
                <target index="0" view="Screen 0 Pixel Aspect (32:25)" />
            </video>
            <ui_warnings launched="1610042524" warned="1610042519" />
            <input>
                <port tag=":ACCEL" type="P1_PEDAL" mask="255" defvalue="0">
                    <newseq type="standard">
                        JOYCODE_1_ZAXIS_NEG
                    </newseq>
                </port>
                <port tag=":BRAKE" type="P1_PEDAL2" mask="255" defvalue="0">
                    <newseq type="standard">
                        JOYCODE_1_RZAXIS_NEG
                    </newseq>
                </port>
                <port tag=":IN0" type="VOLUME_DOWN" mask="256" defvalue="256">
                    <newseq type="standard">
                        KEYCODE_MINUSPAD
                    </newseq>
                </port>
                <port tag=":IN0" type="P1_BUTTON8" mask="1024" defvalue="1024">
                    <newseq type="standard">
                        NONE
                    </newseq>
                </port>
                <port tag=":IN0" type="P1_BUTTON7" mask="2048" defvalue="2048">
                    <newseq type="standard">
                        NONE
                    </newseq>
                </port>
                <port tag=":WHEEL" type="P1_PADDLE" mask="255" defvalue="128">
                    <newseq type="standard">
                        JOYCODE_1_XAXIS
                    </newseq>
                </port>
            </input>
        </system>
    </mameconfig>

     

    1 hour ago, malaki1974 said:

    The menu for tracks is still super sensitive but again I can mostly pick the right track about 25% of the time.

    The track selection menu is still very sensitive for me as well. Try moving your tumbstick slowly in a semi-circle.

    1 hour ago, malaki1974 said:

    Oh and one more thing I don’t see the paddle sensitivity menu below the tab menu like you do.

    I'm on Mame 0.240. If you hit tab, it's under the "Analog Controls" sub-menu.

    • Thanks 1
  11. 5 hours ago, malaki1974 said:

    Thank you for replying. I can’t get the - on the joystick trigger to show (I’ve looked up how to do it but it doesn’t work)

    First delete your old binding. (Del). Then press Enter to input your new binding, for example the right trigger. It will say "Joy 1 RT". Press Enter, then the right trigger again. It will say "Joy 1 RT +". Then press Enter, then the right trigger again. It will say "Joy 1 RT -". You can also play around with the Analog Control sensitivity.

    1473181250_Schermopname(42).thumb.jpg.5e66882d6ae6dc8e0fab35936ef94434.jpg

    135111095_Schermopname(44).thumb.jpg.5b8508b1f803a822997fd456f2c87f46.jpg

    5 hours ago, malaki1974 said:

    could you paste your xml so I can see the format?

    Which xml are you referring to?

    *Edit*

    Let me emphasize the proper sequence for setting up analog controls in Mame. First, configure your controller bindings. You can check if your binding are set up properly in the "Analog Controls" sub-menu. Then calibrate your analog controls in the game's service menu. Those older games are made for older analog input devices with completely different analog input ranges and have to be calibrated to work properly with the analog input ranges of newer input devices.

    • Thanks 1
  12. 5 hours ago, malaki1974 said:

    Not having any luck setting up the controls for Crusin USA with my xbox controller.  So sensitive.  Does anyone have this working on the xbox controller? Can someone send a screen shot of your controller settings in mame?

    Calibrate your controls in the game's service menu.

    1461533648_Schermopname(41).thumb.jpg.821865596b6993f6a7396aaa7fdbbef0.jpg

    Default keys are:

    F2 (enter service menu)

    - (keypad minus, move down)

    F2 (enter to activate)

    Also make sure you have configured a sufficient joystick_deadzone in mame.ini. (mine is set to 0.3)

    My controller settings for Cruis'n USA:

    1076033496_Schermopname(47).thumb.jpg.cff2b9a4b7f749b34224a4bf37aad3f9.jpg

    • Thanks 1
  13. 14 minutes ago, Truest1 said:

    We need to be able to filter by any game, platform that is ( missing)  , 3D box, video snaps, theme video , clear logo stuff like that. So it's easier to know what is left in a collection at console that's missing anything like that.

    Some of that you can already do. Click the drop-down menu on the left side of LaunchBox and select [Games Missing Media].

    1883767756_Schermopname(35).thumb.jpg.188e11016ab159f914d5bc6c2b4c99f1.jpg

  14. 1 hour ago, Ventrex1981 said:

    Thank you Robin… I mean “your friendly AI overlord” 

    Yeah... It probably wasn't a good idea to binge watch Bassie en Adriaan before watching The Matrix. All I can think now, maybe Bassie is The One. 😉

    1 hour ago, Ventrex1981 said:

    Yes I unpacked the zip file and placed them in the system\dc folder. 

    Dreamcast games should be unpacked before launching. Bios files must be placed in the system\dc folder, still zipped.

    1 hour ago, Ventrex1981 said:

    Tomorrow I will check if it is indeed a Dreamcast game, that is the only thing that might be the issue. Will add some more. 

    Dreamcast games usually come in bin/gdi, bin/cue or cdi format. Naomi games are zip or zip/chd and should not be unpacked before launching. (If you unpack a zipped naomi game, it would contain romfiles with names like epr-21868.ic7.)

  15. On 1/11/2022 at 7:42 PM, tenchu2x said:

    fullscreen is working perfect when i play the emulator on the laptop screen . but when i go via HDMI in the TV, the game crashes on fullscreen.

    You need to set up m2emulator with a fullscreen resolution your display accepts. So maybe you use a resolution that works on your laptop screen, but doesn't on your tv. (via HDMI)

  16. 1 hour ago, Ventrex1981 said:

    Starting from Launchbox does nothing (no error, just nothing)

    1 hour ago, Ventrex1981 said:

    Where do i need to place the Naomi.zip file?

    You need dc_boot.bin and place it in the RetroArch\system\dc folder. Look HERE for more information about the bios files you need (and the Flycast core in general).

    Also, if your Dreamcast game is compressed with zip, you need to extract the zip before launching. And make sure your games work in RetroArch directly before adding them to LaunchBox.

    1 hour ago, Ventrex1981 said:

    and when I start the game via RetroArch he says he misses the Naomi.zip file

    Are you sure you actually have a Dreamcast game? Sega Naomi is the equivalent arcade hardware and shares a lot of the same games with the Dreamcast. 

  17. 45 minutes ago, evilmrfrosty said:

    I’ve got the Xbox guide button (button 13) mapped to the ‘Close Active Window’ option, but this doesn’t seem to do anything for this particular emulator.  This functionality works fine in other emulators (MAME for example)

    This seems correct. When you press the button you have entered under "Close the Active Window", LaunchBox sends a virtual key press of the Escape key for emulators that close with Escape natively.

    50 minutes ago, evilmrfrosty said:

    I’ve been trying to use some of the more generic Autohotkey exit emulator scripts in this thread, but not having any luck wondering if I need something more specific to Teknoparrot to force it to close - can anyone help me with the syntax?

    TeknoParrot should close with Escape natively. In the TeknoParrot settings make sure that "Confirmation prompt on exit" is unticked. And that "Global Hotkeys > Exit Game Key" shows the virtual-key code: 0x1B.

    1947933167_Schermopname(34).thumb.jpg.b3ed5eb17e7696b93c8b4bd4acfc7a07.jpg

    0x1B = Escape.

    If this still does not work, you can try the following and see if it makes a difference:

    - Disable Startup- / Shutdown screen for your game or TeknoParrot in general.

    - Check if you run TeknoParrot with Admin rights. --> Run TeknoParrot as normal.

  18. Recently the PS3 XMB (XrossMediaBar), the PS3's user interface, started (partially) working in RPCS3. As of yet you can't launch games from the XMB and only PSN games show up. I expect full functionality will be implemented in future updates. But it may be fun to tinker around with it a little.

    - Update RPCS3 to the latest version.
    - First get the XMB working in RPCS3 directly. Download the latest PS3 firmware from Sony's website and install in RPCS3. (RPCS3 > File > Install Firmware.) Then, File > Boot VSH/XMB.
    - In launchBox add vsh.self, found in rpcs3\dev_flash\vsh\module, as a rom file to your Playstation 3 platform.

    More information about the XMB in RPCS3 here:

    https://www.reddit.com/r/emulation/comments/rv3kzb/rpcs3_vshxmb_now_booting_on_the_master_build/

    • Like 3
  19. Once I had stability issues myself. My pc would randomly BSOD. Sometimes once a week, sometimes twice a day. I had this issue for two years. Turned my pc inside out. Did a fresh install of windows. Reinstalled drivers more than once. Run memtest for 12 hours. Moved drives to different SATA connectors.  Down clock my CPU. Etc.. Nothing worked. Until one day I thought it could be the SATA cable to my system drive. Changed the cable and, Yes. Perfectly stable ever since. Sometimes the cause of stability issues is something trivial like a dodgy SATA cable.

    You could try removing your GPU drivers with DDU. https://www.wagnardsoft.com/forums/viewtopic.php?t=3847 and then installing the most recent one.

  20. Some other options:

    1.) Run a Windows system integrity check. Open a command- or powershell window with admin rights and enter: sfc /scannow

    2.) In the LaunchBox\Updates folder, install your last update over your current build. Be careful to install to the LaunchBox folder and not LaunchBox\LaunchBox (a double folder). Also check if you are on the latest LaunchBox version (that your license permits).

    3.) From your LaunchBox\Updates folder, install LaunchBox to a second location on your PC. Preferably on a different drive. Add some games and emulators. If your second installation does not crash, you know something is wrong with your current build. If it does crash you have to look further.

    In all honesty, I rarely read about LaunchBox or BigBox crashing or rebooting a PC and I never experienced it myself. It's more likely to be either a corruption in your current LaunchBox build, or a Windows or hardware issue.

  21. 55 minutes ago, SLUGIE79 said:

    yes i have it looks like afterburner artwork themes ect is on afterburner 2 

    I just added After Burner to LaunchBox (12.6). For me images download and display just fine. I don't use themes though.

    1419270461_Schermopname(32).thumb.jpg.671a36832c709fc8a0b9e50991c4cbfc.jpg

    The LaunchBox DB ID must show #6236. If it doesn't click the red square with the cross and click "Search for Metadata" again. After that go to Media > Images and click "Download Media" in the bottom right corner.

    622664546_Schermopname(33).thumb.jpg.74662ffaf224ac92d048ec84c4f0a6b7.jpg

×
×
  • Create New...