Impossible to do mouse clicks behind fade?

Dime333

Active member
RL Member
Dime, did you read the control click command documentation that I sent to you?

ControlClick coordinates refers to the window and not the screen.

You are probably making the mistake of using the screen coordinates instead of using the window coordinates as in your example you simple copied the values from the mouseclick to the control click line.

You are right. That's the mistake I'm making. I'll try to get it to work using other coordinates. As far as I can remember, I have never understood any of the documentation on any AHK command. I think it's hard as hell to understand.
 

Dime333

Active member
RL Member
try this for example:

Code:
winmove, ahk_class SunAwtFrame,, 0, 0, 900, 580
ControlClick, x520 y360, ahk_class SunAwtFrame

edit: nevermind, just try this instead:
Code:
ControlClick, , ahk_class SunAwtFrame
ControlSend,, {Enter}, ahk_class SunAwtFrame

I don't think the enter command will work since it has to be mouse clicked.
 

Dime333

Active member
RL Member
Thank you guys for your effort in trying to help. None of your suggestions worked for me, Bleasby. But moving the window was a smart move so that the screen coordinates and the window coordinates are the same. Now I can get it to work with these coordinates with mouseclick.

sleep, 4000
winmove, ahk_class SunAwtFrame,, 0, 0, 900, 580
MouseClick, left, 450, 540

ExitScript:
ExitApp

But when I use ControlClick, nothing happens.

sleep, 4000
winmove, ahk_class SunAwtFrame,, 0, 0, 900, 580
ControlClick, x540 y450, ahk_class SunAwtFrame

ExitScript:
ExitApp

I also tried switching the x and y coordinates just in case, but no luck.

sleep, 4000
winmove, ahk_class SunAwtFrame,, 0, 0, 900, 580
ControlClick, x450 y540, ahk_class SunAwtFrame

ExitScript:
ExitApp


I think I'm close to getting it to work. Any more ideas?
 

bleasby

RocketLauncher Developer
Developer
I downloaded a "dubious" source minecraft just to test this. Let me know if it works for you:

Firstly, you shouldn't use sleeps to wait for sending the command.
Just replace the sleep by a winwait line.

Secondly, I couldn't find the propper message to avoid the mouse click command. Also, control click and other AHK commands didn't seam to work so I made the mouse press directly with post messages.

Here is the code that worked for me:

Code:
winwait, ahk_class SunAwtFrame
winmove, ahk_class SunAwtFrame,, 0, 0, 640, 480
x:=320 , y:=440 
PostMessage, 0x201, 0x0001, ((y<<16)^x), , ahk_class SunAwtFrame ;WM_LBUTTONDOWN:=0x201
PostMessage, 0x202 , 0, ((y<<16)^x), , ahk_class SunAwtFrame ;WM_LBUTTONUP:=0x202
ExitApp

I hope it works for you also.
 

Ninja2bseen

Member
RL Member
I added this as a post launch script and it didn't seem to work for me. Als the ahk file seems to open and I have to manually close it after closing the game

winwait, ahk_class SunAwtFrame
winmove, ahk_class SunAwtFrame,, 0, 0, 640, 480
x:=320 , y:=440
PostMessage, 0x201, 0x0001, ((y<<16)^x), , ahk_class SunAwtFrame ;WM_LBUTTONDOWN:=0x201
PostMessage, 0x202 , 0, ((y<<16)^x), , ahk_class SunAwtFrame ;WM_LBUTTONUP:=0x202
ExitApp
 

Dime333

Active member
RL Member
I downloaded a "dubious" source minecraft just to test this. Let me know if it works for you:

Firstly, you shouldn't use sleeps to wait for sending the command.
Just replace the sleep by a winwait line.

Secondly, I couldn't find the propper message to avoid the mouse click command. Also, control click and other AHK commands didn't seam to work so I made the mouse press directly with post messages.

Here is the code that worked for me:

Code:
winwait, ahk_class SunAwtFrame
winmove, ahk_class SunAwtFrame,, 0, 0, 640, 480
x:=320 , y:=440 
PostMessage, 0x201, 0x0001, ((y<<16)^x), , ahk_class SunAwtFrame ;WM_LBUTTONDOWN:=0x201
PostMessage, 0x202 , 0, ((y<<16)^x), , ahk_class SunAwtFrame ;WM_LBUTTONUP:=0x202
ExitApp

I hope it works for you also.

Sorry, but this isn't working for me. I'm just doing a little guessing here, but this line:
winmove, ahk_class SunAwtFrame,, 0, 0, 640, 480
Does that mean that the window is 640x480 for you? Because you were spot on in your last post (winmove, ahk_class SunAwtFrame,, 0, 0, 900, 580)
My window is 900x580 so I tried to change this:
x:=320 , y:=440
to this
x:=450 , y:=540
and just in case, also this
x:=540 , y:=450

But still nothing happens after the window has been moved.
But maby I'm totally wrong with these assumptions.
 

Dime333

Active member
RL Member
Dime, look at the docs for that function to see what it's doing:

http://ahkscript.org/docs/commands/WinMove.htm

So it means bleasby is resizing the window to 640x480.

OK. Thanks. The window doesn't seem to resize though. Should I be able to resize the window to any size? When I replace the last two numbers (640x480), the window just ends up in another place in the same size.
Also, the window is not in the upper left corner now with bleasby's latest script. But maby it isn't supposed to.
 

djvj

Administrator
Staff member
Developer
I'm kinda surprised bleasby is attempting that as I don't see why he would want to change the dimensions at all. The default should be used. 0,0 means he is moving it to the top left corner of your desktop though which makes sense when using coordinates for mouse clicks. You could just remove the 540,480 part and the script would do the same if the window never gets resized.

If the window isn't moving, that would be why it's not working. You don't need RL to test that script, just have that window on your screen, and run the script manually. You could also try compiling it and running as admin to see if there is a UAC issue it's not working as intended.
 

bleasby

RocketLauncher Developer
Developer
I don't have the money to buy the game.
But on the "version" that I tested the window is definitely resizable. Therefore, I added the winmove command to make sure that the window is always at the same position and size, no matter what the user used on the last time he run the game. Then the mouse press relative coordinates should work to press the button.
If your window doesn't move or resizes, your game version is different than mine, and it is just a matter of adjusting the x and y coordinates to click the button.
Also as djvj said, you should test the script outside of RL. Maybe it is something else going on that does not allow it to work on your computer.
 

Dime333

Active member
RL Member
I don't have the money to buy the game.
But on the "version" that I tested the window is definitely resizable. Therefore, I added the winmove command to make sure that the window is always at the same position and size, no matter what the user used on the last time he run the game. Then the mouse press relative coordinates should work to press the button.
If your window doesn't move or resizes, your game version is different than mine, and it is just a matter of adjusting the x and y coordinates to click the button.
Also as djvj said, you should test the script outside of RL. Maybe it is something else going on that does not allow it to work on your computer.

The window is resizable. And your first script moved it to the upper left corner. But the script that worked for you does not. I'll do some more testing later. Thanks again, man. I really appreciate your help.
 

djvj

Administrator
Staff member
Developer
What version minecraft are you running? Also what launcher are you using?
 
Last edited:

djvj

Administrator
Staff member
Developer
This works for me, make sure you are using this version launcher (v2.3.0.16) and it's fully automated:

Code:
; Minecraft Launcher
; Author: djvj
; Make sure to use Extreme Launcher v2.3.0.16. Any other version may not work.


WinWait, Extreme Launcher
WinGet, ID, ID, Extreme Launcher    ; get hwnd of launcher
WinGet, launcherControlList, ControlList, ahk_id %ID%
Loop, Parse, launcherControlList, `n
{    ControlGetText, controlText, %A_LoopField%
    If (controlText = "Play") {
        playControl := A_LoopField
        Break
    }
}
ControlClick, %playControl%, ahk_id %ID%,,Left
WinWait, Minecraft ahk_class LWJGL
ExitApp

Does not need to be compiled nor run as admin over here. If need be, you can remove the last winwait line, not really necessary since PCLauncher should handle that. If you find fade exiting too early, then leave it in.

Basically the other launcher is using a type of window that you can't read controls or get their text, this one you can read all that so it can be automated to do whatever you want.
 

Attachments

  • Untitled.png
    Untitled.png
    45.5 KB · Views: 11
Last edited:

Dime333

Active member
RL Member
This works for me, make sure you are using this version launcher (v2.3.0.16) and it's fully automated:

Code:
; Minecraft Launcher
; Author: djvj
; Make sure to use Extreme Launcher v2.3.0.16. Any other version may not work.


WinWait, Extreme Launcher
WinGet, ID, ID, Extreme Launcher    ; get hwnd of launcher
WinGet, launcherControlList, ControlList, ahk_id %ID%
Loop, Parse, launcherControlList, `n
{    ControlGetText, controlText, %A_LoopField%
    If (controlText = "Play") {
        playControl := A_LoopField
        Break
    }
}
ControlClick, %playControl%, ahk_id %ID%,,Left
WinWait, Minecraft ahk_class LWJGL
ExitApp

Does not need to be compiled nor run as admin over here. If need be, you can remove the last winwait line, not really necessary since PCLauncher should handle that. If you find fade exiting too early, then leave it in.

Basically the other launcher is using a type of window that you can't read controls or get their text, this one you can read all that so it can be automated to do whatever you want.

Awesome, man. Thanks alot. I'll give it a try and get back to you.
 

Ninja2bseen

Member
RL Member
I tried this running as a prescript then a post script and neither worked. Here is what my log looks like when things run normally and I have to push play manually

Code:
[code]
03:58:31:846 | RL |     INFO  | +N/A   | Main - RocketLauncher v1.0.1.3 (www.rlauncher.com)
03:58:31:964 | RL |     INFO  | +125   | Main - System Specs:
					RocketLauncher Dir: E:\Arcade-PC\hyperspin\RocketLauncher
					RocketLauncher is: 32-bit
					OS: Microsoft Windows 7 Professional
					SKU: Professional
					Total Memory: 3583.39 MB
					Free Memory: 1573.41 MB
					Used Memory: 2009.984 MB
					SystemType: 64-bit
					Physical Processors: 1
					Logical Processors: 2
					GPU 1 Name: ATI Radeon HD 4200
					GPU 1 RAM: 368.00 MB
					GPU 1 Driver Version: 8.910.0.0
					Sound 1 Device: High Definition Audio Device
					Sound 1 Status: Enabled
					OS Language: English_United_States
					OS Admin Status: Yes
					Latest .Net Version: v4.0.30319
					Monitor #1 (\\.\DISPLAY1): 1600x1200 (1600x1200 work) [Landscape] (Primary)
					Current AHK Desktop Width: 1600
					Current AHK Desktop Height: 1200
					AutoHotkey Path:
					AHK Version: 1.1.09.04
					Unicode: No
03:58:31:967 | RL |     INFO  | +0     | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\RocketLauncher.exe exists
03:58:31:971 | RL |   DEBUG1  | +0     | CheckFile - Attributes:
					FileDescription         	RocketLauncher
					FileVersion             	1.0.1.3
					LegalCopyright          	�2015 RocketLauncher
					ProductName             	djvj's one swell guy!
					ProductVersion          	1.1.9.4
					CompanyName             	Your favorite Front End companion! Visit us @ www.rlauncher.com
					File Size:			2061824 bytes
					Created:			7/29/2015 - 3:06:04 AM
					Modified:			8/23/2015 - 11:07:43 PM
03:58:31:998 | RL |     INFO  | +31    | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\Module Extensions\BinHexRW.ahk exists
03:58:31:011 | RL |   DEBUG1  | +16    | CRC Check - CRC matches, this is an official unedited Library.
03:58:32:020 | RL |   DEBUG1  | +0     | CheckFile - Attributes:
					File Size:			4961 bytes
					Created:			7/29/2015 - 3:27:44 AM
					Modified:			7/29/2015 - 3:27:45 AM
03:58:32:023 | RL |     INFO  | +0     | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\Module Extensions\BlockInput.exe exists
03:58:32:032 | RL |   DEBUG1  | +15    | CheckFile - Attributes:
					FileDescription
					FileVersion             	1.1.09.04
					InternalName
					OriginalFilename
					ProductName
					ProductVersion          	1.1.09.04
					File Size:			657920 bytes
					Created:			2/22/2014 - 4:28:22 AM
					Modified:			2/22/2014 - 4:22:02 AM
03:58:32:035 | RL |     INFO  | +0     | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\Module Extensions\CLR_L.ahk exists
03:58:32:048 | RL |   DEBUG1  | +16    | CRC Check - CRC matches, this is an official unedited Extension.
03:58:32:055 | RL |   DEBUG1  | +15    | CheckFile - Attributes:
					File Size:			5474 bytes
					Created:			8/23/2015 - 11:06:25 PM
					Modified:			8/24/2015 - 10:30:01 PM
03:58:32:064 | RL |     INFO  | +0     | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\Module Extensions\Control_AniGif.ahk exists
03:58:32:076 | RL |   DEBUG1  | +16    | CRC Check - CRC matches, this is an official unedited Extension.
03:58:32:082 | RL |   DEBUG1  | +0     | CheckFile - Attributes:
					File Size:			5716 bytes
					Created:			2/22/2014 - 3:39:09 AM
					Modified:			2/22/2014 - 4:22:02 AM
03:58:32:087 | RL |     INFO  | +16    | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\Module Extensions\gdip.ahk exists
03:58:32:106 | RL |   DEBUG1  | +15    | CRC Check - CRC matches, this is an official unedited Extension.
03:58:32:113 | RL |   DEBUG1  | +0     | CheckFile - Attributes:
					File Size:			88789 bytes
					Created:			2/22/2014 - 3:39:10 AM
					Modified:			2/22/2014 - 4:22:02 AM
03:58:32:117 | RL |     INFO  | +16    | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\Module Extensions\gdip_alt.ahk exists
03:58:32:148 | RL |   DEBUG1  | +15    | CRC Check - CRC matches, this is an official unedited Library.
03:58:32:156 | RL |   DEBUG1  | +16    | CheckFile - Attributes:
					File Size:			5895 bytes
					Created:			7/29/2015 - 3:28:04 AM
					Modified:			7/29/2015 - 3:28:04 AM
03:58:32:160 | RL |   DEBUG1  | +0     | gdip_alt.ahk Version: 1.0.2
03:58:32:165 | RL |     INFO  | +16    | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\Module Extensions\gsdll32.dll exists
03:58:32:170 | RL |   DEBUG1  | +0     | CheckFile - Attributes:
					File Size:			13090816 bytes
					Created:			2/22/2014 - 3:39:17 AM
					Modified:			7/29/2015 - 3:27:28 AM
03:58:32:185 | RL |     INFO  | +15    | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\Module Extensions\itextsharp.dll exists
03:58:32:192 | RL |   DEBUG1  | +0     | CheckFile - Attributes:
					FileDescription         	iTextSharp
					FileVersion             	5.4.2.0
					InternalName            	itextsharp.dll
					LegalCopyright          	Copyright (C) 1999-2013 by Bruno Lowagie and Paulo Soares. All Rights Reserved.
					OriginalFilename        	itextsharp.dll
					ProductName             	iTextSharp
					ProductVersion          	5.4.2.0
					CompanyName             	1T3XT BVBA
					File Size:			3743744 bytes
					Created:			2/22/2014 - 3:39:18 AM
					Modified:			2/22/2014 - 4:22:03 AM
03:58:32:196 | RL |     INFO  | +16    | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\Module Extensions\Java.ahk exists
03:58:32:207 | RL |   DEBUG1  | +0     | CRC Check - CRC matches, this is an official unedited Library.
03:58:32:213 | RL |   DEBUG1  | +15    | CheckFile - Attributes:
					File Size:			7841 bytes
					Created:			7/29/2015 - 3:27:08 AM
					Modified:			7/29/2015 - 3:27:08 AM
03:58:32:217 | RL |   DEBUG1  | +0     | Java.ahk Version: 1.0.0
03:58:32:222 | RL |     INFO  | +0     | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\Module Extensions\JSON.ahk exists
03:58:32:232 | RL |   DEBUG1  | +16    | CRC Check - CRC matches, this is an official unedited Extension.
03:58:32:237 | RL |   DEBUG1  | +0     | CheckFile - Attributes:
					File Size:			9203 bytes
					Created:			2/22/2014 - 3:39:10 AM
					Modified:			2/22/2014 - 4:22:02 AM
03:58:32:241 | RL |     INFO  | +0     | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\Module Extensions\Origin.ahk exists
03:58:32:259 | RL |   DEBUG1  | +31    | CRC Check - CRC matches, this is an official unedited Library.
03:58:32:263 | RL |   DEBUG1  | +0     | CheckFile - Attributes:
					File Size:			4904 bytes
					Created:			7/29/2015 - 3:27:24 AM
					Modified:			7/29/2015 - 3:27:24 AM
03:58:32:266 | RL |   DEBUG1  | +0     | Origin.ahk Version: 1.0.2
03:58:32:270 | RL |     INFO  | +0     | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\Module Extensions\RegRW64.ahk exists
03:58:32:278 | RL |   DEBUG1  | +16    | CRC Check - CRC matches, this is an official unedited Extension.
03:58:32:285 | RL |   DEBUG1  | +0     | CheckFile - Attributes:
					File Size:			6915 bytes
					Created:			7/29/2015 - 3:27:38 AM
					Modified:			7/29/2015 - 3:27:38 AM
