Who's who in group?

Scripts and support for your favorite MUD client.
Nekelet
Sojourner
Posts: 413
Joined: Mon Aug 04, 2003 8:54 pm

Who's who in group?

Postby Nekelet » Fri Jun 24, 2005 11:53 pm

Code: Select all

#alias {hitters} {who ingroup warrior rogue anti paladin bard battle dire ranger}
#alias {tanks} {who ingroup warrior anti paladin}
#alias {healers} {who ingroup cleric shaman druid}
#alias {buffers} {who ingroup enchanter elem illus}


I suppose I should add necro & lich to the mix. Normally I don't care :P

the only alias I actually use is hitters btw.
--Hey, Look, I just regenerated a finger. Guess which one.
http://www.giantitp.com/cgi-bin/GiantIT ... ipt?SK=191
Lilira
Sojourner
Posts: 1438
Joined: Thu Aug 28, 2003 3:53 pm

Postby Lilira » Wed Sep 14, 2005 7:42 pm

Doh! Nek!! No love for the vokers?? *boggle*

Oh! And is there a way to manually add one person to a group? (Not quite a zmud moron, but pretty close...)

I know alot of people who anon, and it would be cool to know how to add them to the list after bugging them with a tell.

Thank you from a confused wanna be enchanter... *halo*
Yasden
Sojourner
Posts: 1597
Joined: Sat Feb 03, 2001 6:01 am
Location: Lake Stevens, WA, USA

Postby Yasden » Thu Sep 15, 2005 7:21 pm

Anon people don't show up with a "who ingroup". Not sure if this was intended, or an oversight. You're pretty much SOL as far as adding someone that way. The aliases he posted simply list the names off the who ingroup command...if you wanted to store them to variables, however, what you're asking for could be "manually" done.

#alias {nukers} {who ingroup psi invo lich elem druid illus}

In case you wanted to add that 5th alias. :P

Remind me later, I'll throw something together for you for storing the variables. ATM I've got a shitton of homework I have to finish before I even think of doing any scripting. :P

-Deathmagnet
Support Your Addiction! Vote for TorilMUD Today!

Top Mud Sites: http://www.topmudsites.com/cgi-bin/topmuds/rankem.cgi?id=shev

Why Nerox is jealous of me:

Nerox tells you 'man this thing is kicking my ass and i have blisters!'
Nerox tells you 'ok attempting it again put tape on my fingers for easier sliding'
Ided
Sojourner
Posts: 26
Joined: Fri Aug 26, 2005 8:29 pm

Postby Ided » Fri Sep 16, 2005 1:14 am

BEGIN NOTE

This one is a bit overkill since you could just set up a mapping between the short class names to accomplish the same thing, but here's a rather basic one that takes group info and puts it into variables.

Your milage may vary...

END NOTE
------------------------------------------------------------------------------------

#CLASS {GroupData}
#CLASS 0
#CLASS {GroupData|Aliases}
#ALIAS hitters {
#VAR groupHitters %null {%null} {GroupData/Variables}
who ingroup warrior rogue anti paladin bard battle dire ranger
#TRIG captureMembers {~[?? *~] (%w)} {#ADDITEM groupHitters {%%1}} {GroupData/Triggers}
}
#ALIAS tanks {
#VAR groupTanks %null {%null} {GroupData/Variables}
who ingroup warrior anti paladin
#TRIG captureMembers {~[?? *~] (%w)} {#ADDITEM groupTanks {%%1}} {GroupData/Triggers}
}
#ALIAS healers {
#VAR groupHealers %null {%null} {GroupData/Variables}
who ingroup cleric shaman druid
#TRIG captureMembers {~[?? *~] (%w)} {#ADDITEM groupHealers {%%1}} {GroupData/Triggers}
}
#ALIAS mages {
#VAR groupMages %null {%null} {GroupData/Variables}
who ingroup ench elem illus invo necro lich
#TRIG captureMembers {~[?? *~] (%w)} {#ADDITEM groupMages {%%1}} {GroupData/Triggers}
}
#ALIAS ingroup {
#VAR groupMembers %null {%null} {GroupData/Variables}
who ingroup
#TRIG captureMembers {~[?? *~] (%w)} {#ADDITEM groupMembers {%%1}} {GroupData/Triggers}
}
#CLASS 0
#CLASS {GroupData|Variables}
#CLASS 0
#CLASS {GroupData|Triggers}
#TRIGGER "endWhoList" {There are * mortal} {#UNTRIG captureMembers}
#CLASS 0
Lilira
Sojourner
Posts: 1438
Joined: Thu Aug 28, 2003 3:53 pm

