• You've discovered RedGuides 📕 an EverQuest multi-boxing community 🛡️🧙🗡️. We want you to play several EQ characters at once, come join us and say hello! 👋
  • IS THIS SITE UGLY? Change the look. To dismiss this notice, click the X --->

XP Tracking (1 Viewer)

Kyle100

Member
Joined
Jan 8, 2007
RedCents
Does anyone know of a HUD type plugin or macro that can return the
Current Level
Current XP %
Current AA's
Current AA %

For all the toons in your group? WHen I am PLing toons its kind of a pain to have to keep changing monitors to see what the other toons status XP wise is at.

I have seen a couple plugins but they seem to be geared twords telling you your own status not that of the other toons in group.
 
stats.mac
INI:
#event stats  "#*#some random trigger, change me#*#" 


sub Main 
/echo Simple stats macro loaded.

:Main_Loop
/doevents 
/delay 10
/goto :Main_Loop 
/return 


sub event_stats
/g I am level ${Me.Level} with ${Me.PctExp} % exp with ${Me.AAPointsTotal} aa(s) and ${Me.PctAAExp} % AA Exp
/return
Use the stats.inc if you're already running a macro on that computer, simply add "#include stats.inc" to the top of your macro's.

stats.inc
Rich (BB code):
#event stats  "#*#some random trigger, change me#*#" 

sub event_stats
/g I am level ${Me.Level} with ${Me.PctExp} % exp with ${Me.AAPointsTotal} aa(s) and ${Me.PctAAExp} % AA Exp
/return
 
XP Tracking

Users who are viewing this thread

Back
Top