03:58:32:287 | RL |     INFO  | +0     | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\Module Extensions\RIni.ahk exists
03:58:32:296 | RL |   DEBUG1  | +15    | CRC Check - CRC matches, this is an official unedited Extension.
03:58:32:308 | RL |   DEBUG1  | +16    | CheckFile - Attributes:
					File Size:			67561 bytes
					Created:			2/22/2014 - 3:39:11 AM
					Modified:			2/22/2014 - 4:22:02 AM
03:58:32:311 | RL |     INFO  | +0     | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\Module Extensions\SevenZipSharp.dll exists
03:58:32:315 | RL |   DEBUG1  | +0     | CheckFile - Attributes:
					FileDescription         	SevenZipSharp
					FileVersion             	0.64.5717.6837
					InternalName            	SevenZipSharp.dll
					LegalCopyright          	Copyright (C) Markovtsev Vadim 2009, 2010, licenced under LGPLv3
					OriginalFilename        	SevenZipSharp.dll
					ProductName             	SevenZipSharp
					ProductVersion          	0.64.5717.6837
					CompanyName             	Markovtsev Vadim
					File Size:			167424 bytes
					Created:			7/6/2015 - 1:27:54 AM
					Modified:			9/29/2015 - 3:32:38 AM
03:58:32:319 | RL |     INFO  | +0     | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\Module Extensions\Steam.ahk exists
03:58:32:326 | RL |   DEBUG1  | +16    | CRC Check - CRC matches, this is an official unedited Library.
03:58:32:330 | RL |   DEBUG1  | +0     | CheckFile - Attributes:
					File Size:			5347 bytes
					Created:			7/29/2015 - 3:27:57 AM
					Modified:			7/29/2015 - 3:27:57 AM
03:58:32:333 | RL |   DEBUG1  | +0     | Steam.ahk Version: 1.0.2
03:58:32:336 | RL |     INFO  | +15    | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\Module Extensions\VA.ahk exists
03:58:32:344 | RL |   DEBUG1  | +0     | CRC Check - CRC matches, this is an official unedited Extension.
03:58:32:348 | RL |   DEBUG1  | +0     | CheckFile - Attributes:
					File Size:			34688 bytes
					Created:			2/22/2014 - 3:39:11 AM
					Modified:			2/22/2014 - 4:22:02 AM
03:58:32:351 | RL |     INFO  | +16    | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\Module Extensions\VA_Extension.ahk exists
03:58:32:382 | RL |   DEBUG1  | +15    | CRC Check - CRC matches, this is an official unedited Library.
03:58:32:391 | RL |   DEBUG1  | +16    | CheckFile - Attributes:
					File Size:			3833 bytes
					Created:			7/29/2015 - 3:27:10 AM
					Modified:			7/29/2015 - 3:27:10 AM
03:58:32:396 | RL |   DEBUG1  | +0     | VA_Extension.ahk Version: 1.0.1
03:58:32:400 | RL |     INFO  | +16    | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\Lib\7z.ahk exists
03:58:32:413 | RL |   DEBUG1  | +0     | CRC Check - CRC matches, this is an official unedited Library.
03:58:32:424 | RL |   DEBUG1  | +15    | CheckFile - Attributes:
					File Size:			29013 bytes
					Created:			7/29/2015 - 3:26:48 AM
					Modified:			8/23/2015 - 11:07:46 PM
03:58:32:434 | RL |   DEBUG1  | +16    | 7z.ahk Version: 1.0.1
03:58:32:438 | RL |     INFO  | +0     | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\Lib\Bezel.ahk exists
03:58:32:457 | RL |   DEBUG1  | +15    | CRC Check - CRC matches, this is an official unedited Library.
03:58:32:463 | RL |   DEBUG1  | +16    | CheckFile - Attributes:
					File Size:			102587 bytes
					Created:			2/22/2014 - 3:39:09 AM
					Modified:			7/29/2015 - 3:27:20 AM
03:58:32:467 | RL |   DEBUG1  | +0     | Bezel.ahk Version: 1.1.2
03:58:32:472 | RL |     INFO  | +0     | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\Lib\Fade.ahk exists
03:58:32:484 | RL |   DEBUG1  | +16    | CRC Check - CRC matches, this is an official unedited Library.
03:58:32:490 | RL |   DEBUG1  | +0     | CheckFile - Attributes:
					File Size:			38048 bytes
					Created:			2/22/2014 - 3:39:10 AM
					Modified:			9/13/2015 - 10:13:53 PM
03:58:32:498 | RL |   DEBUG1  | +15    | Fade.ahk Version: 1.1.2
03:58:32:502 | RL |     INFO  | +0     | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\Lib\Fade Init.ahk exists
03:58:32:538 | RL |   DEBUG1  | +31    | CRC Check - CRC matches, this is an official unedited Library.
03:58:32:547 | RL |   DEBUG1  | +16    | CheckFile - Attributes:
					File Size:			999 bytes
					Created:			2/22/2014 - 3:39:10 AM
					Modified:			7/29/2015 - 3:27:06 AM
03:58:32:552 | RL |   DEBUG1  | +0     | Fade Init.ahk Version: 1.0.1
03:58:32:574 | RL |     INFO  | +31    | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\Lib\Fade Animations.ahk exists
03:58:32:592 | RL |   DEBUG1  | +16    | CRC Check - CRC matches, this is an official unedited Library.
03:58:32:599 | RL |   DEBUG1  | +0     | CheckFile - Attributes:
					File Size:			79882 bytes
					Created:			7/12/2015 - 12:51:51 AM
					Modified:			8/23/2015 - 11:07:40 PM
03:58:32:604 | RL |   DEBUG1  | +15    | Fade Animations.ahk Version: 1.1.8
03:58:32:608 | RL |     INFO  | +0     | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\Lib\Pause.ahk exists
03:58:32:664 | RL |   DEBUG1  | +63    | CRC Check - CRC matches, this is an official unedited Library.
03:58:32:676 | RL |   DEBUG1  | +0     | CheckFile - Attributes:
					File Size:			392698 bytes
					Created:			7/29/2015 - 3:27:41 AM
					Modified:			8/23/2015 - 11:07:35 PM
03:58:32:686 | RL |   DEBUG1  | +15    | Pause.ahk Version: 1.1.4
03:58:32:690 | RL |     INFO  | +0     | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\Lib\Pause Init.ahk exists
03:58:32:701 | RL |   DEBUG1  | +16    | CRC Check - CRC matches, this is an official unedited Library.
03:58:32:710 | RL |   DEBUG1  | +16    | CheckFile - Attributes:
					File Size:			553 bytes
					Created:			7/29/2015 - 3:27:54 AM
					Modified:			8/23/2015 - 11:07:35 PM
03:58:32:720 | RL |   DEBUG1  | +0     | Pause Init.ahk Version: 1.0.3
03:58:32:725 | RL |     INFO  | +0     | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\Lib\Keymapper.ahk exists
03:58:32:761 | RL |   DEBUG1  | +46    | CRC Check - CRC matches, this is an official unedited Library.
03:58:32:768 | RL |   DEBUG1  | +0     | CheckFile - Attributes:
					File Size:			33453 bytes
					Created:			2/22/2014 - 3:39:10 AM
					Modified:			7/29/2015 - 3:27:16 AM
03:58:32:772 | RL |   DEBUG1  | +0     | Keymapper.ahk Version: 1.1.2
03:58:32:797 | RL |     INFO  | +32    | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\Lib\Keymapper Init.ahk exists
03:58:32:809 | RL |   DEBUG1  | +15    | CRC Check - CRC matches, this is an official unedited Library.
03:58:32:821 | RL |   DEBUG1  | +16    | CheckFile - Attributes:
					File Size:			3461 bytes
					Created:			2/22/2014 - 3:39:10 AM
					Modified:			7/29/2015 - 3:27:14 AM
03:58:32:827 | RL |   DEBUG1  | +0     | Keymapper Init.ahk Version: 1.0.4
03:58:32:832 | RL |     INFO  | +0     | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\Lib\MultiGame.ahk exists
03:58:32:844 | RL |   DEBUG1  | +15    | CRC Check - CRC matches, this is an official unedited Library.
03:58:32:855 | RL |   DEBUG1  | +16    | CheckFile - Attributes:
					File Size:			40753 bytes
					Created:			2/22/2014 - 3:39:11 AM
					Modified:			8/23/2015 - 11:07:40 PM
03:58:32:860 | RL |   DEBUG1  | +0     | MultiGame.ahk Version: 1.0.8
03:58:32:864 | RL |     INFO  | +0     | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\Lib\MultiGame Init.ahk exists
03:58:32:892 | RL |   DEBUG1  | +31    | CRC Check - CRC matches, this is an official unedited Library.
03:58:32:907 | RL |   DEBUG1  | +16    | CheckFile - Attributes:
					File Size:			161 bytes
					Created:			2/22/2014 - 3:39:11 AM
					Modified:			2/22/2014 - 4:21:57 AM
03:58:32:912 | RL |   DEBUG1  | +0     | MultiGame Init.ahk Version: 1.0.0
03:58:32:916 | RL |     INFO  | +15    | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\Lib\MultiPlayer.ahk exists
03:58:32:957 | RL |   DEBUG1  | +32    | CRC Check - CRC matches, this is an official unedited Library.
03:58:32:964 | RL |   DEBUG1  | +15    | CheckFile - Attributes:
					File Size:			58770 bytes
					Created:			7/29/2015 - 3:26:58 AM
					Modified:			7/29/2015 - 3:26:58 AM
03:58:32:968 | RL |   DEBUG1  | +0     | MultiPlayer.ahk Version: 1.0.6
03:58:32:974 | RL |     INFO  | +0     | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\Lib\Password.ahk exists
03:58:32:987 | RL |   DEBUG1  | +16    | CRC Check - CRC matches, this is an official unedited Library.
03:58:32:998 | RL |   DEBUG1  | +15    | CheckFile - Attributes:
					File Size:			10025 bytes
					Created:			7/29/2015 - 3:27:03 AM
					Modified:			8/23/2015 - 11:07:50 PM
03:58:32:002 | RL |   DEBUG1  | +0     | Password.ahk Version: 1.0.2
03:58:33:008 | RL |     INFO  | +16    | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\Lib\Rom Mapping Launch Menu.ahk exists
03:58:33:026 | RL |   DEBUG1  | +16    | CRC Check - CRC matches, this is an official unedited Library.
03:58:33:032 | RL |   DEBUG1  | +0     | CheckFile - Attributes:
					File Size:			73772 bytes
					Created:			2/22/2014 - 3:39:11 AM
					Modified:			7/29/2015 - 3:27:36 AM
03:58:33:037 | RL |   DEBUG1  | +0     | Rom Mapping Launch Menu.ahk Version: 1.0.5
03:58:33:042 | RL |     INFO  | +15    | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\Lib\Shared.ahk exists
03:58:33:061 | RL |   DEBUG1  | +16    | CRC Check - CRC matches, this is an official unedited Library.
03:58:33:067 | RL |   DEBUG1  | +0     | CheckFile - Attributes:
					File Size:			116503 bytes
					Created:			2/22/2014 - 3:39:11 AM
					Modified:			8/23/2015 - 11:07:46 PM
03:58:33:073 | RL |   DEBUG1  | +15    | Shared.ahk Version: 1.3.2
03:58:33:076 | RL |     INFO  | +0     | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\Lib\Statistics.ahk exists
03:58:33:088 | RL |   DEBUG1  | +16    | CRC Check - CRC matches, this is an official unedited Library.
03:58:33:094 | RL |   DEBUG1  | +0     | CheckFile - Attributes:
					File Size:			26143 bytes
					Created:			2/22/2014 - 3:39:11 AM
					Modified:			7/29/2015 - 3:28:07 AM
03:58:33:099 | RL |   DEBUG1  | +0     | Statistics.ahk Version: 1.0.3
03:58:33:102 | RL |     INFO  | +16    | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\Lib\Statistics Init.ahk exists
03:58:33:113 | RL |   DEBUG1  | +0     | CRC Check - CRC matches, this is an official unedited Library.
03:58:33:121 | RL |   DEBUG1  | +15    | CheckFile - Attributes:
					File Size:			33 bytes
					Created:			2/22/2014 - 3:39:11 AM
					Modified:			7/29/2015 - 3:27:33 AM
03:58:33:125 | RL |   DEBUG1  | +0     | Statistics Init.ahk Version: 1.0.1
03:58:33:130 | RL |     INFO  | +0     | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\Lib\Virtual Drive.ahk exists
03:58:33:143 | RL |   DEBUG1  | +16    | CRC Check - CRC matches, this is an official unedited Library.
03:58:33:154 | RL |   DEBUG1  | +15    | CheckFile - Attributes:
					File Size:			18333 bytes
					Created:			7/29/2015 - 3:28:14 AM
					Modified:			9/21/2015 - 12:44:25 AM
03:58:33:158 | RL |   DEBUG1  | +0     | Virtual Drive.ahk Version: 1.0.2
03:58:33:163 | RL |     INFO  | +16    | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\Lib\XHotkey.ahk exists
03:58:33:177 | RL |   DEBUG1  | +0     | CRC Check - CRC matches, this is an official unedited Library.
03:58:33:184 | RL |   DEBUG1  | +16    | CheckFile - Attributes:
					File Size:			26540 bytes
					Created:			2/22/2014 - 3:39:12 AM
					Modified:			8/23/2015 - 11:07:39 PM
03:58:33:188 | RL |   DEBUG1  | +0     | XHotkey.ahk Version: 1.0.4
03:58:33:197 | RL |     INFO  | +15    | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\Lib\XHotkey Init.ahk exists
03:58:33:209 | RL |   DEBUG1  | +16    | CRC Check - CRC matches, this is an official unedited Library.
03:58:33:221 | RL |   DEBUG1  | +0     | CheckFile - Attributes:
					File Size:			1063 bytes
					Created:			2/22/2014 - 3:39:12 AM
					Modified:			8/23/2015 - 11:07:53 PM
03:58:33:226 | RL |   DEBUG1  | +15    | XHotkey Init.ahk Version: 1.0.2
03:58:33:230 | RL |   DEBUG1  | +0     | Main - Raw CLI received: "-s PC Games -r Minecraft -f E:\Arcade-PC\Hyperspin\hyperspin.exe -p HyperSpin -c 1"
03:58:33:234 | RL |   DEBUG1  | +0     | Main - Received this dbName with no path via CLI: "Minecraft"
03:58:33:241 | RL |   DEBUG1  | +16    | Main - dbName: Minecraft
03:58:33:245 | RL |     INFO  | +0     | Main - Loading Front End Plugin: "HyperSpin"
03:58:33:252 | RL |     INFO  | +0     | Main - RocketLauncher received "PC Games" and "Minecraft"
03:58:33:287 | RL |     INFO  | +47    | Main - Did not find a "E:\Arcade-PC\hyperspin\RocketLauncher\Settings\PC Games\Game Options.ini" file, skipping any game-specific options.
03:58:33:292 | RL |     INFO  | +0     | Main - Minecraft is using the default emulator: PCLauncher
03:58:33:296 | RL |     INFO  | +0     | Main - Checking for a [PCLauncher] section in E:\Arcade-PC\hyperspin\RocketLauncher\Settings\PC Games\Emulators.ini
03:58:33:302 | RL |     INFO  | +0     | Main - Found [PCLauncher] in E:\Arcade-PC\hyperspin\RocketLauncher\Settings\PC Games\Emulators.ini
03:58:33:306 | RL |     INFO  | +15    | CheckFile - Checking if E:\Arcade-PC\Hyperspin\RocketLauncher\Modules\PCLauncher\PCLauncher.ahk exists
03:58:33:310 | RL |   DEBUG1  | +0     | CheckFile - Attributes:
					File Size:			16099 bytes
					Created:			2/22/2014 - 3:39:11 AM
					Modified:			9/12/2015 - 12:00:36 AM
03:58:33:318 | RL |     INFO  | +0     | Main - CRC Check - CRC matches, this is an official unedited module.
03:58:33:322 | RL |     INFO  | +16    | Main - Minecraft will use module: E:\Arcade-PC\Hyperspin\RocketLauncher\Modules\PCLauncher\PCLauncher.ahk
03:58:33:353 | RL |     INFO  | +31    | Main - Using SkipChecks method "Rom and Emu" or emuName = "PCLauncher".
03:58:33:357 | RL |     INFO  | +0     | Main - INI Keys read
03:58:33:361 | RL |     INFO  | +0     | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\Module Extensions\7-Zip\7zFM.exe exists
03:58:33:375 | RL |   DEBUG1  | +16    | CheckFile - Attributes:
					FileDescription         	7-Zip File Manager
					FileVersion             	9.20
					InternalName            	7zFM
					LegalCopyright          	Copyright (c) 1999-2010 Igor Pavlov
					OriginalFilename        	7zFM.exe
					ProductName             	7-Zip
					ProductVersion          	9.20
					CompanyName             	Igor Pavlov
					File Size:			421888 bytes
					Created:			6/10/2015 - 1:21:31 PM
					Modified:			11/18/2010 - 12:09:00 PM
03:58:33:385 | RL |     INFO  | +15    | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\Module Extensions\7-Zip\7z.dll exists
03:58:33:389 | RL |   DEBUG1  | +0     | CheckFile - Attributes:
					FileDescription         	7z Standalone Plugin
					FileVersion             	9.20
					InternalName            	7za
					LegalCopyright          	Copyright (c) 1999-2010 Igor Pavlov
					OriginalFilename        	7za.dll
					ProductName             	7-Zip
					ProductVersion          	9.20
					CompanyName             	Igor Pavlov
					File Size:			914432 bytes
					Created:			6/10/2015 - 1:21:31 PM
					Modified:			11/18/2010 - 12:27:30 PM
