Jump to content
LaunchBox Community Forums

JoeViking245

Moderators
  • Posts

    3,448
  • Joined

  • Last visited

  • Days Won

    30

Everything posted by JoeViking245

  1. Try removing the double slash ( // ) in your settings. I set mine up a long time ago so I don't remember what each line actually does, but here's what mine looks like.I set it up following the video tutorial in this thread. I didn't do the uuid part. If I recall correctly, that part doesn't need to be done anymore.
  2. lol Thank you sir. I wasn't even thinking about Software List chd's when I started it. I was just happy to get working what I did. I'll have to look into how LaunchBox handles importing MAME chd's to get some pointers. Oh! Wait! It doesn't. lol Though, like doing a mass Software List import, it's possible but will take a bit of finessing. But hey, I'm up for the challenge. (chd's. not Mass Import) No promises.
  3. @slagfart @DOS76 The issue of games not being populated after creating a new Platform should be fixed now. BTW, the issue was a limitation of my programming skills and knowledge. Nothing to do with LaunchBox.
  4. Thanks for the feedback! @slagfart There's an issue (with my plugin, only) when creating a new Platform that it doesn't save it right away (Sometimes. Seems to be hit-or-miss). So when you click Import, there's no Platform to import to. However when the plugin closes as @DOS76 found, it does get created/saved. Just not populated. At that point, you can rerun the plugin and select that Platform. This is either a limitation of creating plugins or the plugin creators' (me) knowledge. I believe the LB staff are working on implementing an updated save-on-the-fly feature for plugins that will resolve this issue. I may also have found a 'hack' that will work. To be determined. Until then..... Before importing to a new Platform, create the new Platform in LaunchBox 1st. Tools. Manage Platforms.... Add.... Then start the plugin and select that Platform in the pull down. Selecting the hash (xml files) folder location does need to be done using the Browse button. Note: The plugin will save the last location used. So after 1st use (assuming your hash folder location doesn't change) you still need to click the Browse button, but then just click OK (or hit Enter). The Choose Platform and Select Emulator need to be done using the pull down combo-box's (vs typing them in). The Rom Source and Destination folders can be manually typed in OR selected using the respective Browse buttons. The ability to have all Software List Consoles/Computers (Platforms) imported at one time isn't going to happen. Too many side affects.
  5. Is this LaunchBox related? Have you looked on stackoverflow.com? Are you typing these sentences? Wouldn't it be easier to just hit Enter than to type "pk"? What does your script look like?
  6. lol I didn't even look there. That's where mine is too.
  7. I think it's built-in/automatic these days, especially with release 0.213. Is there a "hi" directory in your main MAME directory?
  8. I'm probably not the one who knows the answer but (speaking for myself) believe we need some clarification... "When I click on a game to play - nada." I assume you're [double?] clicking in LaunchBox. It should at that point do something, like attempting to launch the game. Does it do something then just goes back to LB? Or... (based on "when I go into Controller Configuration") are you 1st attempting to get it to work directly from RetroArch? (Note: it's highly recommended to make sure the games work directly through the emulator 1st as most problems that arise are within the emulators' setup, and not LaunchBox). Another thing to note is that with most, if not all emulators, you need to have the controller connected and on before starting the emulator.
  9. Try putting it in the "Running AutoHotKey Script" tab for your Fusion emulator. Also, I'm not sure if it's going to know what "A" is, in this case. So just send what you want. $end:: { Send, !{F4} FileCopy, C:\Games\Scripts\FusionSource.ini, c:\Games\Fusion351\fusion.ini ,1 }
  10. That makes total sense. LB launches the script then it's the script that launches the emulator/game. After that, this script is done. LB sees that and thinks, they're done playing, show the exit screen and return. Which you don't see because your playing a game. So, along those lines and just totally guessing here.... in the 'Emulator' script, launch the emulator with RunWait. RunWait, %MAME% "%RomDir%\%1%", , Hide Exitapp
  11. WinActivate, LaunchBox Send, ^b
  12. Arcade Platform... you can have it show per game (like @neil9000 said). Loading screen: Pause screen: For the other Platforms, I just hard coded the 1 controller image. On this one (Atari 2600) the background kind of obscures it. Here's a better one (NES)
  13. If you have MAME revision 0.201 (it says MAME 0.201 at the top when you open it), open the command prompt in your MAME directory and type mame64 -listfull >AllNames.txt This will create a txt file called AllNames (change that to whatever you want) that looks like I believe that is what you're looking for.
  14. If you set your script to be the executable for an emulator, it will pass the rom name as %1%.This is one I made that will show a splash screen of the game specific controls (.png file), then launch the game. Say I have this setup as my Arcade platforms' emulator and I go to start Donkey Kong. LaunchBox will pass to the AHK script dkong as %1%. Note that, if both check boxes were unchecked, %1% would be "D:\LaunchBox\Games\Arcade\dkong.zip" Also, I'm not sure, but possibly depending how it's used in the script, it may be %1 vs %1%. Don't know off hand. Confirmed. It's %1% Now, if you were to put your script (text) under the "Running AutoHotKey Script" tab...,...LaunchBox will NOT pass anything to %1%. Well, in fact, it's only to the Emulator Application the %1% will be passed. So it won't be passed to a script you use in the Additional Apps for a game either. I think there was something passed as %2% also but have no recollection what it was. Then again, could be thinking of something completely different. ? Confirmed. I was thinking about something completely different. So I still contend, LaunchBox can be utilized to start ANY program. You just may have to concoct a pseudo program (i.e. AHK script) to act as a middle man in obscure cases.
  15. It's been a while since I set it up, but as of yesterday afternoon Steam still works through LB. At least for me. Think of it as LaunchBox is a "shortcut" to whatever program you're launching. In this case, a shortcut(s) to your Steam game(s).
  16. See if this works mame64 a800 -cart
  17. @Retro808 In that case, as you can tell, I'm continuing to learn and understand it myself. ?
  18. I'm sure there're many ways to do the same thing. Retro808's script will work (as he confirmed) as long as the emu doesn't change versions. With SetTitleMatchMode set to "2", you could just have "SameBoy" in the parenthesis. Then you're for sure covered. Alternate: Process,Wait,sameboy.exe ;wait here until 'my_program.exe' is running Sleep,2000 ;wait to make sure it's loaded (2 seconds. Can be changed) WinActivate,ahk_exe sameboy.exe ;set (make sure) my_program is the active window send, ^f ;Ctrl F Again, same result.
  19. @ItchyRobot I recall doing something in the registry (quite a while back). But it was for VPX in general vs. per specific tables. I think it had to do with direct draw. Not sure if it helps any, but here's my Video Options setup.
  20. As for your videos and wheel images (Clear Logos), if they're the same name as the table_name.vpx, I'm pretty sure you can just drop those files into the respective Image folders and they'll show up. (in LaunchBox, F5 to refresh images). Aw heck! (just looked at the video) You do have a pin cab. Nice!! DMD and all. Sweet!
  21. @ItchyRobot I just tested a couple tables in BigBox without any exit problems. Are you running VP in fullscreen or windowed? @Casdha Easier? I'm thinking no. Reason being you need to setup PinballX and then setup BigBox to launch PinballX. To me it seems kind of a redundancy and a step backwards from the reason for having LaunchBox/BigBox. There may even already be a Theme similar to your video available for LaunchBox/BigBox. These sorta show my simple setup.
  22. @Lapo Getting a code is as simple as taking a pict of your PC (maybe have FX3 up on the monitor) and sending it in with a request. It's quick, easy, free and will guarantee to make your LaunchBox experience more enjoyable. Mine took about 12 hours to get.
  23. If all the Platform images are still in your ../LaunchBox/Images/ folder, try Tools, Refresh All Images.
  24. Ok. So I may have guessed wrong on SF3. [blush] Depends on which SF3 rom you're using. sfiii3u.zip is one of the US clone roms and uses the cap-3s-2.chd file You can find info here http://adb.arcadeitalia.net/?mame=sfiii3u scroll down to where it says Files and click/expand "Show Mame required Files". sfiii3.zip is the European (parent rom) release. The small sized zip (129kb compressed) file is the rom and the larger sized same-name.zip file will be the chd. The other (newer) US release is sfiii3ur1.zip which needs cap-33s-1.chd http://adb.arcadeitalia.net/?mame=sfiii3ur1
×
×
  • Create New...