Difference between revisions of "Metro Cop"

From Sinden Lightgun
Jump to navigation Jump to search
Line 1: Line 1:
 +
 +
{{infobox
 +
|title = Metro Cop
 +
|logo = MetroCopLogo.jpg
 +
|category = ItchIo Games
 +
|download = [https://helpcomputer.itch.io/metro-cop Itch.io]
 +
|license = Free
 +
|release = Jan, 2018
 +
|type = Shooter
 +
|developer = helpcomputer0
 +
|players = 1 Player
 +
|titleshot = MetroCopTitle
 +
|gameplayshot = MetroCopGameplay.png
 +
|note =
 +
}}
 +
 
[[File:MetroCop.png|alt=Metro Cop gameplay screenshot|frameless]]
 
[[File:MetroCop.png|alt=Metro Cop gameplay screenshot|frameless]]
  
Metro Cop is a web based online "demake" of virtua cop. Its free to play and can be launched from a front end or similar using the AHK script example bellow.
+
Metro Cop is a web based online "demake" of Virtua Cop. Its free to play and can be launched from a front end or similar using the AHK script example below.
  
You can play the game [https://helpcomputer.itch.io/metro-cop HERE]
+
You can play the game at [https://helpcomputer.itch.io/metro-cop Itch.io]
  
You can use these example scripts to launch it in full screen (Thanks to Scott W for the Script):
+
You can use these example scripts to launch it in full screen (Thanks to Scott W for the script):
  
 
Minimized Window:
 
Minimized Window:

Revision as of 15:11, 31 December 2022



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

Metro Cop gameplay screenshot

Metro Cop is a web based online "demake" of Virtua Cop. Its 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
}