Return 投球打球
Sub 跑壘傳球
    IfColor 20,749,ffffff,2
        IfColor 455,748,ffffff,2
            IfColor 415,750,ffffff,1
                // 沒分數,跑壘得分
                If N=0 and P = 1
                    KeyPress 87,1
                    If Play=1
                        KeyPress 81,1
                    EndIf 
                    Delay 500
                    // 有得分,回壘
                ElseIf N=1 and P = 1 and Back=1
                    KeyPress 69,1
                    Delay 500
                EndIf 
                // 有分數,傳球刺殺出局
                If N=1 and P = 0
                    KeyPress 81,1
                    For 5
                        KeyPress 83,1
                        Delay 100
                    EndFor 
                    // 無分數,不動
                ElseIf N=0 and P = 0
                    Delay 500
                EndIf 
            EndIf 
        EndIf 
    EndIf 
Return 跑壘傳球