Hi Looking for a macro to up sense heading skill ... or for that matter anything that just need to be run over and over ..... no ingredients ....
can anyone help )
Moderator: MacroQuest Developers
Code: Select all
sub main
:loop
/if n $char(ability,"$p0")>0 /doability "$p0"
/doevents
/goto :loop
/return/macro doability.mac "Sense Heading"
Code: Select all
sub main
/varset p1 $char(skill,"$p0")
:loop
/if n $char(ability,"$p0")>0 /doability "$p0"
/if n $p1!=$char(skill,"$p0") {
/echo You've gained a level in $p0 ($char(skill,"$p0"))
/varset p1 $char(skill,"$p0")
}
/doevents
/goto :loop
/return