只需要在开锁界面,点击2次“开锁”即可100%完成解锁。
PS:新增开关,需要此功能时开启,不需要时可以关闭。
<一定要点这复制宏代码>
开锁界面原版:
/script bUnLock = bUnLock or false
if not bUnLock then
OutputMessage("MSG_SYS","自动<开锁>已开启。弹出<开锁>界面,请点击<开锁>完成解锁。\n")
bUnLock = true
else
OutputMessage("MSG_SYS","自动<开锁>已关闭。\n")
bUnLock = false
end
RegisterOnce=RegisterOnce
if not RegisterOnce then
RegisterEvent("RENDER_FRAME_UPDATE",function()
if not bUnLock then return end
/LockPanel")
if frame and frame:IsVisible() then
local scrollbar = frame:Lookup("ScrollBar_Lock")
local imgPercent = frame:Lookup("", "Handle_Lock"):Lookup("Image_Percent")
if scrollbar then
if not imgPercent:IsVisible() then
scrollbar:SetScrollPos(100)
else
local nValue = math.floor(imgPercent:GetPercentage() * 100)
scrollbar:SetScrollPos(nValue)
end
end
end
end)
RegisterEvent("OPEN_WINDOW",function()
if not bUnLock then return end
if string.find(arg1, "LOCK_PANEL") then
GetClientPlayer().WindowSelect(arg0,0)
end
end)
end
开锁界面精简版:
/script bUn=bUn or false
if not bUn then
OutputMessage("MSG_SYS","自动<开锁>开启。\n")
bUn=true
else
OutputMessage("MSG_SYS","自动<开锁>关闭。\n")
bUn=false
end
rOnce=rOnce
if not rOnce then
RegisterEvent("RENDER_FRAME_UPDATE",function()
if not bUn then return end
/LockPanel")
if fR and fR:IsVisible() then
local sC=fR:Lookup("ScrollBar_Lock")
local iP=fR:Lookup("", "Handle_Lock"):Lookup("Image_Percent")
local btn=fR:Lookup("Btn_Lock_Open")
if fR:GetAlpha()>0 then
fR:SetAlpha(0)
fR:SetSize(160,36)
btn:SetAlpha(255)
btn:SetRelPos(0,0)
fR:SetRelPos(800,800)
GetClientPlayer().Talk(3,"",{{type="text",text="<"..fR.dwTargetId..">开锁ing..."}})
end
if sC then
if not iP:IsVisible() then
sC:SetScrollPos(100)
else
local nValue=math.floor(iP:GetPercentage()*100)
if nValue==100 then
InteractDoodad(fR.dwTargetId)
else
sC:SetScrollPos(nValue)
end
btn:Lookup("","Text_Lock_Open"):SetText("再来一次")
end
end
end
end)
end