Also, i dont want anything fansy, just tell me if it'll be functional and that sort of thing :)
Code: Select all
| This is Malkum's casting program. Simple, yet effective.
|
| Let's just hope it works...
|
|
/echo "Malkast macro starting. Be prepaired for some ownage!"
#turbo 20
Sub Main
/declare mobHP global
/varset mobHP == $target(hp,pct)
/if mobHP == 50 {
/call mobHP50
}
/if mobHP == 15 {
/call mobHP15
}
/return
Sub mobHP50
/if $char(state) == STAND {
/cast "Sunstrike"
} else {
/stand
/cast "Sunstrike"
}
/sit
/return
Sub mobHP15
/if $char(state) == STAND {
/cast "Draught of Ro"
} else {
/stand
/cast "Draught of Ro"
}
/sit
/return