03:58:33:397 | RL |     INFO  | +16    | CreateRomMapTable - Started
03:58:33:400 | RL |  WARNING  | +0     | AltNameExistCheck - Could not find "Minecraft" in any of your Rom Paths with any defined Rom Extensions
03:58:33:408 | RL |     INFO  | +0     | CreateRomMapTable - Ended, No mapping inis found.
03:58:33:419 | RL |     INFO  | +16    | Main - "Minecraft" does not qualify for MultiGame. Only roms with any of these strings in their name are acceptable: (Disc,(Disk,(Cart,(Tape,(Cassette,(Part,(Side
03:58:33:424 | RL |  WARNING  | +0     | Main - SkipChecks is enabled and set to: Rom and Emu
03:58:33:428 | RL |     INFO  | +15    | CheckPaths - Started
03:58:33:432 | RL |   DEBUG1  | +0     | CheckPaths - Current romName:
03:58:33:437 | RL |   DEBUG1  | +0     | CheckPaths - Current romPath:
03:58:33:441 | RL |   DEBUG1  | +0     | CheckPaths - Current romExtension:
03:58:33:452 | RL |     INFO  | +16    | CheckPaths - Ended
03:58:33:458 | RL |     INFO  | +0     | BuildScript - User Variables:
					;----------------------------------------------------------------------------
					; INJECTED VARIABLES
					;----------------------------------------------------------------------------

					#NoTrayIcon
					#InstallKeybdHook
					DetectHiddenWindows, ON
					SetTitleMatchMode, 2
					SendMode, Event
					0 = 10
					pluginPath = E:\Arcade-PC\hyperspin\RocketLauncher\Plugins
					pluginName = HyperSpin
					pluginExt = .plugin
					contextOnExit = 1
					rlMode =
					rlTitle = RocketLauncher
					rlVersion = 1.0.1.3
					rlAuthor = djvj
					rlURL = www.rlauncher.com
					langFile = E:\Arcade-PC\hyperspin\RocketLauncher\Data\Language\Localization.ini
					primMonitor = 1
					frontendPID =
					frontendPath = E:\Arcade-PC\Hyperspin
					frontendExe = hyperspin.exe
					frontendExt = exe
					frontendName = hyperspin
					frontendDrive = E:
					exitEmulatorKey = H:1joy7&1joy8|H:2joy7&2joy8|1&5
					restoreFE = false
					exitScriptKey = ~q & ~s
					toggleCursorKey = ~e & ~t
					emuFullPath =
					emuPath =
					emuName = PCLauncher
					emuExt =
					romPath =
					romPathFromIni =
					romExtension =
					romExtensionOrig =
					romExtensions =
					executable =
					systemDbName = PC Games
					systemName = PC Games
					dbPath =
					dbName = Minecraft
					dbExt =
					romName =
					romMapPath = E:\Arcade-PC\hyperspin\RocketLauncher\Settings\PC Games\Rom Mapping
					romMappingEnabled = true
					romMappingLaunchMenuEnabled = false
					romMappingFirstMatchingExt = false
					romMappingShowAllRomsInArchive = true
					romMappingNumberOfGamesByScreen = 7
					romMappingMenuWidth = 300
					romMappingMenuMargin = 50
					romMappingTextFont = Bebas Neue
					romMappingTextOptions = cFFFFFFFF r4 s40 Bold
					romMappingDisabledTextColor = ff888888
					romMappingTextSizeDifference = 5
					romMappingTextMargin = 10
					romMappingTitleTextFont = Bebas Neue
					romMappingTitleTextOptions = cFFFFFFFF r4 s60 Bold
					romMappingTitle2TextFont = Bebas Neue
					romMappingTitle2TextOptions = cFFFFFFFF r4 s15 Bold
					romMappingGameInfoTextFont = Bebas Neue
					romMappingGameInfoTextOptions = cFFFFFFFF r4 s15 Regular
					romMappingBackgroundBrush = aa000000
					romMappingColumnBrush = 33000000
					romMappingButtonBrush1 = 6f000000
					romMappingButtonBrush2 = 33000000
					romMappingBackgroundAlign = Stretch and Lose Aspect
					romMappingMenuFlagWidth = 40
					romMappingMenuFlagSeparation = 5
					romMappingDefaultMenuList = FullList
					romMappingSingleFilteredRomAutomaticLaunch = false
					altArchiveNameOnly =
					altRomNameOnly =
					altArchiveAndRomName =
					altArchiveAndManyRomNames =
					altRomNamesOnly =
					romMapScenario =
					skipchecks = Rom and Emu
					romMatchExt = true
					blockInputTime = 0
					blockInputFile = E:\Arcade-PC\hyperspin\RocketLauncher\Module Extensions\BlockInput.exe
					errorLevelReporting = false
					lockLaunch = false
					lockLaunchGame =
					screenRotationAngle = 0
					screenRotationAngleGame =
					logFile = E:\Arcade-PC\hyperspin\RocketLauncher\RocketLauncher.log
					logLabel := ["    INFO"," WARNING","   ERROR","  DEBUG1","  DEBUG2"]
					logLevel = 10
					logShowDebugConsole = false
					logIncludeModule = true
					logIncludeFileProperties = true
					logShowCommandWindow = false
					logCommandWindow = false
					rlDebugConsoleStdout =
					sysLang = English_United_States
					sysType = 64-bit
					broadcastWindowTitle =
					navUpKey = Up
					navDownKey = Down
					navLeftKey = Left
					navRightKey = Right
					navSelectKey = H|s
					navP2UpKey = Numpad8|R
					navP2DownKey = Numpad2|F
					navP2LeftKey = Numpad4|D
					navP2RightKey = Numpad6|G
					navP2SelectKey = NumpadEnter|S
					originalWidth = 1600
					originalHeight = 1200
					vdEnabled = true
					vdFullPath = E:\Arcade-PC\hyperspin\zips\tools\daemon tools\DAEMON Tools Lite\DTLite.exe
					vdUseSCSI = true
					vdDriveLetter =
					vdAddDrive = true
					servoStikEnabled = false
					servoStikExitMode = false
					ledblinkyEnabled = false
					ledblinkyFullPath =
					ledblinkyProfilePath = E:\Arcade-PC\Hyperspin\RocketLauncher\Profiles\LEDBlinky
					ledblinkyRLProfile = E:\Arcade-PC\Hyperspin\RocketLauncher\Profiles\LEDBlinky\RocketLauncher
					emuIdleShutdown = 900000
					launchPasswordHash = zQJHGuIBD6bt2rEoPola0Rbrl81Ci3lgdm1mxbcm+QfXe+SDPHV0ig==
					hideCursor = false
					hideEmu = false
					hideFE = false
					fadeIn = true
					fadeInDuration = 500
					fadeInTransitionAnimation = DefaultAnimateFadeIn
					fadeInDelay = 3000
					fadeInExitDelay = 0
					fadeOutExitDelay = 500
					fadeOut = false
					fadeOutExtraScreen = false
					fadeOutDuration = 500
					fadeOutTransitionAnimation = DefaultAnimateFadeOut
					fadeOutDelay = 2000
					fadeLyrInterpolation = 7
					fadeMuteEmulator = false
					fadeUseBackgrounds = false
					fadeWidthBaseRes = 1920
					fadeHeightBaseRes = 1080
					fadeLyr1Color = FF000000
					fadeLyr1AlignImage = Stretch and Lose Aspect
					fadeLyr2Pos = Stretch and Lose Aspect
					fadeLyr2X = 0
					fadeLyr2Y = 0
					fadeLyr2W =
					fadeLyr2H =
					fadeLyr2Adjust = 1
					fadeLyr2PicPad = 0
					fadeLyr2Prefix = Extra Layer 1 - Console
					fadeLyr3Pos = Center
					fadeLyr3X = 450
					fadeLyr3Y = 450
					fadeLyr3W =
					fadeLyr3H =
					fadeLyr3Adjust = 1
					fadeLyr3PicPad = 0
					fadeLyr3Speed = 1500
					fadeLyr3Animation = DefaultFadeAnimation
					fadeLyr37zAnimation = DefaultFadeAnimation
					fadeLyr3Type = imageandbar
					fadeLyr3ImgFollow7zProgress = true
					fadeLyr3Repeat = 1
					fadeLyr3BackImageTransparency = 30
					fadeLyr3StaticPos = No Alignment
					fadeLyr3StaticX = 0
					fadeLyr3StaticY = 870|1575
					fadeLyr3StaticW =
					fadeLyr3StaticH =
					fadeLyr3StaticAdjust = 1
					fadeLyr3StaticPicPad = 0
					fadeLyr3StaticPrefix = Info Bar
					fadeLyr4Adjust = 1
					fadeLyr4X = 1715|952
					fadeLyr4Y = 720|1596
					fadeLyr4W = 200
					fadeLyr4H =
					fadeLyr4Pos = Top Right Corner
					fadeLyr4FPS = 50
					fadeLyr4PicPad = 0
					fadeTranspGifColor = FFFFFF
					fadeBarWindow = Image
					fadeBarWindowX =
					fadeBarWindowY =
					fadeBarWindowW = 900
					fadeBarWindowH =
					fadeBarWindowR = 30
					fadeBarWindowM = 30
					fadeBarWindowHatchStyle = 8
					fadeBar = 7zOnly
					fadeBarNon7zProgressTime = 0
					fadeBarBack = true
					fadeBarBackColor = FF555555
					fadeBarH = 30
					fadeBarR = 10
					fadeBarColor = DD00BFFF
					fadeBarHatchStyle = 8
					fadeBarPercentageText = true
					fadeBarInfoText = true
					fadeBarXOffset = 0
					fadeBarYOffset = 150
					fadeRomInfoDescription = filtered text
					fadeRomInfoSystemName = image
					fadeRomInfoYear = text with label
					fadeRomInfoManufacturer = text with label
					fadeRomInfoGenre = disabled
					fadeRomInfoRating = image
					fadeRomInfoOrder = Description|SystemName|Year|Manufacturer|Genre|Rating
					fadeRomInfoTextPlacement = User Defined
					fadeRomInfoTextMargin = 7
					fadeRomInfoText1Options = w1600|787 h90 x165 y870|1575 cFFE1E1E1 r4 s75 Left Regular
					fadeRomInfoText2Options = w400 x8 y15 cFF555555 r4 s45 Bold
					fadeRomInfoText3Options = w310 x165 y960|1665 cFFE1E1E1 r4 s66 Left Regular
					fadeRomInfoText4Options = w1305|492 h66 x460 y960|1665 cFFE1E1E1 r4 s66 Left Regular
					fadeRomInfoText5Options = cFF555555 r4 s42 Bold
					fadeRomInfoText6Options = h135 x15 y885|1590 cFFCFCFCA r4 s120 Regular
					fadeStats_Number_of_Times_Played = disabled
					fadeStats_Last_Time_Played = disabled
					fadeStats_Average_Time_Played = text with label
					fadeStats_Total_Time_Played = text with label
					fadeStats_System_Total_Played_Time = text with label
					fadeStats_Total_Global_Played_Time = text with label
					fadeStatsInfoOrder = Number_of_Times_Played|Last_Time_Played|Average_Time_Played|Total_Time_Played|System_Total_Played_Time|Total_Global_Played_Time
					fadeStatsInfoTextPlacement = bottomRight
					fadeStatsInfoTextMargin = 7
					fadeStatsInfoText1Options = cFFB4B4B4 r4 s22 Bold
					fadeStatsInfoText2Options = cFFB4B4B4 r4 s22 Bold
					fadeStatsInfoText3Options = cFFB4B4B4 r4 s22 Bold
					fadeStatsInfoText4Options = cFFB4B4B4 r4 s22 Bold
					fadeStatsInfoText5Options = cFFB4B4B4 r4 s22 Bold
					fadeStatsInfoText6Options = cFFB4B4B4 r4 s22 Bold
					fadeText1X = 0
					fadeText1Y = 0
					fadeText1Options = cFFB4B4B4 r4 s30 Right Bold
					fadeText1 = Loading Game
					fadeText2X = 0
					fadeText2Y = 0
					fadeText2Options = cFFB4B4B4 r4 s30 Right Bold
					fadeText2 = Extraction Complete, Ready
					fadeText3 = Loading Game
					fadeText4 = Loading Complete
					fadeFont = Bebas Neue
					fadeSystemAndRomLayersOnly = false
					fadeExtractionTime = Labeled Remaining Time
					fadeExtractionTimeTextX = 0
					fadeExtractionTimeTextY = 0
					fadeExtractionTimeTextOptions = cFF555555 r4 s20 Bold
					fadeInterruptKey = Esc
					detectFadeErrorEnabled = false
					fadeImgPath = E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade
					RLDataPath = E:\Arcade-PC\hyperspin\RocketLauncher\Data
					RLMediaPath = E:\Arcade-PC\Hyperspin\RocketLauncher\Media
					RLErrSoundPath = E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Sounds\Error
					modulesPath = E:\Arcade-PC\Hyperspin\RocketLauncher\Modules
					moduleFullName = E:\Arcade-PC\Hyperspin\RocketLauncher\Modules\PCLauncher\PCLauncher.ahk
					moduleName = PCLauncher
					modulePath = E:\Arcade-PC\Hyperspin\RocketLauncher\Modules\PCLauncher
					moduleExtension = ahk
					moduleExtensionsPath = E:\Arcade-PC\hyperspin\RocketLauncher\Module Extensions
					libPath = E:\Arcade-PC\hyperspin\RocketLauncher\Lib
					7zEnabled = false
					7zPath = E:\Arcade-PC\hyperspin\RocketLauncher\Module Extensions\7-Zip\7zFM.exe
					7zDllPath = E:\Arcade-PC\hyperspin\RocketLauncher\Module Extensions\7-Zip\7z.dll
					7zExtractPath = E:\Arcade-PC\hyperspin\RocketLauncher\7z extract folder
					7zExtractPathOrig =
					7zAttachSystemName = false
					7zDelTemp = true
					7zSounds = true
					7zFormats = .zip,.rar,.7z,.lzh,.gzip,.tar
					7zFormatsNoP = zip,rar,7z,lzh,gzip,tar
					mgEnabled = true
					mgKey = Z&LShift|K&I
					mgBackgroundColor = FF000000
					mgSidePadding = 0.2
					mgWidthBaseRes = 1920
					mgHeightBaseRes = 1080
					mgYOffset = 500
					mgFont = Arial
					mgText1Options = x10p y30p w80p Center cBBFFFFFF r4 s100 BoldItalic
					mgText1Text = Please select a game
					mgText2Options = w96p cFFFFFFFF r4 s50 Center BoldItalic
					mgText2Offset = 70
					mgUseSound = true
					mgSoundfreq = 300
					mgExitEffect = none
					mgSelectedEffect = rotate
					mgUseGameArt = false
					mgCandidate =
					mgValidTypes = (Disc,(Disk,(Cart,(Tape,(Cassette,(Part,(Side
					mgOnLaunch = false
					pauseEnabled = true
					pauseKey = 1&vkBCsc033|2&vkBCsc033|vk6Bsc04E
					pauseBackToMenuBarKey = 0|w|5|6|1|2
					pauseZoomInKey = 7|A|
					pauseZoomOutKey = 9|q
					pauseScreenshotKey = ~PrintScreen
					pauseHiToTextPath = E:\Arcade-PC\Hyperspin\RocketLauncher\Module Extensions\HiToText.exe
					pauseSaveStateKeyCodes =
					pauseLoadStateKeyCodes =
					keymapperEnabled = true
					keymapperAHKMethod = false
					keymapper = xpadder
					xpadderFullPath = E:\Arcade-PC\hyperspin\zips\tools\xpadder\Xpadder.exe
					joyToKeyFullPath = E:\Arcade-PC\hyperspin\Utilities\JoyToKey\JoyToKey.exe
					keymapperProfilePath = E:\Arcade-PC\Hyperspin\RocketLauncher\Profiles\xpadder
					keymapperFrontEndProfileName = HyperSpin
					keymapperFrontEndProfile = xpadder
					keymapperRocketLauncherProfileEnabled = true
					joyIDsEnabled = false
					joyIDsPreferredControllersGlobal = ps3 1|ps3 2
					joyIDsPreferredControllersSystem = use_global
					joyIDsPreferredControllersOnExit =
					CustomJoyNamesEnabled = true
					CustomJoyNames = Controller (XBOX 360 For Windows)|p1
					rotateMethod = false
					FEProfile = E:\Arcade-PC\Hyperspin\RocketLauncher\Profiles\xpadder\HyperSpin
					defaultProfile = E:\Arcade-PC\Hyperspin\RocketLauncher\Profiles\xpadder\_Default
					systemProfile = E:\Arcade-PC\Hyperspin\RocketLauncher\Profiles\xpadder\PC Games
					xPadderSystemProfile = E:\Arcade-PC\Hyperspin\RocketLauncher\Profiles\xpadder\PC Games\_Default
					emuProfile = E:\Arcade-PC\Hyperspin\RocketLauncher\Profiles\xpadder\PC Games\PCLauncher
					romProfile = E:\Arcade-PC\Hyperspin\RocketLauncher\Profiles\xpadder\PC Games\Minecraft
					RocketLauncherProfile = E:\Arcade-PC\Hyperspin\RocketLauncher\Profiles\xpadder\RocketLauncher
					blankProfile = E:\Arcade-PC\Hyperspin\RocketLauncher\Profiles\xpadder\_Default\blank
					ahkFEProfile = E:\Arcade-PC\Hyperspin\RocketLauncher\Profiles\AHK\HyperSpin
					ahkDefaultProfile = E:\Arcade-PC\Hyperspin\RocketLauncher\Profiles\AHK\_Default
					ahkSystemProfile = E:\Arcade-PC\Hyperspin\RocketLauncher\Profiles\AHK\PC Games
					ahkEmuProfile = E:\Arcade-PC\Hyperspin\RocketLauncher\Profiles\AHK\PC Games\PCLauncher
					ahkRomProfile = E:\Arcade-PC\Hyperspin\RocketLauncher\Profiles\AHK\PC Games\Minecraft
					ahkRocketLauncherProfile = E:\Arcade-PC\Hyperspin\RocketLauncher\Profiles\AHK\RocketLauncher
					bezelEnabled = false
					bezelICEnabled = true
					statisticsEnabled = true
					pressDuration = -1
					emuVolume = 1
					dxwndIni = E:\Arcade-PC\hyperspin\RocketLauncher\Module Extensions\dxwnd\dxwnd.ini
					dxwndFullPath = E:\Arcade-PC\hyperspin\RocketLauncher\Module Extensions\dxwnd\dxwnd.exe
					mon1O =
					pacDrivedllFile = E:\Arcade-PC\hyperspin\RocketLauncher\Module Extensions\PacDrive32.dll
					userFadeAnimIniFile = E:\Arcade-PC\hyperspin\RocketLauncher\Lib\User Fade Animations.ini

03:58:33:467 | RL |     INFO  | +15    | BuildScript - Loaded XHotkey Init.ahk scripts
03:58:33:472 | RL |     INFO  | +0     | BuildScript - Loaded Keymapper Init.ahk scripts
03:58:33:476 | RL |     INFO  | +16    | BuildScript - Loaded Fade Init.ahk scripts
03:58:33:481 | RL |     INFO  | +0     | BuildScript - Loaded Pause Init.ahk scripts
03:58:33:486 | RL |     INFO  | +0     | BuildScript - Loaded Statistics Init.ahk scripts
03:58:33:490 | RL |     INFO  | +16    | BuildScript - Loaded MultiGame Init.ahk scripts
03:58:33:495 | RL |     INFO  | +0     | BuildScript - Loaded User Functions Init.ahk script
03:58:33:499 | RL |     INFO  | +0     | BuildScript - Emu Idle timer enabled, emu will shutdown when idle for 0hr, 15mins, 0secs
03:58:33:504 | RL |   DEBUG1  | +0     | BuildScript - Module starts on line: 2
03:58:33:507 | RL |     INFO  | +15    | BuildScript - Validating module
03:58:33:522 | RL |     INFO  | +16    | BuildScript - Validation complete
03:58:33:529 | RL |     INFO  | +0     | BuildScript - Module:
					MEmu = PCLauncher
					MEmuV =  N/A
					MURL = http://www.rlauncher.com/wiki/index.php?title=PCLauncher
					MAuthor = djvj
					MVersion = 2.1.7
					MCRC = D8BCAECA
					iCRC = A79D31F9
					mId = 635243126483565041
					MSystem = "Arcade PC","Doujin Soft","Examu eX-BOARD","Fan Remakes","Games for Windows","Konami e-Amusement","Konami Bemani","Microsoft Windows","PCLauncher","PC Games","Steam","Steam Big Picture","Taito Type X","Taito Type X2","Touhou","Touhou Project","American Laser Games"
					;----------------------------------------------------------------------------
					; Notes:
					; Use the examples in the ini, in your Modules\PCLauncher\ folder, to add more applications.
					; PCLauncher supports per-System inis. Copy your PCLauncher ini in the same folder and rename it to match the System's Name. Use this if you have games with the same name across multiple systems.
					; Read the comments at the top of ini for the definitions of each key.
					; For informaion on how to use this module and what all the settings do, please see https://sites.google.com/site/RocketLauncher2/additional-features/pclauncher
					;----------------------------------------------------------------------------
					StartModule()

					If (romExtensions != "")
						ScriptError("PCLauncher does not use extensions, but you have them set to: """ . romExtensions . """. Please remove all extensions from the PCLauncher emulator in RocketLauncherUI to continue using it.")

					IfExist, % modulePath . "\" . systemName . ".ini"	; use a custom systemName ini if it exists
						settingsFile := modulePath . "\" . systemName . ".ini"
					Else
						settingsFile := CheckFile(modulePath . "\" . moduleName . ".ini", "Could not find """ . modulePath . "\" . moduleName . ".ini"". RocketLauncherUI will create this file when you configure your first game to be used with this " . MEmu . " module.")

					iniLookup = SteamID|Application|AppWaitExe|DiscImage|Parameters|OriginGame|DXWndGame|WorkingFolder|PreLaunch|PreLaunchParameters|PreLaunchMode|PreLaunchSleep|PostLaunch|PostLaunchParameters|PostLaunchSleep|PostExit|PostExitParameters|PostExitSleep|ExitMethod|FadeTitle|FadeInExitSleep|BezelEnabled
					Loop, Parse, iniLookup, |
					{	%A_LoopField% := IniReadCheck(settingsFile, dbName, A_LoopField, A_Space,,1)
						If A_LoopField in Application
							If (!Application && !SteamID) { ; Create keys if they do not exist in the ini and this is not a steam game
								IniWrite, %A_Space%, %SettingsFile%, %dbName%, %A_LoopField%
								missingKeys = 1
							}
					}

					; These settings enable them to be customized per-game in this module
					bezelEnabled := IniReadCheck(settingsFile, "Settings|" . dbName, "BezelEnabled",,,1)

					If bezelEnabled = true
						BezelGUI()
					FadeInStart()
					If bezelEnabled = true
						BezelStart()

					If (missingKeys && !SteamID)
						ScriptError("You have not set up " . dbName . " in RocketLauncherUI yet, so PCLauncher does not know what exe, FadeTitle, and/or SteamID to watch for.")

					; If Application needs a cd/dvd image in the drive, mount it in DT first
					If DiscImage {
						Log("PCLauncher - Application is a Disc Image, mounting it in DT")
						appIsImage=1
						DiscImage := GetFullName(DiscImage)	; convert a relative path defined in the PCLauncher ini to absolute
						CheckFile(DiscImage,"Cannot find this DiscImage for " . dbName . ":`n" . DiscImage)
						SplitPath,DiscImage,,ImagePath,ImageExt,ImageName
						If ImageExt in mds,mdx,b5t,b6t,bwt,ccd,cue,isz,nrg,cdi,iso,ape,flac
						{	VirtualDrive("get")	; get the vdDriveLetter
							VirtualDrive("mount",ImagePath . "\" . ImageName . "." . ImageExt)
						} Else
							ScriptError("You defined a DiscImage, but it is not a supported format for this module and/or DT:`nccd,cdi,cue,iso,isz,nrg")
					}

					; Verify module's settings are set
					CheckSettings()

					If PreLaunch {
						Log("PCLauncher - PreLaunch set by user, running: " . PreLaunch)
						PreLaunchParameters := If (!PreLaunchParameters or PreLaunchParameters="ERROR" ) ? "" : PreLaunchParameters
						If (preLaunchMode = "run") {
							errLevel := Run(If preLSkip ? PreLaunch : """" . PreLaunchName . """ " . PreLaunchParameters, PreLaunchPath)
							If errLevel
								ScriptError("There was a problem launching your PreLaunch application. Please check it is a valid executable.")
							Sleep, %PreLaunchSleep%
						} Else {
							errLevel := RunWait(If preLSkip ? PreLaunch : """" . PreLaunchName . """ " . PreLaunchParameters, PreLaunchPath)
							If errLevel
								ScriptError("There was a problem launching your PreLaunch application. Please check it is a valid executable.")
						}
					}

					If DXWndGame = true		; start dxwnd if needed
						DxwndRun()

					If mode in steam,steambp	; steam launch
						Steam(SteamID, Application, Parameters)
					Else If mode = origin		; origin launch
						Origin(ApplicationName, ApplicationPath, Parameters)
					Else {
						If mode = url
						{	Log("PCLauncher - Launching URL.")
							errLevel := Run(Application)
						} Else {	; standard launch
							Log("PCLauncher - Launching a standard application.")
							errLevel := Run("""" . (If WorkingFolder ? ApplicationPath . "\" : "") . ApplicationName . """ " . Parameters, If WorkingFolder ? WorkingFolder : ApplicationPath,, AppPID)
						}
						If errLevel
							ScriptError("There was a problem launching your " . (If appIsImage ? "ImageExe" : "Application") . ". Please check it is a valid executable.")
					}

					If PostLaunch {
						Log("PCLauncher - PostLaunch set by user, running: " . PostLaunch)
						PostLaunchParameters := If (!PostLaunchParameters or PostLaunchParameters="ERROR" ) ? "" : PostLaunchParameters
						errLevel := Run(If postLSkip ? PostLaunch : """" . PostLaunchName . """ " . PostLaunchParameters, PostLaunchPath)
						If errLevel
							ScriptError("There was a problem launching your PostLaunch application. Please check it is a valid executable.")
						Sleep, %PostLaunchSleep%
					}

					If FadeTitle {
						Log("PCLauncher - FadeTitle set by user, waiting for """ . FadeTitle . """")
						WinWait(FadeTitle)
						WinWaitActive(FadeTitle)
					} Else If AppWaitExe {
						Log("PCLauncher - FadeTitle not set by user, but AppWaitExe is. Waiting for AppWaitExe: " . AppWaitExe)
						AppWaitPID := Process("Wait", AppWaitExe, 15)
						If AppWaitPID = 0
							ScriptError("PCLauncher - There was an error getting the Process ID from your AppWaitExe for """ . dbName . """. Please try setting a FadeTitle instead.")
					} Else If SteamIDExe {
						Log("PCLauncher - FadeTitle and AppWaitExe not set by user, but SteamIDExe was found. Waiting for SteamIDExe: " . SteamIDExe)
						SteamIDPID := Process("Wait", SteamIDExe, 15)
						If SteamIDPID = 0
							ScriptError("PCLauncher - There was an error getting the Process ID from your SteamIDExe for """ . dbName . """. Please try setting a FadeTitle instead.")
					} Else If AppPID {
						Log("PCLauncher - FadeTitle and AppWaitExe not set by user, but an AppPID was found. Waiting for AppPID: " . AppPID)
						WinWait("ahk_pid " . AppPID)
						WinWaitActive("ahk_pid " . AppPID)
					} Else
						Log("PCLauncher - FadeTitle and AppWaitExe not set by user and no AppPID found from an Application, PCLauncher has nothing to wait for",3)

					If bezelEnabled = true
						BezelDraw()

					Sleep, %FadeInExitSleep%	; PCLauncher setting for some stubborn games that keeps the fadeIn screen up a little longer
					FadeInExit()

					If AppWaitExe {
						SplitPath,AppWaitExe,AppWaitExe	; In case someone set this as a path accidentally, only want the filename from this key
						Log("PCLauncher - Waiting for AppWaitExe """ . AppWaitExe . """ to close.")
						Process("WaitClose", AppWaitExe)
					} Else If FadeTitle {	; If fadeTitle is set and no appPID was created.
						Log("PCLauncher - Waiting for FadeTitle """ . FadeTitle . """ to close.")
						WinWaitClose(FadeTitle)
					} Else If SteamIDExe {
						Log("PCLauncher - Waiting for SteamIDExe """ . SteamIDExe . """ to close.")
						Process("WaitClose", SteamIDExe)
					} Else If AppPID {
						Log("PCLauncher - Waiting for AppPID """ . AppPID . """ to close.")
						Process("WaitClose", AppPID)
					} Else
						ScriptError("Could not find a proper AppWaitExe`, FadeTitle`, or AppPID (from the launched Application). Try setting either an AppWaitExe or FadeTitle so the module has something to look for.")

					If PostExit {
						Log("PCLauncher - PostExit set by user, running: " . PostExit)
						PostExitParameters := If (!PostExitParameters or PostExitParameters="ERROR" ) ? "" : PostExitParameters
						errLevel := Run(If postESkip ? PostExit : """" . PostExitName . """ " . PostExitParameters, PostExitPath)
						If errLevel
							ScriptError("There was a problem launching your PostExit application. Please check it is a valid executable.")
						Sleep, %PostExitSleep%
					}

					; If Application is a cd/dvd image, unmount it in DT
					If appIsImage
						VirtualDrive("unmount")

					; Close steam if it was not open prior to launch, not really needed anymore because module knows how to launch if steam already running now
					; If AppPID = 0
						; Run, Steam.exe -shutdown, %SteamPath%	; close steam

					If DXWndGame = true
						DxwndClose()
					If bezelEnabled = true
						BezelExit()

					FadeOutExit()
					ExitModule()


					CheckSettings() {
						Global Application,ApplicationPath,ApplicationName,ApplicationExt
						Global PreLaunch,PreLaunchPath,PreLaunchName,PreLaunchExt
						Global PostLaunch,PostLaunchPath,PostLaunchName,PostLaunchExt
						Global PostExit,PostExitPath,PostExitName,PostExitExt
						Global moduleName,appIsImage,vdDriveLetter,SteamID,OriginGame,DXWndGame,mode,preLSkip,postLSkip,postESkip,AppWaitExe,SteamIDExe,FadeTitle
						Global modulePath,fadeIn
						Log("CheckSettings - Started")

						; These checks allow you to run URL and Steam browser protocol commands. Without them ahk would error out that it can't find the file. This is different than setting a SteamID but either work
						If (SteamID) {
							mode = steam	; setting module to use steam mode
							Log("PCLauncher - SteamID is set, setting mode to: """ . mode . """")
						} Else If (SubStr(Application,1,3) = "ste") {
							mode = steambp	; setting module to use Steam Browser Protocol mode
							Log("PCLauncher - Application is a Steam Browser Protocol, setting mode to: """ . mode . """")
						} Else If (SubStr(Application,1,4) = "http") {
							mode = url	; setting module to use url mode
							Log("PCLauncher - Application is a URL, setting mode to: """ . mode . """")
						} Else If OriginGame {
							mode = origin	; setting module to use Origin mode
							Application := GetFullName(Application)	; convert a relative path defined in the PCLauncher ini to absolute
							SplitPath,Application,ApplicationName,ApplicationPath,ApplicationExt
							StringRight, ApplicationBackSlash, Application, 1
							Log("PCLauncher - Origin mode enabled. Will log in to Origin if required.")
						} Else If Application {
							mode = standard	; for standard launching
							Application := GetFullName(Application)	; convert a relative path defined in the PCLauncher ini to absolute
							SplitPath,Application,ApplicationName,ApplicationPath,ApplicationExt
							StringRight, ApplicationBackSlash, Application, 1
							Log("PCLauncher - Setting mode to: """ . mode . """")
						} Else	; error if no modes are used
							ScriptError("Please set an Application, SteamID, Steam Browser Protocol, or URL in " moduleName . ".ini for """ . dbName . """")

						If (SteamID && Application)	; do not allow 2 launching methods
							ScriptError("You are trying to use Steam and Application, you must choose one or the other.")

						If ((mode = "steam" || mode = "steambp") && !AppWaitExe && !FadeTitle) { ; && fadeIn = "true") {	; If AppWaitExe or FadeTitle are defined, that will take precedence over the automatic method using the SteamIDs.ini
							SteamIDFile := CheckFile(modulePath . "\SteamIDs.ini")
							If !SteamID
								SplitPath, Application,SteamID ; grab the
							SteamIDExe := IniReadCheck(SteamIDFile, SteamID, "exe","",,1)
							If !SteamIDExe
								ScriptError("You are using launching a Steam game but no way for the module to know what window to wait for after launching. Please set a AppWaitExe, FadeTitle, or make sure your SteamID and the correct exe is defined in the SteamIDs.ini",10)
							Else
								Log("PCLauncher - Found an exe in the SteamIDs.ini for this game: """ . SteamIDExe . """")
						} Else If (mode = "url" && !AppWaitExe && !FadeTitle)
							ScriptError("You are using launching a URL but no way for the module to know what to window to wait for after launching. Please set a AppWaitExe or FadeTitle to your default application that gets launched when opening URLs.",10)

						preLSkip := If (SubStr(PreLaunch,1,4)="http" || SubStr(PreLaunch,1,3)="ste") ? 1:""
						If preLSkip
							Log("PCLauncher - PreLaunch is a URL or Steam Browser Protocol: " . PreLaunch)
						postLSkip := If (SubStr(PostLaunch,1,4)="http" || SubStr(PostLaunch,1,3)="ste") ? 1:""
						If postLSkip
							Log("PCLauncher - PostLaunch is a URL or Steam Browser Protocol: " . PostLaunch)
						postESkip := If (SubStr(PostExit,1,4)="http" || SubStr(PostExit,1,3)="ste") ? 1:""
						If postESkip
							Log("PCLauncher - PostExit is a URL or Steam Browser Protocol: " . PostExit)

						If (ApplicationBackSlash = "\")
							ScriptError("Please make sure your Application does not contain a backslash on the end:`n" . Application)
						If (appIsImage && !ApplicationPath)	; if user only defined an exe for Application with no path, assume it will be found on the root dir of the image when mounted
							ApplicationPath := vdDriveLetter . ":\"
						If (!ApplicationName && mode = "standard" && (mode != "steam" || mode != "steambp"))
							ScriptError("Missing filename on the end of your Application in " . moduleName . ".ini:`n" . Application)
						If (!ApplicationExt && mode = "standard" && (mode != "steam" || mode != "steambp"))
							ScriptError("Missing extension on your Application in " . moduleName . ".ini:`n" . Application)
						If (PreLaunch && !preLSkip) {
							PreLaunch := GetFullName(PreLaunch)
							SplitPath,PreLaunch,PreLaunchName,PreLaunchPath,PreLaunchExt
							StringRight, PreLaunchBackSlash, PreLaunch, 1
							CheckFile(PreLaunch,"Cannot find this PreLaunch application:`n" . PreLaunch)
							If (PreLaunchBackSlash = "\")
								ScriptError("Please make sure your PreLaunch does not contain a backslash on the end:`n" . PreLaunch)
						}
						If (PostLaunch && !postLSkip) {
							PostLaunch := GetFullName(PostLaunch)
							SplitPath,PostLaunch,PostLaunchName,PostLaunchPath,PostLaunchExt
							StringRight, PostLaunchBackSlash, PostLaunch, 1
							CheckFile(PostLaunch,"Cannot find this PostLaunch application:`n" . PostLaunch)
							If (PostLaunchBackSlash = "\")
								ScriptError("Please make sure your PostLaunch does not contain a backslash on the end:`n" . PostLaunch)
						}
						If (PostExit && !postESkip) {
							PostExit := GetFullName(PostExit)
							SplitPath,PostExit,PostExitName,PostExitPath,PostExitExt
							StringRight, PostExitBackSlash, PostExit, 1
							CheckFile(PostExit,"Cannot find this PostExit application:`n" . PostExit)
							If (PostExitBackSlash = "\")
								ScriptError("Please make sure your PostExit does not contain a backslash on the end:`n" . PostExit)
						}
						If mode = standard
							CheckFile(ApplicationPath . "\" . ApplicationName,"Cannot find this Application:`n" . ApplicationPath . "\" . ApplicationName)	; keeping this last so more descriptive errors will trigger first
						Log("CheckSettings - Ended")
					}

					CloseProcess:
						If ExitMethod ; fadeout will only take effect if an ExitMethod method was set, otherwise fade will occur and application will not close
							FadeOutStart()
						If ( ExitMethod = "Process Close AppWaitExe" && AppWaitExe) {
							Log("CloseProcess - ExitMethod is ""Process Close AppWaitExe""")
							Process("Close", AppWaitExe)
						} Else If ( ExitMethod = "WinClose AppWaitExe" && AppWaitExe) {
							Log("CloseProcess - ExitMethod is ""WinClose AppWaitExe""")
							AppWaitExePID := Process("Exist", AppWaitExe)
							WinClose("ahk_pid " . AppWaitExePID)
						} Else If ( ExitMethod = "Process Close Application" ) {
							Log("CloseProcess - ExitMethod is ""Process Close Application""")
							Process("Close", ApplicationName)
						} Else If ( ExitMethod = "WinClose Application" && FadeTitle ) {
							Log("CloseProcess - ExitMethod is ""WinClose Close Application""")
							WinClose(FadeTitle)
						} Else If ( ExitMethod = "Send Alt+F4" ) {
							Log("CloseProcess - ExitMethod is ""Send Alt+F4""")
							Send, !{F4}
						} Else {
							Log("CloseProcess - Default ExitMethod`, using ""WinClose""")
							WinClose(ApplicationName)
						}
					Return

03:58:33:565 | RL |     INFO  | +31    | BuildScript - Loaded Pause scripts
03:58:33:577 | RL |     INFO  | +16    | BuildScript - Loaded MultiGame scripts
03:58:33:583 | RL |     INFO  | +0     | BuildScript - Loaded Multi-Player scripts
03:58:33:590 | RL |     INFO  | +15    | BuildScript - Loaded Statistics.ahk script
03:58:33:593 | RL |     INFO  | +0     | BuildScript - Loaded User Functions.ahk script
03:58:33:596 | RL |     INFO  | +0     | BuildScript - Finished injecting functions into module
03:58:33:602 | RL |     INFO  | +16    | Main - Module is built
03:58:33:605 | RL |     INFO  | +0     | CheckFile - Checking if E:\Arcade-PC\hyperspin\RocketLauncher\AutoHotkey.dll exists
03:58:33:610 | RL |   DEBUG1  | +0     | CheckFile - Attributes:
					FileDescription         	AutoHotkey_H ANSI 32-bit
					FileVersion             	1.1.09.04
					InternalName            	AutoHotkey_H
					LegalCopyright          	Copyright (C) 2012
					OriginalFilename        	AutoHotkey.exe
					ProductName             	AutoHotkey_H
					ProductVersion          	1.1.09.04
					File Size:			785408 bytes
					Created:			2/22/2014 - 3:39:17 AM
					Modified:			2/22/2014 - 4:21:46 AM
03:58:33:615 | RL |     INFO  | +15    | Main - Running module
03:58:33:618 | RL |     INFO  | +0     | Main - Starting timer to watch if Front End gets displaced and restore it if it does.
03:58:33:837 | MD |     INFO  | +N/A   | Module initialized
03:58:33:841 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Started
03:58:33:844 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - KeyGroup ~1joy7&~1joy8 not in TableKeyGroups
03:58:33:847 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 1 check
03:58:33:869 | MD |   DEBUG2  | +31    | XHotkeyTableCreation - Post loop 2 check
03:58:33:874 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Using extended Hotkey method for key(s): "~1joy7&~1joy8" to call a group label
03:58:33:878 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Ended
03:58:33:896 | MD |   DEBUG2  | +31    | XHotkeyTableCreation - Started
03:58:33:931 | MD |   DEBUG2  | +31    | XHotkeyTableCreation - KeyGroup ~2joy7&~2joy8 not in TableKeyGroups ~1joy7&~1joy8,
03:58:33:934 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 1 check
03:58:33:960 | MD |   DEBUG2  | +32    | XHotkeyTableCreation - Post loop 2 check
03:58:33:965 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Using extended Hotkey method for key(s): "~2joy7&~2joy8" to call a group label
03:58:33:969 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Ended
03:58:33:994 | MD |   DEBUG2  | +31    | XHotkeyTableCreation - Started
03:58:33:998 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - KeyGroup ~1&~5 not in TableKeyGroups ~1joy7&~1joy8,~2joy7&~2joy8,
03:58:33:003 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 1 check
03:58:34:024 | MD |   DEBUG2  | +31    | XHotkeyTableCreation - Post loop 2 check
03:58:34:030 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Using standard Hotkey method for key(s): "~1 & ~5" to call label: "CloseProcess"
03:58:34:035 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Ended
03:58:34:084 | MD |     INFO  | +62    | Keymapper - Creating Custom Joy Name Array for Name Replacements
03:58:34:088 | MD |     INFO  | +0     | CheckFile - Checking if E:\Arcade-PC\hyperspin\zips\tools\xpadder\Xpadder.exe exists
03:58:34:094 | MD |   DEBUG1  | +0     | CheckFile - Attributes:
					File Size:			1169408 bytes
					Created:			7/12/2014 - 1:18:46 AM
					Modified:			7/12/2014 - 1:18:50 AM
03:58:34:098 | MD |     INFO  | +0     | Keymapper - Loading xpadder
03:58:34:118 | MD |     INFO  | +32    | RunKeymapper - Started, using method "load"
03:58:34:121 | MD |     INFO  | +0     | GetJoystickArray - Started
03:58:34:126 | MD |   DEBUG2  | +0     | GetJoystickArray - Joysticks Detected: 0000000000000000
03:58:34:150 | MD |     INFO  | +31    | GetJoystickArray - Ended
03:58:34:200 | MD |   DEBUG2  | +47    | RunKeymapper - Found your keymapper application here: "E:\Arcade-PC\hyperspin\zips\tools\xpadder\Xpadder.exe"
03:58:34:205 | MD |   DEBUG2  | +0     | RunKeymapper - Looping through controllers to find xpadder profiles for each one
03:58:34:224 | MD |     INFO  | +31    | RunXpadder - Started
03:58:34:230 | MD |     INFO  | +0     | Process - Exist JoyToKey.exe
03:58:34:264 | MD |   DEBUG2  | +31    | RunXpadder - Closing xpadder to refresh controllers seen by xpadder
03:58:34:304 | MD |     INFO  | +47    | Run - Running: E:\Arcade-PC\hyperspin\zips\tools\xpadder\Xpadder.exe /C
03:58:34:398 | MD |   DEBUG1  | +93    | Run - "Xpadder.exe /C" Process ID: 5228
03:58:34:401 | MD |   DEBUG2  | +0     | RunXpadder - Creating an array of connected controllers and profiles to arrange according to the order found in E:\Arcade-PC\hyperspin\zips\tools\xpadder\xpadder.ini
03:58:34:404 | MD |     INFO  | +0     | Process - WaitClose Xpadder.exe 2
03:58:34:589 | MD |   DEBUG2  | +188   | RunXpadder - Reading the order in E:\Arcade-PC\hyperspin\zips\tools\xpadder\xpadder.ini and arranging profiles found to match that order
03:58:34:596 | MD |   DEBUG2  | +0     | RunXpadder - No more controllers to be found
03:58:34:618 | MD |  WARNING  | +31    | RunXpadder - No profiles found and nothing to tell Xpadder to load
03:58:34:622 | MD |     INFO  | +0     | RunXpadder - Ended
03:58:34:627 | MD |     INFO  | +0     | RunKeymapper - Ended
03:58:34:649 | MD |   DEBUG1  | +31    | fadeInTransitionAnimation: DefaultAnimateFadeIn
03:58:34:655 | MD |   DEBUG1  | +0     | fadeOutTransitionAnimation: DefaultAnimateFadeOut
03:58:34:696 | MD |   DEBUG1  | +47    | fadeLyr3Animation: DefaultFadeAnimation
03:58:34:701 | MD |   DEBUG1  | +0     | fadeLyr37zAnimation: DefaultFadeAnimation
03:58:34:734 | MD |   DEBUG2  | +31    | XHotkeyTableCreation - Started
03:58:34:770 | MD |   DEBUG2  | +47    | XHotkeyTableCreation - KeyGroup ~1&~vkBCsc033 not in TableKeyGroups ~1joy7&~1joy8,~2joy7&~2joy8,~1&~5,
03:58:34:774 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 1 check
03:58:34:800 | MD |   DEBUG2  | +31    | XHotkeyTableCreation - Post loop 2 check
03:58:34:808 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Using standard Hotkey method for key(s): "~1 & ~vkBCsc033" to call label: "TogglePauseMenuStatus"
03:58:34:811 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Ended
03:58:34:840 | MD |   DEBUG2  | +31    | XHotkeyTableCreation - Started
03:58:34:863 | MD |   DEBUG2  | +31    | XHotkeyTableCreation - KeyGroup ~2&~vkBCsc033 not in TableKeyGroups ~1joy7&~1joy8,~2joy7&~2joy8,~1&~5,~1&~vkBCsc033,
03:58:34:871 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 1 check
03:58:34:903 | MD |   DEBUG2  | +32    | XHotkeyTableCreation - Post loop 2 check
03:58:34:907 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Using standard Hotkey method for key(s): "~2 & ~vkBCsc033" to call label: "TogglePauseMenuStatus"
03:58:34:933 | MD |   DEBUG2  | +31    | XHotkeyTableCreation - Ended
03:58:34:973 | MD |   DEBUG2  | +47    | XHotkeyTableCreation - Started
03:58:34:978 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - KeyGroup ~vk6Bsc04E not in TableKeyGroups ~1joy7&~1joy8,~2joy7&~2joy8,~1&~5,~1&~vkBCsc033,~2&~vkBCsc033,
03:58:34:003 | MD |   DEBUG2  | +31    | XHotkeyTableCreation - Post loop 1 check
03:58:35:008 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 2 check
03:58:35:011 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Using standard Hotkey method for key(s): "~vk6Bsc04E" to call label: "TogglePauseMenuStatus"
03:58:35:043 | MD |   DEBUG2  | +31    | XHotkeyTableCreation - Ended
03:58:35:073 | MD |   DEBUG2  | +31    | XHotkeyTableCreation - Started
03:58:35:078 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - KeyGroup PrintScreen not in TableKeyGroups ~1joy7&~1joy8,~2joy7&~2joy8,~1&~5,~1&~vkBCsc033,~2&~vkBCsc033,~vk6Bsc04E,
03:58:35:113 | MD |   DEBUG2  | +47    | XHotkeyTableCreation - Post loop 1 check
03:58:35:144 | MD |   DEBUG2  | +31    | XHotkeyTableCreation - Post loop 2 check
03:58:35:149 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Using standard Hotkey method for key(s): "PrintScreen" to call label: "SaveScreenshot"
03:58:35:184 | MD |   DEBUG2  | +31    | XHotkeyTableCreation - Ended
03:58:35:226 | MD |   DEBUG2  | +47    | XHotkeyTableCreation - Started
03:58:35:230 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - KeyGroup ~LShift&~Z not in TableKeyGroups ~1joy7&~1joy8,~2joy7&~2joy8,~1&~5,~1&~vkBCsc033,~2&~vkBCsc033,~vk6Bsc04E,PrintScreen,
03:58:35:252 | MD |   DEBUG2  | +16    | XHotkeyTableCreation - Post loop 1 check
03:58:35:256 | MD |   DEBUG2  | +15    | XHotkeyTableCreation - Post loop 2 check
03:58:35:263 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Using standard Hotkey method for key(s): "~LShift & ~Z" to call label: "StartMulti"
03:58:35:275 | MD |   DEBUG2  | +16    | XHotkeyTableCreation - Ended
03:58:35:278 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Started
03:58:35:286 | MD |   DEBUG2  | +16    | XHotkeyTableCreation - KeyGroup ~I&~K not in TableKeyGroups ~1joy7&~1joy8,~2joy7&~2joy8,~1&~5,~1&~vkBCsc033,~2&~vkBCsc033,~vk6Bsc04E,PrintScreen,~LShift&~Z,
03:58:35:291 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 1 check
03:58:35:295 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 2 check
03:58:35:308 | MD |   DEBUG2  | +15    | XHotkeyTableCreation - Using standard Hotkey method for key(s): "~I & ~K" to call label: "StartMulti"
03:58:35:313 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Ended
03:58:35:319 | MD |     INFO  | +16    | StartModule - Started
03:58:35:323 | MD |     INFO  | +0     | StartModule - MEmu: PCLauncher
					MEmuV: N/A
					MURL: http://www.rlauncher.com/wiki/index.php?title=PCLauncher
					MAuthor: djvj
					MVersion: 2.1.7
					MCRC: D8BCAECA
					iCRC: A79D31F9
					MID:
					MSystem: "Arcade PC","Doujin Soft","Examu eX-BOARD","Fan Remakes","Games for Windows","Konami e-Amusement","Konami Bemani","Microsoft Windows","PCLauncher","PC Games","Steam","Steam Big Picture","Taito Type X","Taito Type X2","Touhou","Touhou Project","American Laser Games"
03:58:35:327 | MD |     INFO  | +0     | StartModule - You have a supported System Name for this module: "PC Games"
03:58:35:334 | MD |     INFO  | +15    | PluginInit - Started
03:58:35:339 | MD |   DEBUG1  | +0     | BuildDatabaseTable - Started - Building Table for: Name|Cloneof|Manufacturer|Year|Genre|Rating
03:58:35:344 | MD |     INFO  | +0     | CheckFile - Checking if E:\Arcade-PC\Hyperspin\Databases\PC Games\PC Games.xml exists
03:58:35:349 | MD |   DEBUG1  | +16    | CheckFile - Attributes:
					File Size:			20627 bytes
					Created:			2/26/2014 - 12:15:47 AM
					Modified:			7/11/2015 - 3:50:52 AM
03:58:35:354 | MD |   DEBUG1  | +0     | BuildDatabaseTable - Searching for a "Game Name" in the database
03:58:35:362 | MD |   DEBUG1  | +16    | BuildDatabaseTable - Found "Game Name" in the database!
03:58:35:368 | MD |   DEBUG1  | +0     | BuildDatabaseTable - Searching database for: Name
03:58:35:371 | MD |   DEBUG1  | +0     | BuildDatabaseTable - Found "Name" with a value: "Minecraft"
03:58:35:377 | MD |   DEBUG1  | +0     | BuildDatabaseTable - Searching database for: Cloneof
03:58:35:381 | MD |   DEBUG1  | +15    | BuildDatabaseTable - Could not find: Cloneof
03:58:35:385 | MD |   DEBUG1  | +0     | BuildDatabaseTable - Searching database for: Manufacturer
03:58:35:389 | MD |   DEBUG1  | +0     | BuildDatabaseTable - Found "Manufacturer" with a value: "4J Studios"
03:58:35:393 | MD |   DEBUG1  | +16    | BuildDatabaseTable - Searching database for: Year
03:58:35:398 | MD |   DEBUG1  | +0     | BuildDatabaseTable - Found "Year" with a value: "2009"
03:58:35:402 | MD |   DEBUG1  | +0     | BuildDatabaseTable - Searching database for: Genre
03:58:35:407 | MD |   DEBUG1  | +0     | BuildDatabaseTable - Found "Genre" with a value: "Action"
03:58:35:419 | MD |   DEBUG1  | +15    | BuildDatabaseTable - Searching database for: Rating
03:58:35:423 | MD |   DEBUG1  | +0     | BuildDatabaseTable - Found "Rating" with a value: "ESRB - E (Everyone)"
03:58:35:430 | MD |   DEBUG2  | +16    | PluginInit - GameInfo:
					GameInfo Label: Genre | GameInfo Value:
					GameInfo Label: Manufacturer | GameInfo Value:
					GameInfo Label: Name | GameInfo Value:
					GameInfo Label: Rating | GameInfo Value:
					GameInfo Label: Year | GameInfo Value:
03:58:35:434 | MD |   DEBUG1  | +0     | BuildDatabaseTable - Ended
03:58:35:443 | MD |   DEBUG1  | +16    | BuildAssetsTable - Started - Building Table for: Game Logo|System Logo
03:58:35:446 | MD |   DEBUG1  | +0     | BuildAssetsTable - Searching for a Game Logo: E:\Arcade-PC\Hyperspin\Media\PC Games\Images\Wheel\Minecraft.png
03:58:35:451 | MD |   DEBUG1  | +0     | BuildAssetsTable - Searching for a System Logo: E:\Arcade-PC\Hyperspin\Media\Main Menu\Images\Wheel\PC Games.png
03:58:35:464 | MD |   DEBUG2  | +15    | BuildAssetsTable - Media assets found:
					Asset Label: Game Logo | Asset Path1:  E:\Arcade-PC\Hyperspin\Media\PC Games\Images\Wheel\Minecraft.png | Asset Extension1:  png | Asset Type1:  game
					Asset Label: System Logo | Asset Path1:  E:\Arcade-PC\Hyperspin\Media\Main Menu\Images\Wheel\PC Games.png | Asset Extension1:  png | Asset Type1:  system
03:58:35:469 | MD |   DEBUG1  | +0     | BuildAssetsTable - Ended
03:58:35:473 | MD |   DEBUG1  | +16    | BuildAssetsTable - Started - Building Table for: Artwork1|Box Art|Cartridge|Flyers|Letters|Other
03:58:35:486 | MD |   DEBUG1  | +0     | BuildAssetsTable - Searching for a Artwork1: E:\Arcade-PC\Hyperspin\Media\PC Games\Images\Artwork1\Minecraft.png
03:58:35:491 | MD |   DEBUG1  | +15    | BuildAssetsTable - Searching for a Box Art: E:\Arcade-PC\Hyperspin\Media\PC Games\Images\Artwork2\Minecraft.png
03:58:35:495 | MD |   DEBUG1  | +0     | BuildAssetsTable - Searching for a Cartridge: E:\Arcade-PC\Hyperspin\Media\PC Games\Images\Artwork3\Minecraft.png
03:58:35:500 | MD |   DEBUG1  | +0     | BuildAssetsTable - Searching for a Flyers: E:\Arcade-PC\Hyperspin\Media\PC Games\Images\Artwork4\Minecraft.png
03:58:35:504 | MD |   DEBUG1  | +16    | BuildAssetsTable - Searching for a Letters: E:\Arcade-PC\Hyperspin\Media\PC Games\Images\Letters
03:58:35:546 | MD |   DEBUG1  | +31    | BuildAssetsTable - Searching for a Other: E:\Arcade-PC\Hyperspin\Media\PC Games\Images\Other
03:58:35:572 | MD |   DEBUG2  | +31    | BuildAssetsTable - Media assets found:
					Asset Label: Letters | Asset Path1:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Letters\!.png | Asset Extension1:  png | Asset Type1:  system
					Asset Label: Letters | Asset Path2:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Letters\'.png | Asset Extension2:  png | Asset Type2:  system
					Asset Label: Letters | Asset Path3:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Letters\(.png | Asset Extension3:  png | Asset Type3:  system
					Asset Label: Letters | Asset Path4:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Letters\0.png | Asset Extension4:  png | Asset Type4:  system
					Asset Label: Letters | Asset Path5:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Letters\1.png | Asset Extension5:  png | Asset Type5:  system
					Asset Label: Letters | Asset Path6:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Letters\2.png | Asset Extension6:  png | Asset Type6:  system
					Asset Label: Letters | Asset Path7:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Letters\3.png | Asset Extension7:  png | Asset Type7:  system
					Asset Label: Letters | Asset Path8:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Letters\4.png | Asset Extension8:  png | Asset Type8:  system
					Asset Label: Letters | Asset Path9:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Letters\5.png | Asset Extension9:  png | Asset Type9:  system
					Asset Label: Letters | Asset Path10:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Letters\6.png | Asset Extension10:  png | Asset Type10:  system
					Asset Label: Letters | Asset Path11:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Letters\7.png | Asset Extension11:  png | Asset Type11:  system
					Asset Label: Letters | Asset Path12:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Letters\8.png | Asset Extension12:  png | Asset Type12:  system
					Asset Label: Letters | Asset Path13:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Letters\9.png | Asset Extension13:  png | Asset Type13:  system
					Asset Label: Letters | Asset Path14:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Letters\a.png | Asset Extension14:  png | Asset Type14:  system
					Asset Label: Letters | Asset Path15:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Letters\b.png | Asset Extension15:  png | Asset Type15:  system
					Asset Label: Letters | Asset Path16:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Letters\c.png | Asset Extension16:  png | Asset Type16:  system
					Asset Label: Letters | Asset Path17:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Letters\d.png | Asset Extension17:  png | Asset Type17:  system
					Asset Label: Letters | Asset Path18:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Letters\e.png | Asset Extension18:  png | Asset Type18:  system
					Asset Label: Letters | Asset Path19:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Letters\f.png | Asset Extension19:  png | Asset Type19:  system
					Asset Label: Letters | Asset Path20:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Letters\g.png | Asset Extension20:  png | Asset Type20:  system
					Asset Label: Letters | Asset Path21:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Letters\h.png | Asset Extension21:  png | Asset Type21:  system
					Asset Label: Letters | Asset Path22:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Letters\i.png | Asset Extension22:  png | Asset Type22:  system
					Asset Label: Letters | Asset Path23:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Letters\j.png | Asset Extension23:  png | Asset Type23:  system
					Asset Label: Letters | Asset Path24:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Letters\k.png | Asset Extension24:  png | Asset Type24:  system
					Asset Label: Letters | Asset Path25:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Letters\l.png | Asset Extension25:  png | Asset Type25:  system
					Asset Label: Letters | Asset Path26:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Letters\m.png | Asset Extension26:  png | Asset Type26:  system
					Asset Label: Letters | Asset Path27:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Letters\n.png | Asset Extension27:  png | Asset Type27:  system
					Asset Label: Letters | Asset Path28:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Letters\o.png | Asset Extension28:  png | Asset Type28:  system
					Asset Label: Letters | Asset Path29:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Letters\p.png | Asset Extension29:  png | Asset Type29:  system
					Asset Label: Letters | Asset Path30:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Letters\q.png | Asset Extension30:  png | Asset Type30:  system
					Asset Label: Letters | Asset Path31:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Letters\r.png | Asset Extension31:  png | Asset Type31:  system
					Asset Label: Letters | Asset Path32:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Letters\s.png | Asset Extension32:  png | Asset Type32:  system
					Asset Label: Letters | Asset Path33:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Letters\t.png | Asset Extension33:  png | Asset Type33:  system
					Asset Label: Letters | Asset Path34:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Letters\u.png | Asset Extension34:  png | Asset Type34:  system
					Asset Label: Letters | Asset Path35:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Letters\v.png | Asset Extension35:  png | Asset Type35:  system
					Asset Label: Letters | Asset Path36:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Letters\w.png | Asset Extension36:  png | Asset Type36:  system
					Asset Label: Letters | Asset Path37:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Letters\x.png | Asset Extension37:  png | Asset Type37:  system
					Asset Label: Letters | Asset Path38:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Letters\y.png | Asset Extension38:  png | Asset Type38:  system
					Asset Label: Letters | Asset Path39:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Letters\z.png | Asset Extension39:  png | Asset Type39:  system
					Asset Label: Other | Asset Path1:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Other\Pointer.png | Asset Extension1:  png | Asset Type1:  system
					Asset Label: Other | Asset Path2:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Other\Pointer0.png | Asset Extension2:  png | Asset Type2:  system
					Asset Label: Other | Asset Path3:  E:\Arcade-PC\hyperspin\Media\PC Games\Images\Other\Pointer1.png | Asset Extension3:  png | Asset Type3:  system
03:58:35:579 | MD |   DEBUG1  | +0     | BuildAssetsTable - Ended
03:58:35:583 | MD |   DEBUG1  | +16    | BuildAssetsTable - Started - Building Table for: Game Video|System Video
03:58:35:587 | MD |   DEBUG1  | +0     | BuildAssetsTable - Searching for a Game Video: E:\Arcade-PC\Hyperspin\Media\PC Games\Video\Minecraft.*
03:58:35:591 | MD |   DEBUG1  | +0     | BuildAssetsTable - Searching for a System Video: E:\Arcade-PC\Hyperspin\Media\Main Menu\Video\PC Games.*
03:58:35:595 | MD |   DEBUG2  | +0     | BuildAssetsTable - Media assets found:
					Asset Label: Game Video | Asset Path1:  E:\Arcade-PC\Hyperspin\Media\PC Games\Video\Minecraft.mp4 | Asset Extension1:  mp4 | Asset Type1:  game
					Asset Label: System Video | Asset Path1:  E:\Arcade-PC\Hyperspin\Media\Main Menu\Video\PC Games.flv | Asset Extension1:  flv | Asset Type1:  system
03:58:35:599 | MD |   DEBUG1  | +16    | BuildAssetsTable - Ended
03:58:35:602 | MD |     INFO  | +0     | PluginInit - Ended
03:58:35:605 | MD |   DEBUG1  | +0     | StartModule - Setting romName to the dbName sent to RocketLauncher: Minecraft
03:58:35:609 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Started
03:58:35:612 | MD |   DEBUG2  | +15    | XHotkeyTableCreation - KeyGroup ~e&~t not in TableKeyGroups ~1joy7&~1joy8,~2joy7&~2joy8,~1&~5,~1&~vkBCsc033,~2&~vkBCsc033,~vk6Bsc04E,PrintScreen,~LShift&~Z,~I&~K,
03:58:35:616 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 1 check
03:58:35:619 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 2 check
03:58:35:623 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Using standard Hotkey method for key(s): "~e & ~t" to call label: "ToggleCursor"
03:58:35:626 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Ended
03:58:35:632 | MD |     INFO  | +16    | StartModule - Ended
03:58:35:636 | MD |     INFO  | +0     | CheckFile - Checking if E:\Arcade-PC\Hyperspin\RocketLauncher\Modules\PCLauncher\PCLauncher.ini exists
03:58:35:640 | MD |   DEBUG1  | +0     | CheckFile - Attributes:
					File Size:			21778 bytes
					Created:			3/14/2014 - 9:55:15 PM
					Modified:			10/13/2015 - 3:52:36 AM
03:58:35:644 | MD |     INFO  | +15    | Module Setting - [Minecraft] - SteamID:
03:58:35:647 | MD |     INFO  | +0     | Module Setting - [Minecraft] - Application: ..\..\..\Arcade-PC\hyperspin\Emulators\Romfiles\PC\Minecraft\.minecraft\minecraft launcher\Minecraft Launcher.exe
03:58:35:652 | MD |     INFO  | +0     | Module Setting - [Minecraft] - AppWaitExe:
03:58:35:655 | MD |     INFO  | +0     | Module Setting - [Minecraft] - DiscImage:
03:58:35:659 | MD |     INFO  | +16    | Module Setting - [Minecraft] - Parameters:
03:58:35:662 | MD |     INFO  | +0     | Module Setting - [Minecraft] - OriginGame:
03:58:35:666 | MD |     INFO  | +0     | Module Setting - [Minecraft] - DXWndGame:
03:58:35:670 | MD |     INFO  | +0     | Module Setting - [Minecraft] - WorkingFolder:
03:58:35:673 | MD |     INFO  | +0     | Module Setting - [Minecraft] - PreLaunch:
03:58:35:678 | MD |     INFO  | +16    | Module Setting - [Minecraft] - PreLaunchParameters:
03:58:35:681 | MD |     INFO  | +0     | Module Setting - [Minecraft] - PreLaunchMode:
03:58:35:685 | MD |     INFO  | +0     | Module Setting - [Minecraft] - PreLaunchSleep:
03:58:35:688 | MD |     INFO  | +0     | Module Setting - [Minecraft] - PostLaunch:
03:58:35:692 | MD |     INFO  | +15    | Module Setting - [Minecraft] - PostLaunchParameters:
03:58:35:697 | MD |     INFO  | +0     | Module Setting - [Minecraft] - PostLaunchSleep:
03:58:35:700 | MD |     INFO  | +0     | Module Setting - [Minecraft] - PostExit:
03:58:35:704 | MD |     INFO  | +0     | Module Setting - [Minecraft] - PostExitParameters:
03:58:35:707 | MD |     INFO  | +16    | Module Setting - [Minecraft] - PostExitSleep:
03:58:35:712 | MD |     INFO  | +0     | Module Setting - [Minecraft] - ExitMethod:
03:58:35:715 | MD |     INFO  | +0     | Module Setting - [Minecraft] - FadeTitle: Minecraft launcher
03:58:35:719 | MD |     INFO  | +0     | Module Setting - [Minecraft] - FadeInExitSleep:
03:58:35:722 | MD |     INFO  | +15    | Module Setting - [Minecraft] - BezelEnabled:
03:58:35:727 | MD |     INFO  | +0     | Module Setting - [Settings] - BezelEnabled:
03:58:35:731 | MD |     INFO  | +0     | Module Setting - [Minecraft] - BezelEnabled:
03:58:35:733 | MD |   DEBUG1  | +0     | FadeInStart - Started
03:58:35:738 | MD |   DEBUG2  | +16    | XHotkeyTableCreation - Started
03:58:35:742 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - KeyGroup ~LShift&~Z is in TableKeyGroups ~1joy7&~1joy8,~2joy7&~2joy8,~1&~5,~1&~vkBCsc033,~2&~vkBCsc033,~vk6Bsc04E,PrintScreen,~LShift&~Z,~I&~K,~e&~t,
03:58:35:745 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 10 check
03:58:35:748 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Disabled Hotkey for: "~LShift & ~Z"
03:58:35:752 | MD |   DEBUG2  | +16    | XHotkeyTableCreation - Post loop 11 check
03:58:35:756 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Disabling "StartMulti" standard Hotkey method for key(s): "~LShift & ~Z"
03:58:35:759 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 12 check
03:58:35:762 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Ended
03:58:35:765 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Started
03:58:35:770 | MD |   DEBUG2  | +15    | XHotkeyTableCreation - KeyGroup ~I&~K is in TableKeyGroups ~1joy7&~1joy8,~2joy7&~2joy8,~1&~5,~1&~vkBCsc033,~2&~vkBCsc033,~vk6Bsc04E,PrintScreen,~LShift&~Z,~I&~K,~e&~t,
03:58:35:773 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 10 check
03:58:35:776 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Disabled Hotkey for: "~I & ~K"
03:58:35:779 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 11 check
03:58:35:783 | MD |   DEBUG2  | +16    | XHotkeyTableCreation - Disabling "StartMulti" standard Hotkey method for key(s): "~I & ~K"
03:58:35:787 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 12 check
03:58:35:790 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Ended
03:58:35:794 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Started
03:58:35:796 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - KeyGroup ~1&~vkBCsc033 is in TableKeyGroups ~1joy7&~1joy8,~2joy7&~2joy8,~1&~5,~1&~vkBCsc033,~2&~vkBCsc033,~vk6Bsc04E,PrintScreen,~LShift&~Z,~I&~K,~e&~t,
03:58:35:800 | MD |   DEBUG2  | +15    | XHotkeyTableCreation - Post loop 10 check
03:58:35:803 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Disabled Hotkey for: "~1 & ~vkBCsc033"
03:58:35:807 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 11 check
03:58:35:810 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Disabling "TogglePauseMenuStatus" standard Hotkey method for key(s): "~1 & ~vkBCsc033"
03:58:35:814 | MD |   DEBUG2  | +16    | XHotkeyTableCreation - Post loop 12 check
03:58:35:817 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Ended
03:58:35:820 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Started
03:58:35:824 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - KeyGroup ~2&~vkBCsc033 is in TableKeyGroups ~1joy7&~1joy8,~2joy7&~2joy8,~1&~5,~1&~vkBCsc033,~2&~vkBCsc033,~vk6Bsc04E,PrintScreen,~LShift&~Z,~I&~K,~e&~t,
03:58:35:827 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 10 check
03:58:35:831 | MD |   DEBUG2  | +16    | XHotkeyTableCreation - Disabled Hotkey for: "~2 & ~vkBCsc033"
03:58:35:834 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 11 check
03:58:35:838 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Disabling "TogglePauseMenuStatus" standard Hotkey method for key(s): "~2 & ~vkBCsc033"
03:58:35:841 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 12 check
03:58:35:844 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Ended
03:58:35:848 | MD |   DEBUG2  | +15    | XHotkeyTableCreation - Started
03:58:35:851 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - KeyGroup ~vk6Bsc04E is in TableKeyGroups ~1joy7&~1joy8,~2joy7&~2joy8,~1&~5,~1&~vkBCsc033,~2&~vkBCsc033,~vk6Bsc04E,PrintScreen,~LShift&~Z,~I&~K,~e&~t,
03:58:35:855 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 10 check
03:58:35:858 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Disabled Hotkey for: "~vk6Bsc04E"
03:58:35:862 | MD |   DEBUG2  | +16    | XHotkeyTableCreation - Post loop 11 check
03:58:35:866 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Disabling "TogglePauseMenuStatus" standard Hotkey method for key(s): "~vk6Bsc04E"
03:58:35:871 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 12 check
03:58:35:874 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Ended
03:58:35:877 | MD |   DEBUG2  | +15    | XHotkeyTableCreation - Started
03:58:35:881 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - KeyGroup ~1joy7&~1joy8 is in TableKeyGroups ~1joy7&~1joy8,~2joy7&~2joy8,~1&~5,~1&~vkBCsc033,~2&~vkBCsc033,~vk6Bsc04E,PrintScreen,~LShift&~Z,~I&~K,~e&~t,
03:58:35:884 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 10 check
03:58:35:888 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 11 check
03:58:35:891 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Disabling extended Hotkey method for key(s): "~1joy7&~1joy8"
03:58:35:895 | MD |   DEBUG2  | +16    | XHotkeyTableCreation - Post loop 12 check
03:58:35:899 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Ended
03:58:35:902 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Started
03:58:35:905 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - KeyGroup ~2joy7&~2joy8 is in TableKeyGroups ~1joy7&~1joy8,~2joy7&~2joy8,~1&~5,~1&~vkBCsc033,~2&~vkBCsc033,~vk6Bsc04E,PrintScreen,~LShift&~Z,~I&~K,~e&~t,
03:58:35:908 | MD |   DEBUG2  | +16    | XHotkeyTableCreation - Post loop 10 check
03:58:35:912 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 11 check
03:58:35:915 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Disabling extended Hotkey method for key(s): "~2joy7&~2joy8"
03:58:35:919 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 12 check
03:58:35:923 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Ended
03:58:35:926 | MD |   DEBUG2  | +15    | XHotkeyTableCreation - Started
03:58:35:930 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - KeyGroup ~1&~5 is in TableKeyGroups ~1joy7&~1joy8,~2joy7&~2joy8,~1&~5,~1&~vkBCsc033,~2&~vkBCsc033,~vk6Bsc04E,PrintScreen,~LShift&~Z,~I&~K,~e&~t,
03:58:35:933 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 10 check
03:58:35:937 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Disabled Hotkey for: "~1 & ~5"
03:58:35:940 | MD |   DEBUG2  | +16    | XHotkeyTableCreation - Post loop 11 check
03:58:35:944 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Disabling "CloseProcess" standard Hotkey method for key(s): "~1 & ~5"
03:58:35:947 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 12 check
03:58:35:951 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Ended
03:58:35:955 | MD |   DEBUG1  | +15    | FadeInStart - Only these keys will interrupt this fade process: Esc
03:58:35:958 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Started
03:58:35:962 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - KeyGroup Esc not in TableKeyGroups ~1joy7&~1joy8,~2joy7&~2joy8,~1&~5,~1&~vkBCsc033,~2&~vkBCsc033,~vk6Bsc04E,PrintScreen,~LShift&~Z,~I&~K,~e&~t,
03:58:35:965 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 1 check
03:58:35:968 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 2 check
03:58:35:971 | MD |   DEBUG2  | +16    | XHotkeyTableCreation - Using standard Hotkey method for key(s): "Esc" to call label: "CustomKeyFadeBypass"
03:58:35:975 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Ended
03:58:35:979 | MD |   DEBUG2  | +0     | FadeInStart - Fade screen scale factor: X=0.833333, Y= 1.111111
03:58:35:982 | MD |   DEBUG1  | +0     | GetFadePicFile - Checking if any Fade Layer 1 images exist in: E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\PC Games\Minecraft\Layer 1*.*
03:58:35:986 | MD |   DEBUG1  | +16    | GetFadePicFile - Checking if any Fade Layer 1 images exist in: E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\PC Games\_Default\Horizontal\Layer 1*.*
03:58:35:989 | MD |   DEBUG1  | +0     | GetFadePicFile - Checking if any Fade Layer 1 images exist in: E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\PC Games\_Default\Layer 1*.*
03:58:35:993 | MD |   DEBUG1  | +0     | GetFadePicFile - Looking for Fade Layer 1 pic: E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\PC Games\_Default\Layer 1*.png
03:58:35:997 | MD |   DEBUG1  | +0     | GetFadePicFile - Found Fade Layer 1 pic: E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\PC Games\_Default\Layer 1.png
03:58:35:001 | MD |   DEBUG1  | +0     | GetFadePicFile - Looking for Fade Layer 1 pic: E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\PC Games\_Default\Layer 1*.gif
03:58:36:004 | MD |   DEBUG1  | +15    | GetFadePicFile - Looking for Fade Layer 1 pic: E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\PC Games\_Default\Layer 1*.tif
03:58:36:007 | MD |   DEBUG1  | +0     | GetFadePicFile - Looking for Fade Layer 1 pic: E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\PC Games\_Default\Layer 1*.bmp
03:58:36:011 | MD |   DEBUG1  | +0     | GetFadePicFile - Looking for Fade Layer 1 pic: E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\PC Games\_Default\Layer 1*.jpg
03:58:36:014 | MD |     INFO  | +0     | GetFadePicFile - Randomized images and Fade  will use E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\PC Games\_Default\Layer 1.png
03:58:36:018 | MD |   DEBUG1  | +16    | GetFadePicFile - Checking if any Fade Extra Layer 1 - Console images exist in: E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\PC Games\Minecraft\Extra Layer 1 - Console*.*
03:58:36:021 | MD |   DEBUG1  | +0     | GetFadePicFile - Checking if any Fade Extra Layer 1 - Console images exist in: E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\PC Games\_Default\Horizontal\Extra Layer 1 - Console*.*
03:58:36:025 | MD |   DEBUG1  | +0     | GetFadePicFile - Checking if any Fade Extra Layer 1 - Console images exist in: E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\PC Games\_Default\Extra Layer 1 - Console*.*
03:58:36:027 | MD |   DEBUG1  | +0     | GetFadePicFile - Checking if any Fade Extra Layer 1 - Console images exist in: E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\_Default\Horizontal\Extra Layer 1 - Console*.*
03:58:36:031 | MD |   DEBUG1  | +0     | GetFadePicFile - Checking if any Fade Extra Layer 1 - Console images exist in: E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\_Default\Extra Layer 1 - Console*.*
03:58:36:139 | MD |     INFO  | +109   | DefaultAnimateFadeIn - Started, direction is: in
03:58:36:142 | MD |     INFO  | +16    | DefaultAnimateFadeIn - Drawing First FadeIn Image.
03:58:36:665 | MD |     INFO  | +514   | DefaultAnimateFadeIn - Ended
03:58:36:679 | MD |     INFO  | +16    | DefaultFadeAnimation - Started
03:58:36:691 | MD |   DEBUG1  | +16    | GetFadePicFile - Checking if any Fade Info Bar images exist in: E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\PC Games\Minecraft\Info Bar*.*
03:58:36:694 | MD |   DEBUG1  | +0     | GetFadePicFile - Checking if any Fade Info Bar images exist in: E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\PC Games\_Default\Horizontal\Info Bar*.*
03:58:36:698 | MD |   DEBUG1  | +0     | GetFadePicFile - Checking if any Fade Info Bar images exist in: E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\PC Games\_Default\Info Bar*.*
03:58:36:702 | MD |   DEBUG1  | +0     | GetFadePicFile - Checking if any Fade Info Bar images exist in: E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\_Default\Horizontal\Info Bar*.*
03:58:36:707 | MD |   DEBUG1  | +15    | GetFadePicFile - Checking if any Fade Info Bar images exist in: E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\_Default\Info Bar*.*
03:58:36:710 | MD |   DEBUG1  | +0     | GetFadePicFile - Looking for Fade Info Bar pic: E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\_Default\Info Bar*.png
03:58:36:713 | MD |   DEBUG1  | +0     | GetFadePicFile - Found Fade Info Bar pic: E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\_Default\Info Bar.png
03:58:36:717 | MD |   DEBUG1  | +0     | GetFadePicFile - Looking for Fade Info Bar pic: E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\_Default\Info Bar*.gif
03:58:36:719 | MD |   DEBUG1  | +16    | GetFadePicFile - Looking for Fade Info Bar pic: E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\_Default\Info Bar*.tif
03:58:36:723 | MD |   DEBUG1  | +0     | GetFadePicFile - Looking for Fade Info Bar pic: E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\_Default\Info Bar*.bmp
03:58:36:727 | MD |   DEBUG1  | +0     | GetFadePicFile - Looking for Fade Info Bar pic: E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\_Default\Info Bar*.jpg
03:58:36:730 | MD |     INFO  | +0     | GetFadePicFile - Randomized images and Fade  will use E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\_Default\Info Bar.png
03:58:36:755 | MD |   DEBUG1  | +31    | GetFadePicFile - Checking if any Fade Layer 3 images exist in: E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\PC Games\Minecraft\Layer 3*.*
03:58:36:758 | MD |   DEBUG1  | +0     | GetFadePicFile - Checking if any Fade Layer 3 images exist in: E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\PC Games\_Default\Horizontal\Layer 3*.*
03:58:36:761 | MD |   DEBUG1  | +0     | GetFadePicFile - Checking if any Fade Layer 3 images exist in: E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\PC Games\_Default\Layer 3*.*
03:58:36:765 | MD |   DEBUG1  | +0     | GetFadePicFile - Checking if any Fade Layer 3 images exist in: E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\_Default\Horizontal\Layer 3*.*
03:58:36:769 | MD |   DEBUG1  | +16    | GetFadePicFile - Checking if any Fade Layer 3 images exist in: E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\_Default\Layer 3*.*
03:58:36:772 | MD |   DEBUG1  | +0     | GetFadePicFile - Looking for Fade Layer 3 pic: E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\_Default\Layer 3*.png
03:58:36:775 | MD |   DEBUG1  | +0     | GetFadePicFile - Found Fade Layer 3 pic: E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\_Default\Layer 3.png
03:58:36:778 | MD |   DEBUG1  | +0     | GetFadePicFile - Looking for Fade Layer 3 pic: E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\_Default\Layer 3*.gif
03:58:36:782 | MD |   DEBUG1  | +15    | GetFadePicFile - Looking for Fade Layer 3 pic: E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\_Default\Layer 3*.tif
03:58:36:785 | MD |   DEBUG1  | +0     | GetFadePicFile - Looking for Fade Layer 3 pic: E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\_Default\Layer 3*.bmp
03:58:36:787 | MD |   DEBUG1  | +0     | GetFadePicFile - Looking for Fade Layer 3 pic: E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\_Default\Layer 3*.jpg
03:58:36:791 | MD |     INFO  | +0     | GetFadePicFile - Randomized images and Fade  will use E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\_Default\Layer 3.png
03:58:36:941 | MD |   DEBUG1  | +156   | FadeInDelay - Started
03:58:37:127 | MD |     INFO  | +187   | DefaultFadeAnimationLoop - Playing 7z fade complete sound: E:\Arcade-PC\Hyperspin\RocketLauncher\Media\Fade\_Default\7z complete.mp3
03:58:38:572 | MD |   DEBUG1  | +1436  | DefaultFadeAnimationLoop - Fade Layer 3 is drawn so animation loop is finished.
03:58:38:622 | MD |   DEBUG1  | +62    | DefaultFadeAnimationLoop - AnimationLoop has finished
03:58:38:626 | MD |   DEBUG1  | +0     | DefaultFadeAnimationLoop - Ended
03:58:38:708 | MD |   DEBUG1  | +78    | DefaultFadeAnimationLoop - Fade Layer 3 is drawn so animation loop is finished.
03:58:39:745 | MD |   DEBUG1  | +1045  | FadeInDelay - Ended
03:58:39:749 | MD |     INFO  | +0     | DefaultFadeAnimation - Ended
03:58:39:772 | MD |   DEBUG1  | +16    | FadeInStart - Ended
03:58:39:775 | MD |     INFO  | +0     | StartGlobalUserFeatures - Starting
03:58:39:779 | MD |   DEBUG2  | +15    | 3rdPartyTools - Ini file location E:\Arcade-PC\hyperspin\RocketLauncher\Lib\3rdPartyToolsPaths.ini
03:58:39:782 | MD |     INFO  | +0     | WinIPAC - Start IPac System Profile Test
03:58:39:786 | MD |     INFO  | +0     | Module Setting - [WinIPAC] - WinIPACPath: H:\WinIPAC\WinIPAC.exe
03:58:39:789 | MD |     INFO  | +0     | Module Setting - [WinIPAC] - WinIPACProfileDir: H:\RocketLauncher\IPacProfiles
03:58:39:839 | MD |    ERROR  | +63    | WinIPAC - The file WinIPAC.exe does not exist at H:\WinIPAC\WinIPAC.exe. Please check your paths!
03:58:39:842 | MD |     INFO  | +0     | WinIPAC - Stop IPac System Profile Test
03:58:39:845 | MD |     INFO  | +0     | IdleVolAdjust - Start IdleVolAdjust Section
03:58:39:851 | MD |     INFO  | +0     | Module Setting - [IdleVolAdjust] - IdleVolPath: E:\Arcade-PC\Hyperspin\RocketLauncher\Idle Volume\IdleVolumeAdjuster.exe
03:58:39:854 | MD |     INFO  | +0     | Module Setting - [IdleVolAdjust] - IdleVolUse: Kill
03:58:39:886 | MD |     INFO  | +47    | Module Setting - [IdleVolAdjust] - IdleVolSystems: PopCap,ScummVM,WoW Action Max,Comics,MUGEN,PC Games, XBMC, Pinball Arcade, Pinball Fx2, Movies, Capcom CPS3
03:58:39:896 | MD |   DEBUG2  | +0     | IdleVolAdjust - PC Games System found in IdleVolSystems list
03:58:39:900 | MD |   DEBUG2  | +0     | IdleVolAdjust - Running IdleVolumeAdjuster Kill with "E:\Arcade-PC\Hyperspin\RocketLauncher\Idle Volume\IdleVolumeAdjuster.exe Kill"
03:58:39:908 | MD |   DEBUG2  | +15    | IdleVolAdjust - Trying to detect if program is running.
03:58:39:914 | MD |   DEBUG2  | +0     | IdleVolAdjust - IdleVolPID = 0
03:58:39:947 | MD |   DEBUG2  | +31    | IdleVolAdjust - Process does not exist.  Not stopping the process and it will not be restarted.
03:58:39:950 | MD |     INFO  | +16    | IdleVolAdjust - Stop IdleVolAdjust Section
03:58:39:954 | MD |     INFO  | +0     | StartGlobalUserFeatures - Ending
03:58:39:957 | MD |   DEBUG1  | +0     | CoverFE - Started
03:58:39:963 | MD |   DEBUG1  | +0     | CoverFE - Ended
03:58:39:966 | MD |     INFO  | +16    | CheckSettings - Started
03:58:39:970 | MD |     INFO  | +0     | PCLauncher - Setting mode to: "standard"
03:58:39:974 | MD |     INFO  | +0     | CheckFile - Checking if E:\Arcade-PC\hyperspin\Emulators\Romfiles\PC\Minecraft\.minecraft\minecraft launcher\Minecraft Launcher.exe exists
03:58:39:008 | MD |   DEBUG1  | +31    | CheckFile - Attributes:
					FileDescription         	1.8.1 Minecraft Launcher
					FileVersion             	3.5.1
					InternalName            	Minecraft Launcher
					LegalCopyright          	TeamExtreme
					OriginalFilename        	Minecraft Launcher.exe
					ProductName             	TeamExtreme Minecraft Launcher
					ProductVersion          	1.8.1
					CompanyName             	TeamExtreme
					File Size:			1674929 bytes
					Created:			12/13/2013 - 2:50:16 PM
					Modified:			5/21/2015 - 2:38:38 AM
03:58:40:037 | MD |     INFO  | +31    | CheckSettings - Ended
03:58:40:040 | MD |     INFO  | +0     | PCLauncher - Launching a standard application.
03:58:40:044 | MD |     INFO  | +16    | Run - Running: E:\Arcade-PC\hyperspin\Emulators\Romfiles\PC\Minecraft\.minecraft\minecraft launcher\"Minecraft Launcher.exe"
03:58:40:073 | MD |   DEBUG1  | +31    | Run - ""Minecraft Launcher.exe" " Process ID: 5824
03:58:40:077 | MD |     INFO  | +0     | PCLauncher - FadeTitle set by user, waiting for "Minecraft launcher"
03:58:40:081 | MD |   DEBUG1  | +0     | GetActiveWindowStatus - Title: CoverFE | Class: AutoHotkeyGUI | State: 0 | X: 0 | Y: 0 | Width: 1600 | Height: 1200 | Window HWND: 0x220494 | Process ID: 5440 | Process Path: E:\Arcade-PC\hyperspin\RocketLauncher\RocketLauncher.exe
03:58:40:084 | MD |     INFO  | +0     | WinWait - Waiting for "Minecraft launcher"
03:59:10:092 | MD |   DEBUG1  | +30014 | GetActiveWindowStatus - Title: TeamExtreme Minecraft Launcher 3.5.1 | Class: SunAwtFrame | State: 0 | X: 373 | Y: 360 | Width: 900 | Height: 580 | Window HWND: 0x1203ce | Process ID: 3316 | Process Path: C:\Program Files (x86)\Java\jre1.8.0_60\bin\javaw.exe
03:59:10:096 | MD |    ERROR  | +0     | There was an error waiting for the window "Minecraft launcher". Please check you have the correct version emulator installed for this module, followed any notes in the module, and have this emulator working outside your Frontend first. Also turn off Fade to see if you are hiding your problem.
03:59:10:099 | MD |   DEBUG1  | +0     | GetActiveWindowStatus - Title: TeamExtreme Minecraft Launcher 3.5.1 | Class: SunAwtFrame | State: 0 | X: 373 | Y: 360 | Width: 900 | Height: 580 | Window HWND: 0x1203ce | Process ID: 3316 | Process Path: C:\Program Files (x86)\Java\jre1.8.0_60\bin\javaw.exe
03:59:10:104 | MD |     INFO  | +16    | WinWaitActive - Waiting for "Minecraft launcher"
03:59:40:105 | MD |   DEBUG1  | +29999 | GetActiveWindowStatus - Title: fadeLayer1 | Class: AutoHotkeyGUI | State: 0 | X: 0 | Y: 0 | Width: 1600 | Height: 1200 | Window HWND: 0x18042a | Process ID: 5440 | Process Path: E:\Arcade-PC\hyperspin\RocketLauncher\RocketLauncher.exe
03:59:40:799 | MD |    ERROR  | +686   | There was an error waiting for the window "Minecraft launcher" to become active. Please check you have the correct version emulator installed for this module, followed any notes in the module, and have this emulator working outside your Frontend first. Also turn off Fade to see if you are hiding your problem.
03:59:40:805 | MD |   DEBUG1  | +0     | FadeInExit - Started
03:59:40:808 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Started
03:59:40:813 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - KeyGroup Esc is in TableKeyGroups ~1joy7&~1joy8,~2joy7&~2joy8,~1&~5,~1&~vkBCsc033,~2&~vkBCsc033,~vk6Bsc04E,PrintScreen,~LShift&~Z,~I&~K,~e&~t,Esc,
03:59:40:818 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 10 check
03:59:40:869 | MD |   DEBUG2  | +62    | XHotkeyTableCreation - Disabled Hotkey for: "Esc"
03:59:40:872 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 11 check
03:59:40:875 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Disabling "CustomKeyFadeBypass" standard Hotkey method for key(s): "Esc"
03:59:40:879 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 12 check
03:59:40:882 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Ended
03:59:40:887 | MD |     INFO  | +16    | DefaultAnimateFadeIn - Started, direction is: out
03:59:41:410 | MD |     INFO  | +515   | DefaultAnimateFadeIn - Ended
03:59:41:463 | MD |   DEBUG2  | +62    | XHotkeyTableCreation - Started
03:59:41:467 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - KeyGroup ~LShift&~Z is in TableKeyGroups ~1joy7&~1joy8,~2joy7&~2joy8,~1&~5,~1&~vkBCsc033,~2&~vkBCsc033,~vk6Bsc04E,PrintScreen,~LShift&~Z,~I&~K,~e&~t,Esc,
03:59:41:470 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 10 check
03:59:41:473 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Disabled Hotkey for: "~LShift & ~Z"
03:59:41:476 | MD |   DEBUG2  | +16    | XHotkeyTableCreation - Post loop 11 check
03:59:41:480 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Using standard Hotkey method for key(s): "~LShift & ~Z" to call label: "StartMulti"
03:59:41:483 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 12 check
03:59:41:486 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Ended
03:59:41:496 | MD |   DEBUG2  | +15    | XHotkeyTableCreation - Started
03:59:41:499 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - KeyGroup ~I&~K is in TableKeyGroups ~1joy7&~1joy8,~2joy7&~2joy8,~1&~5,~1&~vkBCsc033,~2&~vkBCsc033,~vk6Bsc04E,PrintScreen,~LShift&~Z,~I&~K,~e&~t,Esc,
03:59:41:503 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 10 check
03:59:41:508 | MD |   DEBUG2  | +16    | XHotkeyTableCreation - Disabled Hotkey for: "~I & ~K"
03:59:41:512 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 11 check
03:59:41:515 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Using standard Hotkey method for key(s): "~I & ~K" to call label: "StartMulti"
03:59:41:519 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 12 check
03:59:41:522 | MD |   DEBUG2  | +16    | XHotkeyTableCreation - Ended
03:59:41:525 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Started
03:59:41:529 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - KeyGroup ~1&~vkBCsc033 is in TableKeyGroups ~1joy7&~1joy8,~2joy7&~2joy8,~1&~5,~1&~vkBCsc033,~2&~vkBCsc033,~vk6Bsc04E,PrintScreen,~LShift&~Z,~I&~K,~e&~t,Esc,
03:59:41:532 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 10 check
03:59:41:536 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Disabled Hotkey for: "~1 & ~vkBCsc033"
03:59:41:539 | MD |   DEBUG2  | +15    | XHotkeyTableCreation - Post loop 11 check
03:59:41:542 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Using standard Hotkey method for key(s): "~1 & ~vkBCsc033" to call label: "TogglePauseMenuStatus"
03:59:41:546 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 12 check
03:59:41:550 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Ended
03:59:41:555 | MD |   DEBUG2  | +16    | XHotkeyTableCreation - Started
03:59:41:563 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - KeyGroup ~2&~vkBCsc033 is in TableKeyGroups ~1joy7&~1joy8,~2joy7&~2joy8,~1&~5,~1&~vkBCsc033,~2&~vkBCsc033,~vk6Bsc04E,PrintScreen,~LShift&~Z,~I&~K,~e&~t,Esc,
03:59:41:566 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 10 check
03:59:41:569 | MD |   DEBUG2  | +15    | XHotkeyTableCreation - Disabled Hotkey for: "~2 & ~vkBCsc033"
03:59:41:572 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 11 check
03:59:41:575 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Using standard Hotkey method for key(s): "~2 & ~vkBCsc033" to call label: "TogglePauseMenuStatus"
03:59:41:579 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 12 check
03:59:41:581 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Ended
03:59:41:584 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Started
03:59:41:588 | MD |   DEBUG2  | +16    | XHotkeyTableCreation - KeyGroup ~vk6Bsc04E is in TableKeyGroups ~1joy7&~1joy8,~2joy7&~2joy8,~1&~5,~1&~vkBCsc033,~2&~vkBCsc033,~vk6Bsc04E,PrintScreen,~LShift&~Z,~I&~K,~e&~t,Esc,
03:59:41:591 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 10 check
03:59:41:594 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Disabled Hotkey for: "~vk6Bsc04E"
03:59:41:597 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 11 check
03:59:41:600 | MD |   DEBUG2  | +16    | XHotkeyTableCreation - Using standard Hotkey method for key(s): "~vk6Bsc04E" to call label: "TogglePauseMenuStatus"
03:59:41:603 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 12 check
03:59:41:607 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Ended
03:59:41:609 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Started
03:59:41:612 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - KeyGroup ~1joy7&~1joy8 is in TableKeyGroups ~1joy7&~1joy8,~2joy7&~2joy8,~1&~5,~1&~vkBCsc033,~2&~vkBCsc033,~vk6Bsc04E,PrintScreen,~LShift&~Z,~I&~K,~e&~t,Esc,
03:59:41:616 | MD |   DEBUG2  | +15    | XHotkeyTableCreation - Post loop 10 check
03:59:41:619 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 11 check
03:59:41:628 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Using extended Hotkey method for key(s): "~1joy7&~1joy8" to call a group label
03:59:41:632 | MD |   DEBUG2  | +16    | XHotkeyTableCreation - Post loop 12 check
03:59:41:639 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Ended
03:59:41:642 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Started
03:59:41:651 | MD |   DEBUG2  | +15    | XHotkeyTableCreation - KeyGroup ~2joy7&~2joy8 is in TableKeyGroups ~1joy7&~1joy8,~2joy7&~2joy8,~1&~5,~1&~vkBCsc033,~2&~vkBCsc033,~vk6Bsc04E,PrintScreen,~LShift&~Z,~I&~K,~e&~t,Esc,
03:59:41:654 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 10 check
03:59:41:662 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 11 check
03:59:41:666 | MD |   DEBUG2  | +16    | XHotkeyTableCreation - Using extended Hotkey method for key(s): "~2joy7&~2joy8" to call a group label
03:59:41:669 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 12 check
03:59:41:672 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Ended
03:59:41:675 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Started
03:59:41:684 | MD |   DEBUG2  | +16    | XHotkeyTableCreation - KeyGroup ~1&~5 is in TableKeyGroups ~1joy7&~1joy8,~2joy7&~2joy8,~1&~5,~1&~vkBCsc033,~2&~vkBCsc033,~vk6Bsc04E,PrintScreen,~LShift&~Z,~I&~K,~e&~t,Esc,
03:59:41:687 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 10 check
03:59:41:696 | MD |   DEBUG2  | +15    | XHotkeyTableCreation - Disabled Hotkey for: "~1 & ~5"
03:59:41:699 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Post loop 11 check
03:59:41:703 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Using standard Hotkey method for key(s): "~1 & ~5" to call label: "CloseProcess"
03:59:41:718 | MD |   DEBUG2  | +16    | XHotkeyTableCreation - Post loop 12 check
03:59:41:720 | MD |   DEBUG2  | +0     | XHotkeyTableCreation - Ended
03:59:41:729 | MD |   DEBUG1  | +15    | FadeInExit - Ended, waiting for user to close launched application
03:59:41:731 | MD |     INFO  | +0     | PCLauncher - Waiting for FadeTitle "Minecraft launcher" to close.
03:59:41:739 | MD |     INFO  | +0     | WinWaitClose - Waiting for "Minecraft launcher" to close
03:59:41:852 | MD |     INFO  | +125   | StopGlobalUserFeatures - Starting
03:59:41:856 | MD |     INFO  | +0     | WinIPAC - Start IPac Profile Restore
03:59:41:861 | MD |     INFO  | +0     | WinIPAC - Alternative IPac profile not used.  No need to restore.
03:59:41:864 | MD |     INFO  | +0     | WinIPAC - Stop IPac Profile Restore
03:59:41:869 | MD |     INFO  | +16    | IdleVolAdjust - Start IdleVolAdjust resume section
03:59:41:872 | MD |   DEBUG2  | +0     | IdleVolAdjust - Not adjusting volume. IdleVolUse set to: No
03:59:41:877 | MD |     INFO  | +0     | IdleVolAdjust - Stop IdleVolAdjust resume section
03:59:41:883 | MD |     INFO  | +15    | StopGlobalUserFeatures - Ending
03:59:41:887 | MD |     INFO  | +0     | ExitModule - Started
03:59:41:891 | MD |     INFO  | +0     | Starting Updating Statistics:
03:59:41:895 | MD |   DEBUG2  | +0     | Total Elapsed Time in Pause in seconds: 0
03:59:41:899 | MD |   DEBUG2  | +16    | gameSectionStartTime:20985082
03:59:41:903 | MD |   DEBUG2  | +0     | ElapsedTime:0
03:59:41:908 | MD |   DEBUG2  | +0     | Statistics cleared game name: Minecraft
03:59:41:982 | MD |   DEBUG2  | +78    | Loaded game statistics from ini files:
					Number_of_Times_Played: 143
					Last_Time_Played: Tuesday October 13, 2015 03:55:02 AM
					Average_Time_Played: 36
					Total_Time_Played: 5215
					System_Total_Played_Time: 46247
					Total_Global_Played_Time: 42590
03:59:41:985 | MD |   DEBUG2  | +0     | Updated Statistics: Number_of_Times_Played: 144
					Last_Time_Played: Tuesday October 13, 2015 03:59:41 AM
					Average_Time_Played: 36
					Total_Time_Played: 5215
					System_Total_Played_Time: 46247
					Total_Global_Played_Time: 42590
03:59:42:057 | MD |     INFO  | +78    | Game section statistics updated.
03:59:42:060 | MD |     INFO  | +0     | RunKeymapper - Started, using method "unload"
03:59:42:063 | MD |     INFO  | +0     | GetJoystickArray - Started
03:59:42:067 | MD |   DEBUG2  | +0     | GetJoystickArray - Joysticks Detected: 0000000000000000
03:59:42:071 | MD |     INFO  | +16    | GetJoystickArray - Ended
03:59:42:074 | MD |   DEBUG2  | +0     | RunKeymapper - Looping through controllers to find xpadder profiles for each one
03:59:42:077 | MD |     INFO  | +0     | RunXpadder - Started
03:59:42:080 | MD |     INFO  | +0     | Process - Exist JoyToKey.exe
03:59:42:086 | MD |   DEBUG2  | +15    | RunXpadder - Closing xpadder to refresh controllers seen by xpadder
03:59:42:089 | MD |     INFO  | +0     | Run - Running: E:\Arcade-PC\hyperspin\zips\tools\xpadder\Xpadder.exe /C
03:59:42:108 | MD |   DEBUG1  | +16    | Run - "Xpadder.exe /C" Process ID: 5232
03:59:42:112 | MD |   DEBUG2  | +0     | RunXpadder - Creating an array of connected controllers and profiles to arrange according to the order found in E:\Arcade-PC\hyperspin\zips\tools\xpadder\xpadder.ini
03:59:42:115 | MD |     INFO  | +15    | Process - WaitClose Xpadder.exe 2
03:59:42:236 | MD |   DEBUG2  | +110   | RunXpadder - Reading the order in E:\Arcade-PC\hyperspin\zips\tools\xpadder\xpadder.ini and arranging profiles found to match that order
03:59:42:241 | MD |   DEBUG2  | +15    | RunXpadder - No more controllers to be found
03:59:42:245 | MD |  WARNING  | +0     | RunXpadder - No profiles found and nothing to tell Xpadder to load
03:59:42:249 | MD |     INFO  | +0     | RunXpadder - Ended
03:59:42:253 | MD |     INFO  | +0     | RunKeymapper - Ended
03:59:42:260 | MD |     INFO  | +16    | ExitModule - Ended
03:59:42:263 | MD |     INFO  | +0     | End of Module Logs
03:59:42:399 | RL |     INFO  | +68781 | Main - Module ended, exiting RocketLauncher normally
03:59:42:403 | RL |     INFO  | +0     | ExitScript - Started
03:59:42:475 | RL |     INFO  | +78    | SystemCursor - Restoring mouse cursor
03:59:42:492 | RL |     INFO  | +16    | ExitScript - Ended

[/CODE]
 

djvj

Administrator
Staff member
Developer
It would obviously only work as a postlaunch script as you need it to handle the launcher window after launched.

Take RL out of the picture and test it by running manually after the launcher window is up. If it still doesn't work, take a screenshot of your launcher and post it here as it looks like you already didn't follow the clear instructions I put in my post:


03:58:39:008 | MD | DEBUG1 | +31 | CheckFile - Attributes:
FileDescription 1.8.1 Minecraft Launcher
FileVersion 3.5.1
InternalName Minecraft Launcher
LegalCopyright TeamExtreme
OriginalFilename Minecraft Launcher.exe
ProductName TeamExtreme Minecraft Launcher
ProductVersion 1.8.1
CompanyName TeamExtreme
File Size: 1674929 bytes
Created: 12/13/2013 - 2:50:16 PM
Modified: 5/21/2015 - 2:38:38 AM

Reading instructions is vital!
 

Ninja2bseen

Member
RL Member
Ah I figured that having a newer version didn't matter and it was always older versions I would be in trouble. I guess I'll just hang with what I got

I'm using pclauncher v 2.1.7, everything is updated in launcher

Thanks for entertaining my posts though

Sent from my iPad using Tapatalk
 

djvj

Administrator
Staff member
Developer
Actually, I'm not sure about the versioning on that launcher. I only found your version on older versions of minecraft. The newer ones had the version I posted. If you want automation with RL, use mine. I kind of liked it better as well. Your version I had to input my username every time. where as mine I didn't have to.
 

Dime333

Active member
RL Member
This works for me, make sure you are using this version launcher (v2.3.0.16) and it's fully automated:

Code:
; Minecraft Launcher
; Author: djvj
; Make sure to use Extreme Launcher v2.3.0.16. Any other version may not work.


WinWait, Extreme Launcher
WinGet, ID, ID, Extreme Launcher    ; get hwnd of launcher
WinGet, launcherControlList, ControlList, ahk_id %ID%
Loop, Parse, launcherControlList, `n
{    ControlGetText, controlText, %A_LoopField%
    If (controlText = "Play") {
        playControl := A_LoopField
        Break
    }
}
ControlClick, %playControl%, ahk_id %ID%,,Left
WinWait, Minecraft ahk_class LWJGL
ExitApp

Does not need to be compiled nor run as admin over here. If need be, you can remove the last winwait line, not really necessary since PCLauncher should handle that. If you find fade exiting too early, then leave it in.

Basically the other launcher is using a type of window that you can't read controls or get their text, this one you can read all that so it can be automated to do whatever you want.

Unfortunately. It won't work for me. I guess I have the latest launcher since it's the one that I got when I downloaded the game from minecraft.net. I'm not sure how to obtain another version.

mine.png

I tried swapping "extreme Launcher" with "ahk_class SunAwtFrame" since that's what my launcher is called, but it didn't work. This is so frustrating. I really appreciate the help. Could you try one last thing for me djvj? Could you make the fade screen ""click-through" so I can just use a simple Mouseclick command?
 
Last edited:
Top