What level is the bard?
Can you look inside ..\Macros\Explore and delete ExploreSub.inc, then try running it again?
And can you find and post the following lines from your local copy of the macro:
..\Macros\Explore.mac - Line 3
..\Macros\DeneCore\DeneCore-Utils.inc - Lines 138-161
Using a Gold 115Bard max AA's.
I will Delete Explore sub.inc and try running and report back. Cannot run it right now. UPDATE: after deleting the ExploreSub.inc, the macro wont run.
Rest of you request:
Line 3 : |- Version 1.2.0
Denecore lines :
| -------------------------------------------------------------------------------------
| SUB: cancelSelos - Kills SPA 3 (Movement Rate)
| -------------------------------------------------------------------------------------
Sub cancelSelos
/declare intBuffSlot int local 1
/declare intSDBuffSlot int local 1
/for intBuffSlot 0 to 42
/if (${Me.Buff[${intBuffSlot}].HasSPA[3]}) {
/message \ayRemoving buff #${intBuffSlot}: \am ${Me.Buff[${intBuffSlot}]}
/removebuff "${Me.Buff[${intBuffSlot}]}"
/delay 2s !${Me.Buff[${intBuffSlot}].ID}
}
/next intBuffSlot
/for intSDBuffSlot 0 to 30
/if (${Me.Song[${intSDBuffSlot}].HasSPA[3]}) {
/message \ayRemoving: \a-m ${Me.Song[${intBuffSlot}]}
/removebuff "${Me.Song[${intSDBuffSlot}]}"
/delay 2s !${Me.Song[${intBuffSlot}].ID}
}
/next intBuffSlot
/deletevar intBuffSlot
/deletevar intSDBuffSlot
/return