Shelter Dungeon Magery to 75 by whiskeywalt
#Train Magery to 75 in Shelter Dungeon
# Works with Spell Stone
# By WhiskeyWalt
//mana check
if skill 'magery' < 60 and mana < 11
useskill "meditation"
while mana < maxmana
endwhile
pause 600
elseif skill 'magery' < 75 and mana < 20
useskill "meditation"
while mana < maxmana
endwhile
pause 600
endif
//training
if skill 'magery' < 60
cast "greater heal"
waitfortarget 15000
target self
pause 1000
elseif skill 'magery' < 75
cast "invisibility"
waitfortarget 15000
target self
pause 1000
elseif skill 'magery' == 75
msg "Move out of new dungeon!"
stop
endif
loop