//左边
            stepx=-100
        EndIf 
        stepy=stepx*Mapmy/Mapmx
        //根据角度取得y值
        //有可能出现值过大,比如比较尖的角。
        //模糊偏移
        If stepy>120
            stepy=100
        ElseIf stepy<-100
            stepy=-90
        EndIf 
        stepx=stepx+PosB(0)
        stepy=stepy+PosB(1)
        MoveTo stepx stepy
        Delay 400
        LeftClick 1
        Delay 400
        SelectedET=0
    EndIf 
Return 
EndScript