Train Spirit Speak FAST by .phisn
Related: SpiritSpeakspirit speak
# Train Spirit Speak FAST by Chinga
# Get to 80 in Shelter first (~10 mins), 80-120 takes ~5 hrs
# Script resupplies, be near a stocked Shelf, or you need to carry:
# ~7500 Ash to Magic Arrow yourself
# ~750 Garlic, Ginseng, Root, Silk to Greater Heal
# ~75 Mushroom & Delectable food for faster mana gain
# *Use a Mastercrafted Avarhide Wizard Satchel to reduce reagent use
# *Use Void armor for Auto Stats Restoration to speed things up
# *Edit Shelf loadout to pull regs/food, I used 10% of the totals above
### Auto-stop when skill target is reached on 1st line ###
while skill 'spiritspeak' < 120
if hp < 45
wait 500
cast 'Greater Heal'
waitfortarget
target 'self'
else
cast 'Magic Arrow'
waitfortarget
target 'self'
endif
wait 300
### Mana check ###
if mana < 10
wait 1000
### Eat Mushroom first before meditating ###
if not timerexists 'mushroom'
createtimer 'mushroom'
settimer 'mushroom' 61000
endif
if timer 'mushroom' > 60000 and findtype '29012' backpack and mana < 75
dclicktype '29012'
wait 250
if insysmsg 'restore some mana'
settimer 'mushroom' 0
clearsysmsg
endif
endif
### Mediate to 100 before continuing ###
useskill 'meditation'
while mana < 100
wait 1000
endwhile
endif
### Eat Delectable food when buff runs out ###
if not findbuff "food satisfaction" and findtype "tray" backpack as food
dclick food
wait 500
endif
### Check for Ash to resupply ###
if counttype 'Sulfurous Ash' < 5
if findtype "storage shelf" ground -1 -1 2 as shelf
wait 250
menu shelf 1
wait 250
endif
endif
endwhile








