Kritos
Posts: 10
|
2008-02-01 10:47 pm
#CLASS {roundstats}
#TRIGGER {^*~<(&hp)hp (&sp)sp (&st)st~>*} {
#MATH newhp @hp-@oldhp
#MATH newsp @sp-@oldsp
#VAR oldsp @sp
#VAR oldhp @hp
#IF (@newhp=0 & @newsp=0) {#ABORT 1} {}
#ECHOPROMPT {%ansi( high, blue, high, black)"{"%if( @newhp<0, %ansi( high,
red, black)@newhp%ansi( high, blue, black)hp, %ansi( white,
black)"+"@newhp%ansi( high, blue, black)hp) %if( @newsp<0, %ansi( high, red,
black)@newsp%ansi( high, blue, black)sp, %ansi( white, black)"+"@newsp%ansi(
high, blue, black)sp)%ansi( high, blue, high, black)"}"}
#echo " "
} "" {nocr|prompt}
#CLASS 0
Last edited on February 1, 2008 04:47pm. |
Siege
Posts: 168
|
2010-07-11 02:09 pm
#CLASS {pkstats}
#TRIGGER {^*~<(&hp)hp (&sp)sp (&st)st~>*} {#MATH newhp @hp-@oldhp;#MATH newsp @sp-@oldsp;#MATH newst @st-@oldst;#VAR oldsp @sp;#VAR oldhp @hp;#VAR oldst @st;#IF (@newhp=0 & @newsp=0 & (@newst=0 or @newst=-1)) {#ABORT 1} {#ECHOPROMPT {%ansi( high, white, high, black)"["%if( @newhp<0, %ansi( high, red, black)@newhp%ansi( high, blue, black)hp, %ansi( grey, black)"+"%ansi( high, green, black)@newhp%ansi( high, blue, black)hp) %if( @newsp<0, %ansi( high, red, black)@newsp%ansi( high, blue, black)sp, %ansi( grey, black)"+"%ansi( high, green, black)@newsp%ansi( high, blue, black)sp) %if( @newst<0, %ansi( high, red, black)@newst%ansi( high, blue, black)st, %ansi( grey, black)"+"%ansi( high, green, black)@newst%ansi( high, blue, black)st)%ansi( high, white, high, black)"]"}}} "" {nocr|prompt}
#CLASS 0
This has some of my custom colors that you can tweak around to your own personal prefs, but it does incorporate stamina.
Cheers.
Edited by Siege on Sun, 11 Jul 2010 14:10:24 +0000. |