Atis非專業挨踢筆記: ROM巨集

2013年2月16日 星期六

ROM巨集

符文工匠


起手


9放「符文牽引」 10放「符能脈衝」
/script if ( GetActionUsable(9) ) then UseAction(9); else UseAction(10); end
/wait 0.3
/cast 攻擊

農怪

6放「重壓打擊」7放「電刑」8放「充能打擊」
如果怪的hp少於30%就放「無畏打擊」,不然能放電刑就放電刑,不能就放重壓
/script a="target"if (0.3 > UnitHealth(a) / UnitMaxHealth(a)) and (GetActionUsable(11)) then UseSkill(4,5)elseif ( GetActionUsable(7) ) then UseAction(7); elseif  ( GetActionUsable(8) ) then UseAction(8);else UseSkill(2,1);end




祭師

快補+護祐

血低於7成時放護祐,再點一次放快補
/run a,i,p=1,1,"player"if 0.7>UnitHealth(p)/UnitMaxHealth(p)then while UnitBuff(p,i)do a=UnitBuff(p,i)~="護佑之術"and a i=i+1 end if a then UseSkill(3,3)else UseSkill(3,2)end end


暗影

正面對敵

/script a="target"if UnitHealth(a)==0 then UseSkill(1,1)elseif UnitDebuff(a,2)=="放血"then UseSkill(4,3)elseif UnitDebuff(a,1)=="流血"then UseSkill(4,2)else UseSkill(2,1)end

背面對敵


/cast 偷襲
/wait 0.75
/cast 死角攻擊

遊俠

農怪
/cast 自動射擊
/wait 0.3 
/cast 射擊
/wait 1.2 
/cast 穿透箭
/wait 1.2
/cast 疾風箭

開怪 9放心靈之箭10放噬血箭11放蛇毒箭矢
/script if ( GetActionUsable(9) ) then UseAction(9); else UseAction(10); end 
/wait 0.3 
/script if ( GetActionUsable(10) ) then UseAction(10); else UseAction(11); end 
/wait 0.3
/cast 自動射擊 
/wait 0.3 
/cast 射擊 
/wait 1.2 
/cast 疾風箭





沒有留言: