how do you edit the config file to open full screen instead of a window for computer games like crime patrol and drug wars?
First of all you try using search and reading the LED light gun thread..... The answer to that is in there......
But.... I'll give you the answer anyway.
First of all, get hold of a piece of software called AutoHotkey. It's freeware so just do a search on the web for it. Then create the following script for it:
************************************
Run,mdm.exe ; Run MadDog McCree
IfWinNotExist,Mad Dog McCree
{
winwait,Mad Dog McCree,,100
WinActivate,Mad Dog McCree
Send f ; Fullscreen
Send r ; reload don't move the cursor down
return
}
else
{
WinActivate,Mad Dog McCree
Send f ; Fullscreen
Send r ; Reload don't move the cursor down
return
}
*1::Send {LControl}; like LControl starts the game I remap to the '1' key
ExitApp ; Kill this script
return
************************************
That one is for Mad Dog McCree but it's easily modified for the other American Laser Games.
That will run it full screen at startup and not move your cursor on reload.
Best Regards,
Julian (Fozzy The Bear)