Moderator: MacroQuest Developers
Nice, Thank you for the fast reply Lax.Lax wrote:someone asked this recently and wanted to use /notify, but I need to change /notify a little bit for it to work.
Code: Select all
/declare myvar global
/newif ${Me.Buff[Spirit of Wolf]} {
/varcalc myvar ${Me.Buff[Spirit of Wolf]}-1
/notify BuffWindow Buff@myvar leftmouseup
}
Code: Select all
/declare myvar global
/newif ${Me.Buff[Spirit of Wolf]} {
/varset myvar ${Math.Calc[${Me.Buff[Spirit of Wolf]}-1].Int}
/notify BuffWindow Buff@myvar leftmouseup
}
Code: Select all
/declare BuffSlot int local
/if (${Bool[${Me.Buff[Vallon's Quickening]}]}) {
/varcalc BuffSlot ${Me.Buff[Vallon's Quickening].ID}-1
/notify BuffWindow Buff${BuffSlot} leftmouseup
}