| |
征途召唤天仙打怪练级脚本
[General]
Description=征途召唤
BeginHotkey=122
BeginHotkeyMod=0
RunOnce=0
Enable=1
[Repeat]
Type=1
Number=261168
[CallBack]
OnSetup=
[Comment]
Content=征途召唤天仙打怪练级.
【功能说明】.
征途召唤天仙打怪练用的脚本.
能自动加红,给天仙加状态,自动拣物,自动切换天仙的攻击方式。.
【使用说明】.
技能.
F1放召唤天仙.
F2放天神祝福.
F5放强化召唤.
F8放幻影迷踪.
F9放原神增强.
物品栏6放红。
练级时要选中自己的天仙,否则不能给天仙加天神祝神神福。.
系统设置:.
分辨率:1024×768 .
色彩模式:16位色.
在集成显卡上测试通!独立显卡上没测试,好像颜色不同。.
【制作日期】.
<写下您的制作日期>
[Script]
Sub main
Rem start
//检测BB是否存在
Gosub BBcz
KeyPress 192 1
//元神增强
Gosub yszq
KeyPress 192 1
//检测是否选定自己的BB
Gosub bbxd
KeyPress 192 1
//角色血量检测
Gosub jsxljc
KeyPress 192 1
Gosub bbgxzt
KeyPress 192 1
Gosub hymz
KeyPress 192 1
Return main
//检测是否选定自己的BB
Sub bbxd
VBSCall Call FindCenterColor(285,8,302,27,"BDCBEF",x,y)
If x>=0 and y>=0
Gosub tszf
EndIf
Return bbxd
//检测BB是否存在
Sub BBcz
VBSCall Call FindCenterColor(135,647,144,672,"639ABD",x,y)
If x>=0 and y>=0
Gosub BBjxjc
Else
KeyPress 112 1
EndIf
Return BBcz
//元神增强
Sub yszq
VBSCall Call FindCenterColor(87,37,259,67,"ADDBF7",x,y)
If x>=0 and y>=0
KeyPress 192 1
Else
KeyPress 120 1
EndIf
Return yszq
//天神祝福
Sub tszf
VBSCall Call FindCenterColor(343,37,550,67,"F7CBEF",x,y)
If x>=0 and y>=0
KeyPress 192 1
Else
KeyPress 113 1
EndIf
Return tszf
//强化检测
Sub BBjxjc
VBSCall Call FindCenterColor(224,663,250,672,"394952",x,y)
If x>=0 and y>=0
KeyPress 116 1
Goto start
EndIf
VBSCall Call FindCenterColor(224,663,250,672,"213439",x,y)
If x>=0 and y>=0
KeyPress 116 1
Goto start
EndIf
VBSCall Call FindCenterColor(224,663,250,672,"000000",x,y)
If x>=0 and y>=0
KeyPress 116 1
Goto start
EndIf
Return BBjxjc
//角色血量检测
Sub jsxljc
VBSCall Call FindCenterColor(9,19,15,28,"000000",x,y)
If x>=0 and y>=0
KeyPress 54 1
EndIf
Return jsxljc
//BB攻击状态
Sub bbgxzt
VBSCall Call FindColorEx(500,166,522,283,"210CEF",1,0.8,x,y)
If x>=0 and y>=0
Gosub tz
Else
KeyDown 17 1
KeyPress 65 1
KeyUp 17 1
EndIf
Return bbgxzt
//幻影迷踪
Sub hymz
IfColor 310 728 C6a66b 0
KeyDown 192 1
Delay 300
KeyUp 192 1
KeyPress 119 0
Else
KeyPress 192
EndIf
Return hymz
//BB攻击状态调整
Sub tz
IfColor 291 678 10aade 0
KeyDown 17 1
KeyPress 83 1
KeyUp 17 1
Else
KeyPress 192 1
EndIf
Return tz |
|