Basonline Posted May 26, 2020 Share Posted May 26, 2020 (edited) I saw a cool nes 3d emulator called 3dSen. http://www.geodstudio.net/ I add the emulator to launchbox but i don't know which command lines i have to add for the emulator to open the games automatically. Can somebody halp me with this? Edited May 26, 2020 by Basonline Quote Link to comment Share on other sites More sharing options...
SiriusVI Posted June 14, 2020 Share Posted June 14, 2020 I would like to know the same thing.The full version of 3dsen is supposed to be released on steam this week. Quote Link to comment Share on other sites More sharing options...
Retro808 Posted June 14, 2020 Share Posted June 14, 2020 According to the developer on the 3DSen discord the initial release will not have command line support. Quote Link to comment Share on other sites More sharing options...
SiriusVI Posted June 16, 2020 Share Posted June 16, 2020 On 6/14/2020 at 8:37 PM, Retro808 said: According to the developer on the 3DSen discord the initial release will not have command line support. Oh no =( Quote Link to comment Share on other sites More sharing options...
SteveT79 Posted June 19, 2020 Share Posted June 19, 2020 So far no command line support, will wait for it though. Quote Link to comment Share on other sites More sharing options...
Dolce Ardore Posted June 19, 2020 Share Posted June 19, 2020 Sadly it won't run at all when launched outside of Steam. Not sure if this is a DRM thing or what. Quote Link to comment Share on other sites More sharing options...
SteveT79 Posted August 11, 2020 Share Posted August 11, 2020 Just saw this update on steam. steam -applaunch 1147940 -id=[profile id] Quote Link to comment Share on other sites More sharing options...
SteveT79 Posted August 11, 2020 Share Posted August 11, 2020 Just found that [profile id] is a number from 1 - N. Doesn't seem to correspond to row/column, so have to map each number to the game. Now just need to find a way to integrate this into an AHK script for launchbox... and kill 3dSen.exe on esc. Quote Link to comment Share on other sites More sharing options...
SteveT79 Posted August 11, 2020 Share Posted August 11, 2020 (edited) This works and takes 1 argument. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. ; #Warn ; Enable warnings to assist with detecting common errors. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. #SingleInstance force #MaxHotKeysPerInterval 200 Run,"C:\Program Files (x86)\steam\steam.exe" -applaunch 1147940 -id=%1% Esc:: Process, Close, 3dSen.exe ExitApp Return Edited August 11, 2020 by SteveT79 1 Quote Link to comment Share on other sites More sharing options...
Retro808 Posted August 11, 2020 Share Posted August 11, 2020 I recommend changing Process, Close any where you are using that command in a script. It is a hard close function and can cause issues in some emulators or games. WinClose, ahk_exe 3dSen.exe Would be a better shutdown call. Quote Link to comment Share on other sites More sharing options...
SteveT79 Posted August 12, 2020 Share Posted August 12, 2020 Thanks, that causes the menu to show for a second before shutdown, either way it seems fine. So far set it up like this, I could set it as an emulator and just pass 3 I suppose. Quote Link to comment Share on other sites More sharing options...
baboo1969 Posted August 20, 2020 Share Posted August 20, 2020 Hi guys, in Steam library, you can read the Q&A about the last release 0.8.4, the answer is here! - Create a new emulator in Launchbox for 3DSen, select "steam.exe" as emulator... (The local one on your hard disk). - Specify these command line for this emulator "- applaunch 1147940 -id=". - I've runned 3DSen and set all games for each profile (Game section) and be sure they all works. - In Launchbox, for each of these games, replace the "rom path + rom name" by the ID number in the list (see joined to this message). You'll have to do this for each game you want to play with 3dsen! (Each Launchbox tiles) Now, when you click on a game, it starts steam.exe with required parameters to run the gamestraight away, you'll see for a short period the 3dsen menu loading the game, and it will start! ... i'm currently working on how to exit with the autyokey script! Regards 3dSen profile id.txt 2 1 Quote Link to comment Share on other sites More sharing options...
SiriusVI Posted November 1, 2020 Share Posted November 1, 2020 On 8/20/2020 at 8:30 PM, baboo1969 said: Hi guys, in Steam library, you can read the Q&A about the last release 0.8.4, the answer is here! - Create a new emulator in Launchbox for 3DSen, select "steam.exe" as emulator... (The local one on your hard disk). - Specify these command line for this emulator "- applaunch 1147940 -id=". - I've runned 3DSen and set all games for each profile (Game section) and be sure they all works. - In Launchbox, for each of these games, replace the "rom path + rom name" by the ID number in the list (see joined to this message). You'll have to do this for each game you want to play with 3dsen! (Each Launchbox tiles) Now, when you click on a game, it starts steam.exe with required parameters to run the gamestraight away, you'll see for a short period the 3dsen menu loading the game, and it will start! ... i'm currently working on how to exit with the autyokey script! Regards 3dSen profile id.txt 1.24 kB · 14 downloads Thank you so much ? Quote Link to comment Share on other sites More sharing options...
cleverest Posted May 10, 2021 Share Posted May 10, 2021 On 8/20/2020 at 12:30 PM, baboo1969 said: Hi guys, in Steam library, you can read the Q&A about the last release 0.8.4, the answer is here! - Create a new emulator in Launchbox for 3DSen, select "steam.exe" as emulator... (The local one on your hard disk). - Specify these command line for this emulator "- applaunch 1147940 -id=". - I've runned 3DSen and set all games for each profile (Game section) and be sure they all works. - In Launchbox, for each of these games, replace the "rom path + rom name" by the ID number in the list (see joined to this message). You'll have to do this for each game you want to play with 3dsen! (Each Launchbox tiles) Now, when you click on a game, it starts steam.exe with required parameters to run the gamestraight away, you'll see for a short period the 3dsen menu loading the game, and it will start! ... i'm currently working on how to exit with the autyokey script! Regards 3dSen profile id.txt 1.24 kB · 36 downloads Did you ever figure out how to exit? Thanks...will be trying to set up what you wrote here shortly... Quote Link to comment Share on other sites More sharing options...
giodude Posted November 11, 2021 Share Posted November 11, 2021 On 5/10/2021 at 12:59 PM, cleverest said: Did you ever figure out how to exit? Thanks...will be trying to set up what you wrote here shortly... Not sure if i'm too late, but I ended up finding a solution. Here's my code: Run,"C:\Program Files (x86)\steam\steam.exe" -applaunch 1147940 -id=%1% Process, Wait, 3dSenVR.exe Process, WaitClose, 3dSenVR.exe ExitApp Esc:: Process, Close, 3dSenVR.exe Process, Close, vrmonitor.exe ExitApp Return Quote Link to comment Share on other sites More sharing options...
cliffyb73 Posted June 30, 2022 Share Posted June 30, 2022 Sorry to sound like a noob but I've tried all of the above and can't get this to run. Steam opens then nothing happens. I don't suppose anyone that has this working can provide screenshots of what to type in and where? Thanks in advance. Quote Link to comment Share on other sites More sharing options...
baboo1969 Posted June 30, 2022 Share Posted June 30, 2022 Sorry, but my solution is 2 yers old now... maybe something changed! I'm actually rebuilding my arcade cabinet, and i'll finish with the steam part... If i have the answer, i'll post it! 1 Quote Link to comment Share on other sites More sharing options...
cliffyb73 Posted June 30, 2022 Share Posted June 30, 2022 11 hours ago, baboo1969 said: Sorry, but my solution is 2 yers old now... maybe something changed! I'm actually rebuilding my arcade cabinet, and i'll finish with the steam part... If i have the answer, i'll post it! You're right , with the program changes since, it's probs why this solution doesn't work for me now. Thanks for replying and if you do find anything new out please let me know. Much appreciated. Quote Link to comment Share on other sites More sharing options...
tallpr24 Posted February 20, 2023 Share Posted February 20, 2023 im also looking to get this working, has any one been able to recently? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.