TinTin++ Configs for DiscworldMUD
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
794 B

6 years ago
  1. #NOP == Prompt Update Function ==
  2. #nop colors
  3. #function {tpa_col}
  4. {
  5. #if {"%0" == "invisible"}
  6. #return <178>;
  7. #if {"%0" == "dull red"}
  8. #return <018>;
  9. #if {"%0" == "bright red"}
  10. #return <118>;
  11. #if {"%0" == "wobbling orange"}
  12. #return <fca><188>;
  13. #if {"%0" == "flickering yellow"}
  14. #return <138>;
  15. #return;
  16. }
  17. #ALIAS {update_prompt} {
  18. xp_monitor;
  19. #format {prompt_xp} {%Gxp in %s (%Gk/h)} {$session_xp} {$uptime[display]} {$xprate};
  20. #var {prompt_tpa} {};
  21. #if {$tpa_status == 1} {
  22. #format {prompt_tpa} {%cTPA%c} {@tpa_col{$tpa_color}} {<098>};
  23. };
  24. #format {prompt_line} {%+5s %+40s} {$prompt_tpa} {$prompt_xp};
  25. #showme {$prompt_line} {-1};
  26. }