If I want to zone in somewhere and calculate the average level of everything in the zone using a who command what would I do to pick out the level of each thing using /who ?
...and if something hit/slashed/bashed/pierced/clawed/stinged/(not nice thing) to me using an event "YOU for" how would I get the name of whatever hit me using the chat text of "a grizzly bear claws YOU for 1 dmg!" without attemping to target and do a $target(name)
My first thoughts were something along the lines of finding the information you want to cut out using
$arg(num,string)
Returns a space delimited substring.
ie. $arg(2,"Am I here?") will return "I"
then
$left(num,string)
Returns a couple of the characters from the left side of string
ie. $left(4,"Am I here?") will return "Am I
to just select the information to the left containing the name.
Any help would be appriciated =)

