Krakatoa
Members-
Posts
53 -
Joined
-
Last visited
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
Krakatoa's Achievements
16-Bit Artificial Intelligence (4/7)
6
Reputation
-
Here you go. log 2024-03-17 09-24-46.txtSetupLog 2024-03-17 09-25-16.txt Object reference not set to an instance of an object. App: LaunchBox Version: 13.12 Theme: Default Type: System.NullReferenceException Site: System.ValueTuple`3[System.Collections.ObjectModel.ObservableCollection`1[BezelLauncher.Model.AllPlatforms],System.Int32,System.Int32] GetXML() Source: BezelLauncher at BezelLauncher.ViewModel.BezelLauncherSetup_VM.GetXML() at BezelLauncher.BezelLauncherSetup.Window_Loaded(Object sender, RoutedEventArgs e) at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised) at System.Windows.UIElement.RaiseEventImpl(DependencyObject sender, RoutedEventArgs args) at System.Windows.BroadcastEventHelper.BroadcastEvent(DependencyObject root, RoutedEvent routedEvent) at System.Windows.BroadcastEventHelper.BroadcastLoadedEvent(Object root) at System.Windows.Media.MediaContext.FireLoadedPendingCallbacks() at System.Windows.Media.MediaContext.FireInvokeOnRenderCallbacks() at System.Windows.Media.MediaContext.RenderMessageHandlerCore(Object resizedCompositionTarget) at System.Windows.Media.MediaContext.RenderMessageHandler(Object resizedCompositionTarget) at System.Windows.Media.MediaContext.Resize(ICompositionTarget resizedCompositionTarget) at System.Windows.Interop.HwndTarget.OnResize() at System.Windows.Interop.HwndTarget.HandleMessage(WindowMessage msg, IntPtr wparam, IntPtr lparam) at System.Windows.Interop.HwndSource.HwndTargetFilterMessage(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled) at MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled) at MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o) at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs) at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler) Recent Log:SetupLog 2024-03-17 10-38-16.txtlog 2024-03-17 10-38-07.txt 10:38:16 AM Exception
-
Hi, What's a simple script I can use to send numpad keys after 20 seconds? for example send the following numpad press 4 5 6 7 8 9 after 20 seconds of the script running.
-
I was incorrect, it boots into what I assume is the N64DD OS, basically Mario running around a large N. The emulator is set up correctly in retroarch, but i am wondering if you need to pass a subsystem to load?
-
Anyone get N64DD working with Launchbox? The games run if I launch directly from retroach.
-
You are awesome, thank you!! BTW these games are awesome.
-
When Mario GP and GP2 launch and the Nintendo screen shows you need to press F1 or F2 to proceed, F1 is for GP1 and F2 is for GP2, my goal was to create an AHK script that would simulate a keyboard press, so I don't have to keep a keyboard in racing cab. I think the script it correct, but for some reason its not working with Dolphin
-
thanks, for some reason, its still not working. Maybe there's a special way needed for the Dolphin emulator
-
Anyone help with a script? I am trying to have a Joystick button press simulate pressing F1 and F2 this is what I have, but its not working. Joy4:: If GetKeyState("Joy4") { SetKeyDelay, -1, 110 Send {F1},{F2} } Return