Postby Lilira » Fri Sep 16, 2005 2:54 pm

Haven't tried it out, but once more I could kiss you Ided!!!

Deathpact roolz! *wink*
Lilira
Sojourner
Posts: 1438
Joined: Thu Aug 28, 2003 3:53 pm

Postby Lilira » Fri Sep 16, 2005 3:14 pm

Yasden wrote:
#alias {nukers} {who ingroup psi invo lich elem druid illus}

In case you wanted to add that 5th alias. :P

Remind me later, I'll throw something together for you for storing the variables. ATM I've got a shitton of homework I have to finish before I even think of doing any scripting. :P

-Deathmagnet


*grin*

Actually did that one Yas.. I called it blasters instead, and since druid shows up under healer, I didn't add them to blasters. Basically my "blasters" has invokers, Lich and necro added. All other classes were elsewhere.
Nekelet
Sojourner
Posts: 413
Joined: Mon Aug 04, 2003 8:54 pm

Postby Nekelet » Mon Sep 19, 2005 1:20 am

Lilira wrote:Doh! Nek!! No love for the vokers?? *boggle*

*chuckle* yeah well, when's the last time you saw a voker globe/haste someone? :D

But anyhow, the above was a quickie in response to some old thread, though I must admit - when I'm busy I do skip the non-buffing classes entirely on extra spellups.

Looks like the rest have ya covered tho. :D
--Hey, Look, I just regenerated a finger. Guess which one.

http://www.giantitp.com/cgi-bin/GiantIT ... ipt?SK=191
Llaaldara
Sojourner
Posts: 998
Joined: Fri Aug 16, 2002 5:01 am
Location: Dobluth Kyor

Postby Llaaldara » Mon Sep 19, 2005 10:43 pm

Lilira wrote:
Yasden wrote:
#alias {nukers} {who ingroup psi invo lich elem druid illus}

In case you wanted to add that 5th alias. :P

Remind me later, I'll throw something together for you for storing the variables. ATM I've got a shitton of homework I have to finish before I even think of doing any scripting. :P

-Deathmagnet


*grin*

Actually did that one Yas.. I called it blasters instead, and since druid shows up under healer, I didn't add them to blasters. Basically my "blasters" has invokers, Lich and necro added. All other classes were elsewhere.


Are there any 'master's in your 'blasters' alias variable? It not, can I be the Master Blaster? Plz! Plz! Plz!
Yasden
Sojourner
Posts: 1597
Joined: Sat Feb 03, 2001 6:01 am
Location: Lake Stevens, WA, USA

Postby Yasden » Tue Sep 20, 2005 5:53 am

I've got Blaster Master on NES, does that count?
Support Your Addiction! Vote for TorilMUD Today!



Top Mud Sites: http://www.topmudsites.com/cgi-bin/topmuds/rankem.cgi?id=shev



Why Nerox is jealous of me:



Nerox tells you 'man this thing is kicking my ass and i have blisters!'

Nerox tells you 'ok attempting it again put tape on my fingers for easier sliding'
Maedor
Sojourner
Posts: 390
Joined: Sun Mar 10, 2002 6:01 am

Postby Maedor » Fri Sep 30, 2005 6:01 am

Master Blaster? I always thouth you were more of a Master Baiter
Yasden
Sojourner
Posts: 1597
Joined: Sat Feb 03, 2001 6:01 am
Location: Lake Stevens, WA, USA

Postby Yasden » Sat Oct 01, 2005 2:37 am

Ask her about chocolate BJ's...
Support Your Addiction! Vote for TorilMUD Today!



Top Mud Sites: http://www.topmudsites.com/cgi-bin/topmuds/rankem.cgi?id=shev



Why Nerox is jealous of me:



Nerox tells you 'man this thing is kicking my ass and i have blisters!'

Nerox tells you 'ok attempting it again put tape on my fingers for easier sliding'

Return to “MUD Client Help”

Who is online

Users browsing this forum: No registered users and 6 guests