Difference between revisions of "Metro Cop"

From Sinden Lightgun
Jump to navigation Jump to search
Line 5: Line 5:
You can play the game [https://helpcomputer.itch.io/metro-cop HERE]
You can play the game [https://helpcomputer.itch.io/metro-cop HERE]


You can use this example script 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:
<syntaxhighlight lang="ahk">
<syntaxhighlight lang="ahk">
#SingleInstance Force
Minimized window script AHK

<nowiki>#</nowiki>SingleInstance Force

run helpcomputer.itch.io/metro-cop
run helpcomputer.itch.io/metro-cop

Sleep 2000
Sleep 2000

Click 508, 400
Click 508, 400

Sleep 2000
Sleep 2000

Click 880, 650
Click 880, 650

~RButton::
~RButton::

{
{

MouseGetPos CurX, CurY
MouseGetPos CurX, CurY

MouseClick, left, 900, 900
MouseClick, left, 900, 900

Click 900, 900
Click 900, 900

MouseMove %CurX%, %CurY%, 0
MouseMove %CurX%, %CurY%, 0

}
}

return
return

~Esc::
~Esc::

{
{

ExitApp
ExitApp

}
}
</syntaxhighlight>Fullscreen window:<syntaxhighlight lang="ahk">

#SingleInstance Force
Fullscreen window

<nowiki>#</nowiki>SingleInstance Force

run helpcomputer.itch.io/metro-cop
run helpcomputer.itch.io/metro-cop

Sleep 2000
Sleep 2000

Click 912, 368
Click 912, 368

Sleep 2000
Sleep 2000

Click 1320, 650
Click 1320, 650

~RButton::
~RButton::

{
{

MouseGetPos CurX, CurY
MouseGetPos CurX, CurY

MouseClick, left, 900, 900
MouseClick, left, 900, 900

Click 900, 900
Click 900, 900

MouseMove %CurX%, %CurY%, 0
MouseMove %CurX%, %CurY%, 0

}
}

return
return

~Esc::
~Esc::

{
{

ExitApp
ExitApp

}
}
</syntaxhighlight>
</syntaxhighlight>

Revision as of 11:39, 7 December 2022

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 bellow.

You can play the game HERE

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
}