04-27-2012, 07:57 AM
This is a script i fownd on this forum and modified to use magic arrow from your spellbook instead of MA scrolls, there are still some useless lines in that script but they dont do anything so i didnt bother to delete them.
Basicly all you need is to have Bandages and Sulfrous Ash in backpack. I hope this helps somebody.
Basicly all you need is to have Bandages and Sulfrous Ash in backpack. I hope this helps somebody.
PHP Code:
while #TRUE
{
if ( #MANA >= 6 )
gosub CastMA
else
gosub Meditate
if ( #HITS < 64 )
gosub BandageSelf
if ( #HITS < 10 )
halt
}
; MA self
sub CastMA
finditem CYL C_ , #BACKPACKID
{
set %CastMana #MANA
set #LOBJECTID #FINDID
event macro 15 4
target 15s
event macro 23
while ( #MANA >= %CastMana )
{
}
}
return
; Uses a bandage on yourself
sub BandageSelf
finditem ZLF C
if ( #FINDCNT > 0 )
{
set #lObjectId #findId
event macro 17 0 ;last object
target 15s
event macro 23
wait 50
}
return
sub Meditate
while ( #MANA < 95 )
{
event macro 13 46
if You_are_preoccupied in #journal
event macro 6 0
else
wait 61
}
return