| COFING加上這個 
 useSelf_skill 極速回復 {
 lvl 1
 hp < 85%
 sitAuto_hp_upper 99
 notWhileSitting 1
 whenStatusInactive 極速回復狀態
 stopWhenHit 1
 maxUses 1
 }
 
 ----------------------------------------------------------------------------------------------------------------------
 坐下條件改掉 只留起立
 
 sitAuto_hp_lower
 # HP 低於此%數,坐休息
 sitAuto_hp_upper 99
 # HP 高於此%數,站起繼續
 sitAuto_sp_lower 20
 # SP 低於此%數,坐下休息
 sitAuto_sp_upper 50
 # SP 高於此%數,站起繼續
 sitAuto_over_50 0
 # 負重超過 50% 時是否要強制坐著
 ---------------------------------------------------------------------------------
 macros裡加上
 automacro sit {
 console /您正坐著/
 status not 極速回復狀態
 sp > 15
 call sit1
 timeout 1
 }
 macro sit1 {
 do ss 358 1
 }
 
 automacro delay {
 console /使用 極速回復 失敗 (延遲中)/
 delay 2
 call sit1
 }
 
 |