你的位置:首页 > 视频教程

GOM助手比起挖矿脚本示例

2016/10/13 11:43:53      点击:
本次带来GOM助手比起挖矿脚本示例:
--比奇挖矿
local hoename="鹤嘴锄"

function 回城()
	--卖武器
	if 是否需要卖(5,6,43) then
		移动到范围2("0103",19,18,5)
		等待(1500)
		坐标对话(19,18)
		等待(1500)
		选择("@sell")
		等待(1500)
		卖(5,6,43)
	end
	local weaponname=获取装备信息(1,1)
	if weaponname~=hoename then
		--无武器或武器不是锄头,买个装备
		移动到范围2("0103",19,18,5)
		等待(1500)
		坐标对话(19,18)
		等待(1500)
		选择("@buy")
		等待(1500)
		买装备(hoename)
		等待(1500)
		使用装备(hoename,1)
		等待(1500)
	else
		--修武器
		if 是否需要修理(50,1) then
			移动到范围2("0103",19,18,5)
			等待(1500)
			坐标对话(19,18)
			等待(1500)
			选择("@repair")
			等待(1500)
			修理(1)
		end
	end
	--去比奇矿洞
	移动到范围2("0",661,218,3)
	等待(1500)
	坐标对话(664,214)
	等待(1500)
	选择("@wakuang")
	等待(3000)
	return 挂机()
end

function 挂机()
	开始挖矿()
	return 回城()
end

do
	--开始
	local mapid=获取地图id()
	if mapid=="D412" then
		挂机()
	else
		回城()
	end
end