Difference between revisions of "TinTin++ Group Status"

From AvatarWiki
Jump to navigation Jump to search
Line 2: Line 2:
 
This is a script that allows you to keep track of group members' hit points through all the spam that is present when fighting. It is most useful for Lord runs or EHA as a healer. It takes the output from the group command and uses netcat (I don't know if it would work with wintin because of this) to send the information to another tintin++ instance where it is parsed and color coded.
 
This is a script that allows you to keep track of group members' hit points through all the spam that is present when fighting. It is most useful for Lord runs or EHA as a healer. It takes the output from the group command and uses netcat (I don't know if it would work with wintin because of this) to send the information to another tintin++ instance where it is parsed and color coded.
 
The colour codes are as follows, White for percent hitpoints above 75%, Yellow 50%, Pink 25%, Red 0%.
 
The colour codes are as follows, White for percent hitpoints above 75%, Yellow 50%, Pink 25%, Red 0%.
 +
 
==Screen Shot==
 
==Screen Shot==
 
This script being used in Mac OS X.<br>
 
This script being used in Mac OS X.<br>
 
[[File:GroupStat.png|600px|thumb|left]]<br>
 
[[File:GroupStat.png|600px|thumb|left]]<br>
 +
 
==Code==
 
==Code==
 
''Put this first script in your default avatar configuration which you load when you start the client: ./tt++ avatar.tt''
 
''Put this first script in your default avatar configuration which you load when you start the client: ./tt++ avatar.tt''
 +
<code>
 
#act {^%1|%2 %3 %w %s%w %s%d/%d %s%d/%d %s%d/%d} {#nc %4 %8 %9};  
 
#act {^%1|%2 %3 %w %s%w %s%d/%d %s%d/%d %s%d/%d} {#nc %4 %8 %9};  
 
#alias {gr} {#nc divider;#avatar group};
 
#alias {gr} {#nc divider;#avatar group};
 
#run nc {nc 127.0.0.1 9082};
 
#run nc {nc 127.0.0.1 9082};
 +
</code>

Revision as of 02:02, 12 July 2012

Basic Info

This is a script that allows you to keep track of group members' hit points through all the spam that is present when fighting. It is most useful for Lord runs or EHA as a healer. It takes the output from the group command and uses netcat (I don't know if it would work with wintin because of this) to send the information to another tintin++ instance where it is parsed and color coded. The colour codes are as follows, White for percent hitpoints above 75%, Yellow 50%, Pink 25%, Red 0%.

Screen Shot

This script being used in Mac OS X.

GroupStat.png


Code

Put this first script in your default avatar configuration which you load when you start the client: ./tt++ avatar.tt

  1. act {^%1|%2 %3 %w %s%w %s%d/%d %s%d/%d %s%d/%d} {#nc %4 %8 %9};
  2. alias {gr} {#nc divider;#avatar group};
  3. run nc {nc 127.0.0.1 9082};