目前gee引擎私服版本也有很多,也增生了很多的反挂插件,审判反挂插件算是比较主流的一款插件。现在给用户分享一个随机多地图来回切换的挂机脚本,这样在打怪的时候会更加的效率。
gee定制版辅助过审判反挂2021最新三地图随机切换脱机脚本分享如下:
if (获取地图名()=="盟重省") then --此地图进图,如发现地图名字错误请修改
血量=角色("当前HP")
最大血量=角色("最大HP")
血量百分比=(血量/最大血量)*100
if 检测复活()==1 then --判断可不删除
return
end
if 获取窗口("包裹")==1 then
按键("f9")
end
if 获取窗口("NPC对话框")==1 then
按键("esc")
end
if 获取窗口("对话框")==1 then
按键("enter")
end
if 血量百分比<90 then --血量低于90%不进图
按键("esc")
return
end
math.randomseed(tostring(os.time()): reverse():sub(1,6)) --毫秒级随机库
随机进入=math.random(0,2) --随机0-2 表示随机3个地图
if 随机进入==0 then --0进入挂机地图1
if 寻路(337,346,2)==1 then --寻路到此处开始对话
对话坐标(342,353) --对话的NPC坐标
等待(800)
if 获取窗口("NPC对话框")==1 then
点击("@进入1",0)
等待(500)
if 获取窗口("对话框")==1 then
按键("enter")
等待(500)
end
end
end
elseif 随机进入==1 then --1进入挂机地图2
if 寻路(339,350,2)==1 then --寻路到此处开始对话
对话坐标(340,352) --对话的NPC坐标
等待(800)
if 获取窗口("NPC对话框")==1 then
点击("@进入1",0)
等待(500)
if 获取窗口("对话框")==1 then
按键("enter")
等待(500)
end
end
end
elseif 随机进入==2 then --2进入挂机地图3
if 寻路(339,350,2)==1 then --寻路到此处开始对话
对话坐标(338,352) --对话的NPC坐标
等待(800)
if 获取窗口("NPC对话框")==1 then
点击("@进入1",0)
等待(500)
if 获取窗口("对话框")==1 then
按键("enter")
等待(500)
end
end
end
end
end