Difference between revisions of "Metro Cop"

From Sinden Lightgun
Jump to navigation Jump to search
Line 72: Line 72:
 
return
 
return
  
RButton::                             ;Will let you reload by shooting offscreen (MONITOR HAS TO BE SET TO 1920x1080 RESOLUTION!)
+
RButton::                   ;will let you shoot off screen to reload
MouseGetPos, xposb, yposb
+
MouseClick, left, 960, 940
BlockInput, On
+
return
MouseMove, 960, 940
 
sleep, 100
 
        Click 960, 940
 
BlockInput, Off
 
Return
 
  
 
Esc::
 
Esc::

Revision as of 18:30, 7 April 2024



ItchIo Games
Download: Itch.io
License: Free
Game info
Developer: helpcomputer0
Released: Jan, 2018
Players: 1 Player
Type: Shooter
MetroCopTitle.png
MetroCopGameplay.png

Metro Cop is a web-based online "demake" of Virtua Cop. It's free to play and can be launched from a front end or similar using the AHK script example below.

You can play the game at Itch.io

You can use these example scripts to launch it in full screen (Thanks to Scott W for the script):

Minimized Window:

#SingleInstance Force
run helpcomputer.itch.io/metro-cop
Sleep 2000
Click 508, 400
Sleep 2000
Click 880, 650
~RButton::
{
MouseGetPos CurX, CurY
MouseClick, left, 900, 900
Click 900, 900
MouseMove %CurX%, %CurY%, 0
}
return
~Esc::
{
ExitApp
}

Fullscreen window:

#SingleInstance Force
run helpcomputer.itch.io/metro-cop
Sleep 2000
Click 912, 368
Sleep 2000
Click 1320, 650
~RButton::
{
MouseGetPos CurX, CurY
MouseClick, left, 900, 900
Click 900, 900
MouseMove %CurX%, %CurY%, 0
}
return
~Esc::
{
ExitApp
}

Sample AHK Script

Run, https://helpcomputer.itch.io/metro-cop
Sleep 3000
Click 912, 420
Sleep 2000
Click 1320, 680
return

RButton::                    ;will let you shoot off screen to reload
MouseClick, left, 960, 940
return

Esc::
    Process,Close,Firefox.exe
    Run,taskkill /im "Firefox" /F
    ExitApp
return