|
|
发表于 2021-4-2 23:40:32
|
显示全部楼层
local Tbl = BeeUnitBuffList("target")
local buff = BeeUnitBuffList("player")
grouptype=""
if GetNumRaidMembers()>0
then
grouptype="raid"
else
grouptype="party"
end
local HC = BeeGroupMinScript('BeeRange(unit)<=40 and BeeIsRun("真言术:盾",unit) and BeeUnitHealth(unit,"%")<100 and BeeUnitBuff("真言术:盾",unit)<1 and UnitCanAssist("player",unit) and not UnitIsDeadOrGhost(unit)',"BeeUnitHealth(unit)",grouptype)
if HC and BeeIsRun("真言术:盾",HC)
then
BeeRun("真言术:盾",HC);
return
end |
|