自动选天罚剑
云端ID 18556 作  者 最近更新20140408 代码类型官方宏 本周热度14 作者专栏

把天罚剑改成其他需要自动选的目标名字即可

<一定要点这复制宏代码>
  1. /script y0n=y0n or false
  2. if not y0n then
  3. OutputMessage("MSG_SYS","自动选<维提吠达特天罚剑>开启。\n")
  4. y0n=true
  5. else
  6. OutputMessage("MSG_SYS","自动选<维提吠达特天罚剑>关闭。\n")
  7. y0n=false
  8. end
  9. rOnce=rOnce
  10. if not rOnce then
  11. J_NpcList = {}
  12. RegisterEvent("NPC_ENTER_SCENE",function()
  13. local tar=GetNpc(arg0)
  14. if tar.szName=="维提吠达特天罚剑" then
  15. J_NpcList[arg0] = tar
  16. end
  17. end)
  18. RegisterEvent("NPC_LEAVE_SCENE",function()
  19. J_NpcList[arg0] = nil
  20. end)
  21. RegisterEvent("RENDER_FRAME_UPDATE",function()
  22. if not y0n then return end
  23. local player = GetClientPlayer()
  24. local tar = GetTargetHandle(player.GetTarget())
  25. for tid,ttar in pairs(J_NpcList) do
  26. if ttar and ttar.nCurrentLife > 0 and (not tar or tar.nCurrentLife < 1 or tar.szName ~= ttar.szName) then
  27. SetTarget(TARGET.NPC,tid)
  28. break
  29. end
  30. end
  31. end)
  32. end
分类:通用宏
标签:
标识:/cloud/18556