catfist
5/5/2017 - 2:57 PM

グラブル島巡りわんこそばスクリプト

グラブル島巡りわんこそばスクリプト

http://game.granbluefantasy.jp/#quest/supporter/300011/1
http://game.granbluefantasy.jp/#quest/supporter/300021/1
http://game.granbluefantasy.jp/#quest/supporter/300031/1
http://game.granbluefantasy.jp/#quest/supporter/300041/1
http://game.granbluefantasy.jp/#quest/supporter/300061/1
http://game.granbluefantasy.jp/#quest/supporter/300071/1
http://game.granbluefantasy.jp/#quest/supporter/300081/1
http://game.granbluefantasy.jp/#quest/supporter/300091/1
http://game.granbluefantasy.jp/#quest/supporter/300111/1
http://game.granbluefantasy.jp/#quest/supporter/300121/1
http://game.granbluefantasy.jp/#quest/supporter/300141/1
http://game.granbluefantasy.jp/#quest/supporter/300151/1
http://game.granbluefantasy.jp/#quest/supporter/300171/1
http://game.granbluefantasy.jp/#quest/supporter/300181/1
http://game.granbluefantasy.jp/#quest/supporter/300191/1
http://game.granbluefantasy.jp/#quest/supporter/300201/1
http://game.granbluefantasy.jp/#quest/supporter/300211/1
http://game.granbluefantasy.jp/#quest/supporter/300221/1
http://game.granbluefantasy.jp/#quest/supporter/300231/1
http://game.granbluefantasy.jp/#quest/supporter/300241/1
http://game.granbluefantasy.jp/#quest/supporter/300251/1
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; グラブル島巡りわんこそばスクリプト
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; [使い方]
; ※他にChromeのタブが開いていない状態で使用
; ※一時停止する場合は「Ctrl+S」、中断する場合は「Ctrl+X」を押す
; 1.スクリプトを実行する
; 2.クエストのサポート召喚石選択画面になるので、選択して普通にバトル
; 3.リザルト画面になったらタブを閉じる
; 4.次のクエストが開くので、繰り返し
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;


#SingleInstance

; loopでURLリスト読み込み
loop, read, %A_ScriptDir%\gbf_url_list.txt
{
    loop, 3
    {
        run, Chrome.exe %A_LoopReadLine%, , ,
        WinWait, - Google Chrome, Chrome Legacy Window, 4000
        ; MsgBox, , %A_ScriptName%, opened,
        WinWaitClose, , , 4000
        ; MsgBox, , %A_ScriptName%, closed,
    }
}

SetTitleMatchMode, 2 ; タイトルを中間一致検索

^x:: ; スクリプト終了
    MsgBox, , %A_ScriptName%, %A_ScriptName%: exit, 
    ExitApp, 
    Return
^s:: ; スクリプトを一時停止
    Pause
    Return

ExitApp