-
Posts
612 -
Joined
-
Last visited
Content Type
Profiles
Forums
Articles
Downloads
Gallery
Blogs
Everything posted by Sbaby
-
should i enter all the keys and all buttons? I do not want to . have you tried my latest method? I also enter 30 times the same input but it runs only one game and everything goes perfectly Keeping bigbox minimized solves all the problems, I was just wondering if there was another method other than the one I found which involves using two scripts. But it works!
-
I have found an unclean solution, but it works the cause is the lack of minimization of BB, so I use a second script that starts with administrator privileges and makes BB (or LB) minimize. This allows you to press any key on the joypad after the principal choice and nothing happens underneath or above. I also added a script that I already used for the mame, which for safety silences BB during the execution of the script and turns on again at the end of the script (when steam closes). It seems to me that everything works, now I accept tips to make everything cleaner, for example I would also like to insert the BLOCKINPUT ON and BLOCKINPUT OFF (for the keyboard) as administrator in the second script but I don't know how to do it for activate it and deactivate it at the right times, I tried with the usual #IFWINEXIST but not works. In any case, for the moment this is working as I keep a clean desktop and being BB minimized any key or joypad pressure does not give interceptions ------------------------------- This is BoxMin.ahk ๐ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; if not A_IsAdmin Run *RunAs "%A_ScriptFullPath%" Sleep 3000 WinMinimize, ahk_exe BigBox.exe, WinMinimize, ahk_exe LaunchBox.exe, run, "M:\Giochi\Utility\Launchbox\ThirdParty\SoundVolumeView\SoundVolumeView.exe" /Mute LaunchBox run, "M:\Giochi\Utility\Launchbox\ThirdParty\SoundVolumeView\SoundVolumeView.exe" /Mute BigBox WinMinimize, ahk_exe BigBox.exe, WinMinimize, ahk_exe LaunchBox.exe, ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; These are the changes to SbabySteamLauncher.ahk ๐ ;*************************Enter TcNo-Acc-Switcher Parameters************************* TcNoPath = M:\Giochi\Utility\TcNo-Acc-Switcher TcNoAccount1ID = 00000000000000000 TcNoAccount2ID = 00000000000000000 ;****************************************************************************************************** #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. StringSplit, ScriptNameArray, A_ScriptName,. #SingleInstance force Image = Themes\Image_start.png Image2 = Themes\Image_account1.png Image3 = Themes\Image_account2.png Image4 = Themes\Image_exit.png Emulator = "%TcNoPath%\TcNo-Acc-Switcher.exe" Options = Zw%A_ScreenWidth% Zh%A_ScreenHeight% ;Options = Zw1920 Zh1080 Run, BoxMin.ahk SoundPlay, Audio\0_failatuascelta.mp3 SplashImage,1:%Image%,b %Options%,,,MySplash WinMove, MySplash,,0,0, %A_ScreenWidth%, %A_ScreenHeight% MouseMove, 1920, 1080 #IfWinExist MySplash { 1Joy3:: 2Joy3:: $1:: $v:: { SoundBeep, 600, 100 BlockInput On Sleep, 120 SoundPlay, Audio\1_account1scelto.mp3 MouseMove, 1920, 1080 SplashImage,2:%Image2%,b %Options%,,,Splash2 WinMove, Splash2,,0,0, %A_ScreenWidth%, %A_ScreenHeight% WinWait, Splash2 SplashImage,1:off SetTimer, Image2, on, RunWait, %Emulator% +s:%TcNoAccount1ID% +open steam://rungameid/%1% Process, Wait, gameoverlayui.exe Sleep, 1500 SoundPlay, Audio\4_giocoavviato.mp3 BlockInput Off Process, WaitClose, gameoverlayui.exe SoundPlay, Audio\5_uscitadalgioco.mp3 BlockInput On Run, "C:\Program Files (x86)\Steam\steam.exe" -shutdown sleep 50 Gosub, Exit } 1Joy4:: 2Joy4:: $2:: $b:: { SoundBeep, 600, 100 BlockInput On Sleep, 120 SoundPlay, Audio\2_account2scelto.mp3 MouseMove, 1920, 1080 SplashImage,3:%Image3%,b %Options%,,,Splash3 WinMove, Splash3,,0,0, %A_ScreenWidth%, %A_ScreenHeight% WinWait, Splash3 SplashImage,1:off SetTimer, Image3, on, RunWait, %Emulator% +s:%TcNoAccount2ID% +open steam://rungameid/%1% Process, Wait, gameoverlayui.exe Sleep, 1500 SoundPlay, Audio\4_giocoavviato.mp3 BlockInput Off Process, WaitClose, gameoverlayui.exe SoundPlay, Audio\5_uscitadalgioco.mp3 BlockInput On Run, "C:\Program Files (x86)\Steam\steam.exe" -shutdown sleep 50 Gosub, Exit } 1Joy2:: 2Joy2:: $Esc:: { SplashImage, 1:off SoundBeep, 600, 100 Gosub, Exit2 } } Exit: SplashImage,4:%Image4%,b %Options%,,,Splash4 WinMove, Splash4,,0,0, %A_ScreenWidth%, %A_ScreenHeight% WinWait, Splash4 Process, Wait, steam.exe Process, WaitClose, steam.exe WinActivate, ahk_exe LaunchBox.exe, WinMaximize, ahk_exe LaunchBox.exe, WinActivate, ahk_exe BigBox.exe, WinMaximize, ahk_exe BigBox.exe, run, "M:\Giochi\Utility\Launchbox\ThirdParty\SoundVolumeView\SoundVolumeView.exe" /UnMute BigBox run, "M:\Giochi\Utility\Launchbox\ThirdParty\SoundVolumeView\SoundVolumeView.exe" /UnMute LaunchBox BlockInput Off ExitApp Exit2: SplashImage,4:%Image4%,b %Options%,,,Splash4 WinMove, Splash4,,0,0, %A_ScreenWidth%, %A_ScreenHeight% WinWait, Splash4 WinActivate, ahk_exe LaunchBox.exe, WinMaximize, ahk_exe LaunchBox.exe, WinActivate, ahk_exe BigBox.exe, WinMaximize, ahk_exe BigBox.exe, run, "M:\Giochi\Utility\Launchbox\ThirdParty\SoundVolumeView\SoundVolumeView.exe" /UnMute BigBox run, "M:\Giochi\Utility\Launchbox\ThirdParty\SoundVolumeView\SoundVolumeView.exe" /UnMute LaunchBox ExitApp Image2: Sleep, 9000 SplashImage, 2:off SetTimer, Image2, off, return Image3: Sleep, 9000 SplashImage, 3:off SetTimer, Image3, off, return Image4: Sleep, 5000 SplashImage, 4:off SetTimer, Image4, off, return
-
I tried to invent solutions you suggested but I can't, I think I'm not capable, I need help on the structure, I'm not a programmer
-
ok thanks but that line serves otherwise the situation gets worse because it allows you to make the same choice several times. My problem is that the script works but during loading game the inputs are intercepted below in the bigbox menu, bigbox does not minimize, it stays under the image but should actually be minimized
-
In questo video le cose funzionano bene ma a volte capita che continuo a sentire la musica del bigbox in sottofondo e quindi anche gli ingressi vengono intercettati dal bigbox durante il caricamento del gioco Quando ciรฒ accade i problemi sono: 1) Il comando blockinput non funziona se non avvio lo script in modalitร amministratore, ma allo stesso tempo se lo avvio come amministratore si verificano altri problemi con steam 2) Non so inserire i comandi del joypad alternativi per il blocco in quanto li ho giร inseriti per la scelta degli account 534922221_Ilmiovideo.mp4 Nota: le rom di vapore sono file di testo falsi senza estensione che hanno come nome il numero di codice di Steam, ad esempio Tekken 7 : 389730 Emulatore: https://github.com/TcNobo/TcNo-Acc-Switcher Script ahk : SbabySteamLauncher.ahk
-
I have a question regarding input blocking during a game load of my steam script, it works fine but if I inadvertently press the buttons after making my choice (while loading the game) It often sends inputs to bigbox, which instead has to sit down and shut up, and that's not good. I found a solution by entering script "BlockInput, On" while loading, and "BlockInput, Off" as soon as the game starts . This works fine with keyboard and mouse inputs (administrator run) but I can't find a solution if I use the joypad. I would like to enable or disable the joystick buttons. How can I do ? Thanks
-
๐คฃwhat a bad luck !!! It's time to do a hardware upgrade Joe ! ๐ However, since windows 11 came out I preferred to install it and to keep win10 for safety, even if in reality I almost never needed it, I have a dual boot, one with the old windows 10 and one with windows 11, both with the same username, I use launchbox and bigbox on both operating systems without problems ... I must say however that this update really makes a difference and works even better than the estimated win10. At this point i think i will make the definitive transition to win 11 ๐ช I have this pc for some years Intel (R) Core (TM) i7-8700K CPU @ 3.70GHz 3.70 GHz 16.0 GB Nvidia GeForce RTX 2060
-
https://www.gamesave-manager.com/ Hi, I wanted to know if it exists or is it possible to integrate this save system in launchbox! It would be great, I always use it externally but it would be much more comfortable with an automatic feature inside LB ๐
-
ok, with this it works fine! Thank you ๐ But...I had already made these settings a long time ago, after a substantial Windows update it has removed all these particular checks from me also from other particular games to which I had set it. I ask you if there is a way with a script or command line that allows you to assign these parameters to the file at rom startup
-
Sorry, I had removed it to test, but even checking the custom resolution the situation does not change ! ...now... Teknoparrot without BigBox is perfect 1920x1080 ๐ With BigBox it doesn't work fine ๐
-
mario kart with teknoparrot works fine in fullscreen 1920x1080 If I start it with launchbox or bigbox the window is cut and has a lower resolution, what could be the reason? all other tp games are fine with lb
-
-
Use this with LB: https://github.com/TcNobo/TcNo-Acc-Switcher
-
Okkkk ! Thanks ! Works fine ๐
-
Only problem: if I switch from launchbox to bigbox or vice versa I lose the script and desktop return to original normal mode
-
At the moment it didn't work but I added these two lines and it works fine now . It is also perfect with Windows 11. Thank you very much, very welcome ๐ ; To hide Icons, taskbar, minimize all windows, set wallpaper null, set background black ToggleEverything := HideDesktop() Runwait, "C:\Launchbox\BigBox.exe" Process, Wait, BigBox.exe Process, WaitClose, BigBox.exe ; To restore everything RestoreDesktop(ToggleEverything[1], ToggleEverything[2])
-
I didn't understand what I should do ... Right now if I run 1.ahk everything works fine and everything goes black Then if I run 2.ahk it restores everything except original wallpaper how should i correct them? 1.ahk2.ahk
-
Wow, that looks great and very interesting ๐ฎ I did a test on a virtual machine with windows 10. I used your script ToggleAllLibrary.ahk I changed it by removing the semicolons from ToggleEverything: = HideDesktop () and magically it's all black ( This is great ) Then I used a second identical script but removing the semicolons from RestoreDesktop (ToggleEverything [1], ToggleEverything [2]) This brought me everything back to normal...icons, bar, etc except for the desktop background which remained black, instead it should have brought me back the original wallpaper, where did I go wrong? ๐ง
-
I would like to set a Windows desktop wallpaper when launchbox starts. This is for those milliseconds when I occasionally can't cover the desktop for some game loads (They are few but it happens to me). But then I would like the Windows 11 wallpaper to return when launchbox / bigbox is closed. Is it possible to do this with ahk script?
-
thank you very very much โค๏ธ๐๐๐๐ช๐๐๐
-
Great ! ๐ I should figure out how to marry my TcNo-Acc-Switcher multiaccount choice with your ini manager. I'll do some rehearsals as soon as I can. thank you...
- 34 replies
-
ok when and if you want to share your work I will be happy to try it โบ๏ธ
- 34 replies
-
Where do you implement it? in native launchbox? Rocket Launcher I find it very cumbersome Instead with my script you just need to remember to create a rom (text file) with the same number you see when you import with launchbox. If you want to implement the executable of each game it must be an automatic thing but otherwise too much trouble for those who have many games
- 34 replies
-
Ds4Windows autoprofile doesn't work when used via launchbox
Sbaby replied to Sbaby's topic in Troubleshooting
I solved the problem by creating a new "APPLICATIONS" platform and putting DS4Windows in there as if it were a game. If you start Ds4Windows from BigBox, the automatic profiles start working again. Don't ask me why this happens but this is how it works