Listing Aliases by groups using VBscript

Posted by StefanWulph on Sun 02 Mar 2003 07:28 AM — 2 posts, 13,212 views.

USA #0
Hi all.
I’m hoping someone can help me. AS I didn’t see this function listed anywhere, if there is one. But. How do I get a list of aliases that are in the same ‘Group’. The reason Im asking is because I have a set of aliases that changes my clothing and form but I can’t remember them all and I have to open the Aliases to look at them. I’d like to get the list using a VBscript. Thanks for any thought hint or outright scripting it for me..
A tired Wulphie
Stefan Wulph
USA #1
Hmm. You would probably have to get a list of all aliases, then hunt for the ones in that group, unlike the list in the editor these may not necessarilly be sorted though:
AList = world.getaliaslist
for each Al in AList
  if world.getaliasinfo(Al, 16) = "Your group here" then
    world.note world.getaliasinfo(Al, 1)
  end if
next