|
Nyojin Beginner
Joined: 05 Nov 2005 Posts: 18
|
Posted: Tue Jun 06, 2006 5:02 am
Status Window help |
I have found a script I'd like to modify. Essentially it redisplays lines into a new window. I'd like it t go into the status. I am not sure where to modifty the commands at.
Here is the script
Code: |
#CLASS {arriveing}
#TRIGGER {(%x%s%x) has left the world.} {
#gag
#SAY %ansi( green, bold)%char( 32)%eval( %1)%ansi( white)%char( 32)left at:%char( 32)%time( h:nn:ss am/pm)
#cap arrivals
#gag
}
#TRIGGER {(%x%s%x) has left the world unexpectedly.} {
#gag
#SAY %ansi( green, bold)%char( 32)%eval( %1)%ansi( white)%char( 32)Disco'd at:%char( 32)%time( h:nn:ss am/pm)
#cap arrivals
#gag
}
#TRIGGER {(%x%s%x) just arrived in the world.} {
#gag
#SAY %ansi( green, bold)%char( 32)%eval( %1)%ansi( white)%char( 32)arrived at:%char( 32)%time( h:nn:ss am/pm)
#cap arrivals
#gag
}
#CLASS 0
|
Thank you. |
|
|
|
Taz GURU
Joined: 28 Sep 2000 Posts: 1395 Location: United Kingdom
|
Posted: Tue Jun 06, 2006 9:01 am |
Replace #SAY with #STWIN + and remove the #cap arrivals and the #gag after the #cap.
|
|
_________________ Taz :) |
|
|
|
edb6377 Magician
Joined: 29 Nov 2005 Posts: 482
|
Posted: Tue Jun 06, 2006 9:59 am |
This is what he means for status window
Code: |
#CLASS {Status_ArrDept}
#TRIGGER {(%x%s%x) has left the world.} {
#gag
#STWIN + %ansi( green, bold)%char( 32)%eval( %1)%ansi( white)%char( 32)left at:%char( 32)%time( h:nn:ss am/pm)
}
#TRIGGER {(%x%s%x) has left the world unexpectedly.} {
#gag
#STWIN + %ansi( green, bold)%char( 32)%eval( %1)%ansi( white)%char( 32)Disco'd at:%char( 32)%time( h:nn:ss am/pm)
}
#TRIGGER {(%x%s%x) just arrived in the world.} {
#gag
#STWIN + %ansi( green, bold)%char( 32)%eval( %1)%ansi( white)%char( 32)arrived at:%char( 32)%time( h:nn:ss am/pm)
}
#CLASS 0
|
However if you mean your status LINE then its
Code: |
#CLASS {Status_ArrDept}
#TRIGGER {(%x%s%x) has left the world.} {
#gag
#STATUS {%ansi( green, bold)%char( 32)%eval( %1)%ansi( white)%char( 32)left at:%char( 32)%time( h:nn:ss am/pm)}
}
#TRIGGER {(%x%s%x) has left the world unexpectedly.} {
#gag
#STATUS {%ansi( green, bold)%char( 32)%eval( %1)%ansi( white)%char( 32)Disco'd at:%char( 32)%time( h:nn:ss am/pm)}
}
#TRIGGER {(%x%s%x) just arrived in the world.} {
#gag
#STATUS {%ansi( green, bold)%char( 32)%eval( %1)%ansi( white)%char( 32)arrived at:%char( 32)%time( h:nn:ss am/pm)}
}
#CLASS 0
|
|
|
|
|
|
|