#Persistent ; スクリプトを常駐させる
SendMode Input ; キーストローク送信モードを高速化
Loop ; 無限ループを開始
{
if !IsGameRunning() and !IsGameBarRunning()
{
Send, {LWin Down}{g}{LWin Up} ; Xbox Game Barを起動
Sleep, 500 ; 一定時間待機(Xbox Game Barが開くのを待つ)
Click, 1440, 540 ; xとyはクリックしたい画面上の座標
}
Sleep, 10000 ; 10秒待機してからループの先頭に戻る
}
IsGameRunning() {
Process, Exist, Game.exe ; Gameは実行されたくないプロセス名
return ErrorLevel != 0 ; プロセスが実行中であればtrueを返す
}
IsGameBarRunning() {
Process, Exist, GameBar.exe
return ErrorLevel != 0 ; プロセスが実行中であればtrueを返す
}
More than 1 year has passed since last update.
Register as a new user and use Qiita more conveniently
- You get articles that match your needs
- You can efficiently read back useful information
- You can use dark theme