|
Shriken Newbie
Joined: 21 Dec 2004 Posts: 5 Location: Hell, Michigan
|
Posted: Tue Dec 21, 2004 6:09 am
Mud Window Status |
I am currently looking for a set of aliases, triggers, and variables that will allow me to tell my current TNL, XP, HP, and Powerlevel (DB Based Mud)
The setup (prompt) is :
(Pl:123)
(Hp:123|Ki:123|En:123)
Score Sheet shows :
Experience: 123
Experience TNL: 123
If someone could possible help me with this, send an IM to Shriken2000 on AIM. Chances are I'm on.
Or just reply.
Thanks
-Kurt |
|
|
|
nexela Wizard
Joined: 15 Jan 2002 Posts: 1644 Location: USA
|
Posted: Tue Dec 21, 2004 1:36 pm |
#TRIGGER {~(PI:(%d)~)} {prompt.pi=%1}
#COND {~(Hp:(%d)~|Ki:(%d)~|En:(%d)~)} {
prompt.hp=%1
prompt.ki=%2
prompt.en=%3
} {prompt|nocr|within|param=1}
#TRIGGER {Experience: (%d)} {prompt.xp=%1}
#TRIGGER {Experience TNL:(%d)} {prompt.tnl=%1}
And for the status bar (for a status window just use #STW instead of #ST)
#ST {Pi=@prompt.pi Hp=@prompt.hp Ki=@prompt.ki En=@prompt.en Xp=@prompt.xp/@prompt.tnl} |
|
|
|
mr_kent Enchanter
Joined: 10 Oct 2000 Posts: 698
|
Posted: Tue Dec 21, 2004 4:10 pm |
#ALIAS report {#IF (%1 = "") {say Pi=@prompt.pi Hp=@prompt.hp Ki=@prompt.ki En=@prompt.en Xp=@prompt.xp/@prompt.tnl} {tell %1 Pi=@prompt.pi Hp=@prompt.hp Ki=@prompt.ki En=@prompt.en Xp=@prompt.xp/@prompt.tnl}}
|
|
|
|
Vorax Apprentice
Joined: 29 Jun 2001 Posts: 198 Location: USA
|
Posted: Tue Dec 21, 2004 10:14 pm |
I believe that's Pl (lower case L - for PowerLevel), not Pi. Change the scripts accordingly.
|
|
|
|
Shriken Newbie
Joined: 21 Dec 2004 Posts: 5 Location: Hell, Michigan
|
Posted: Wed Dec 22, 2004 10:02 am |
Quote: |
#TRIGGER {~(PI:(%d)~)} {prompt.pi=%1}
#COND {~(Hp:(%d)~|Ki:(%d)~|En:(%d)~)} {
prompt.hp=%1
prompt.ki=%2
prompt.en=%3
} {prompt|nocr|within|param=1}
#TRIGGER {Experience: (%d)} {prompt.xp=%1}
#TRIGGER {Experience TNL:(%d)} {prompt.tnl=%1}
And for the status bar (for a status window just use #STW instead of #ST)
#ST {Pi=@prompt.pi Hp=@prompt.hp Ki=@prompt.ki En=@prompt.en Xp=@prompt.xp/@prompt.tnl}
|
Really appreciated, it worked.
Thanks to the rest of you who tried.
-Kurt |
|
|
|
|
|