JDP 發表於 2006-11-11 18:06:18

用飾品的巨集

用用飾品,最好用巨集

下面的巨集是在每次施法前檢查戒指下面那格的飾品冷卻時間結束沒,冷卻結束的話他會使用飾品,然後接著施放法術,如果飾品冷卻時間還沒結束,他會像正常施放法術

/script if GetInventoryItemCooldown("player", 13) == 0 then UseInventoryItem(13); SpellStopCasting(); end
/施放 寒冰箭(等級 10)

如果飾品是放在最右下方那格的話,請用
/script if GetInventoryItemCooldown("player", 14) == 0 then UseInventoryItem(14); SpellStopCasting(); end
/施放 寒冰箭(等級 10)

如果兩個飾品都要使用的話
/script if GetInventoryItemCooldown("player", 13) == 0 then UseInventoryItem(13); SpellStopCasting(); end
/script if GetInventoryItemCooldown("player", 14) == 0 then UseInventoryItem(14); SpellStopCasting(); end
/施放 寒冰箭(等級 10)


這個真的很好用,很適合很懶的人,不用每次都要按飾品,直接COPY就能用,把技能改一下和等級改最好就OK了
頁: [1]
查看完整版本: 用飾品的巨集