需主教跟隨,請自行爬文跟隨模式.
# 自訂技能
attackSkillSlot 鑽石星塵 {
lvl 5
dist
sp > 10%
aggressives
maxUses 1
Monsters
whenStatusInactive 動作延遲,鑽石星塵技能延遲
timeout
}
attackSkillSlot 大地墳場 {
lvl 5
dist
sp > 10%
aggressives
maxUses 1
Monsters
whenStatusInactive 動作延遲,大地墳場技能延遲
timeout
}
attackSkillSlot 超自然波 {
lvl 5
dist
sp > 10%
aggressives
maxUses
Monsters
notMonsters
aggressives
isSelfSkill
whenStatusInactive 動作延遲,超自然波技能延遲
timeout
}
# 自訂輔助技能( 自己)
useSelf_skill 速讀術 {
lvl 1
sp > 20
stopWhenHit 1
timeout 60
}
useSelf_skill HP轉換 {
lvl 5
sp < 85%
hp > 7500
aggressives < 1
}
useSelf_skill HP轉換 {
lvl 5
sp < 50%
hp > 7500
aggressives
}
useSelf_skill 召喚風元素 {
lvl 3
sp > 20%
maxUses 1
timeout 1200
}
useSelf_skill 精靈治癒 {
lvl 1
sp > 20
timeout 40
}
useSelf_skill 操控精靈 {
lvl 3
sp > 20%
maxUses 1
timeout 1205
}
(此設定是讓外掛走回圈,不會讓外掛自己隨機走動,需關閉隨機走動,地圖地標可自行設定)
macros設定:
automacro aa {
location abyss_02
aggressives < 1
timeout 20
run-once 1
call bb
}
macro bb {
$g = @random ("1", "2", "3", "4", "5", "6", "7")
if ($g == 1) goto one
if ($g == 2) goto two
if ($g == 3) goto three
if ($g == 4) goto four
if ($g == 5) goto five
if ($g == 6) goto six
if ($g == 7) goto seven
goto end
:one
do move 132 264
goto end
:two
do move 163 264
goto end
:three
do move 172 207
goto end
:four
do move 127 168
goto end
:five
do move 78 240
goto end
:six
do move 36 214
goto end
:seven
do move 26 74
goto end
:end
release aa
} |