皇宫箱子、笼子一键开锁宏
云端ID 2831 作  者 最近更新20131205 代码类型ver1.1.0.2版本以上 本周热度109 作者专栏

只需要在开锁界面,点击2次“开锁”即可100%完成解锁。
PS:新增开关,需要此功能时开启,不需要时可以关闭。

<一定要点这复制宏代码>
  1. 开锁界面原版:
  2. /script bUnLock = bUnLock or false
  3. if not bUnLock then
  4. OutputMessage("MSG_SYS","自动<开锁>已开启。弹出<开锁>界面,请点击<开锁>完成解锁。\n")
  5. bUnLock = true
  6. else
  7. OutputMessage("MSG_SYS","自动<开锁>已关闭。\n")
  8. bUnLock = false
  9. end
  10. RegisterOnce=RegisterOnce
  11. if not RegisterOnce then
  12. RegisterEvent("RENDER_FRAME_UPDATE",function()
  13. if not bUnLock then return end
  14. /LockPanel")
  15. if frame and frame:IsVisible() then
  16. local scrollbar = frame:Lookup("ScrollBar_Lock")
  17. local imgPercent = frame:Lookup("", "Handle_Lock"):Lookup("Image_Percent")
  18. if scrollbar then
  19. if not imgPercent:IsVisible() then
  20. scrollbar:SetScrollPos(100)
  21. else
  22. local nValue = math.floor(imgPercent:GetPercentage() * 100)
  23. scrollbar:SetScrollPos(nValue)
  24. end
  25. end
  26. end
  27. end)
  28. RegisterEvent("OPEN_WINDOW",function()
  29. if not bUnLock then return end
  30. if string.find(arg1, "LOCK_PANEL") then
  31. GetClientPlayer().WindowSelect(arg0,0)
  32. end
  33. end)
  34. end
  35. 开锁界面精简版:
  36. /script bUn=bUn or false
  37. if not bUn then
  38. OutputMessage("MSG_SYS","自动<开锁>开启。\n")
  39. bUn=true
  40. else
  41. OutputMessage("MSG_SYS","自动<开锁>关闭。\n")
  42. bUn=false
  43. end
  44. rOnce=rOnce
  45. if not rOnce then
  46. RegisterEvent("RENDER_FRAME_UPDATE",function()
  47. if not bUn then return end
  48. /LockPanel")
  49. if fR and fR:IsVisible() then
  50. local sC=fR:Lookup("ScrollBar_Lock")
  51. local iP=fR:Lookup("", "Handle_Lock"):Lookup("Image_Percent")
  52. local btn=fR:Lookup("Btn_Lock_Open")
  53. if fR:GetAlpha()>0 then
  54. fR:SetAlpha(0)
  55. fR:SetSize(160,36)
  56. btn:SetAlpha(255)
  57. btn:SetRelPos(0,0)
  58. fR:SetRelPos(800,800)
  59. GetClientPlayer().Talk(3,"",{{type="text",text="<"..fR.dwTargetId..">开锁ing..."}})
  60. end
  61. if sC then
  62. if not iP:IsVisible() then
  63. sC:SetScrollPos(100)
  64. else
  65. local nValue=math.floor(iP:GetPercentage()*100)
  66. if nValue==100 then
  67. InteractDoodad(fR.dwTargetId)
  68. else
  69. sC:SetScrollPos(nValue)
  70. end
  71. btn:Lookup("","Text_Lock_Open"):SetText("再来一次")
  72. end
  73. end
  74. end
  75. end)
  76. end
分类:通用宏
标签:
标识:/cloud/2831