主要是加了砸蛋的内容,之前有游戏里的朋友说砸蛋的宏会导致掉线,所以就干脆把两个部分整合起来了
宏是开关式的 用前点一下宏 然后聊天频道会提示开启 不需要时再点下宏 就关掉了
就这样吧
/script hy1n = hy1n or false
if hy1n then
hy1n=false;OutputMessage("MSG_SYS","关闭【龙门金蛋 胡月宝箱辅助】\n")
else
hy1n=true;OutputMessage("MSG_SYS","启动【龙门金蛋 胡月宝箱辅助】,祝您好运!\n")
end
RegisterEvent("NPC_ENTER_SCENE",function()
if not hy1n then return end
local n=GetNpc(arg0)
local p=GetClientPlayer()
local d = GetCharacterDistance(p.dwID, arg0) / 64
if (n.szName=="胡月宝箱" or n.szName=="龙门金蛋") and d < 6 then
SelectTarget(TARGET.NPC,arg0)
InteractNpc(arg0)
end
end)
RegisterEvent("OPEN_WINDOW",
function()
if not hy1n then return end
if string.find(arg1,"运功击裂金蛋宝箱") then
GetClientPlayer().WindowSelect(arg0,0)
CloseDialoguePanel(true)
end
end)