diff options
author | ptt <ptt@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-11-06 18:06:35 +0800 |
---|---|---|
committer | ptt <ptt@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-11-06 18:06:35 +0800 |
commit | 5d1611b1114708f5cad58ecabc4aea8ebf855fd0 (patch) | |
tree | 219a947239bf03289ef2a82b620c51f9cd35c17e /mbbsd | |
parent | bf11c528c6e3ea9009c60e696862f8756cf7bf41 (diff) | |
download | pttbbs-5d1611b1114708f5cad58ecabc4aea8ebf855fd0.tar pttbbs-5d1611b1114708f5cad58ecabc4aea8ebf855fd0.tar.gz pttbbs-5d1611b1114708f5cad58ecabc4aea8ebf855fd0.tar.bz2 pttbbs-5d1611b1114708f5cad58ecabc4aea8ebf855fd0.tar.lz pttbbs-5d1611b1114708f5cad58ecabc4aea8ebf855fd0.tar.xz pttbbs-5d1611b1114708f5cad58ecabc4aea8ebf855fd0.tar.zst pttbbs-5d1611b1114708f5cad58ecabc4aea8ebf855fd0.zip |
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@1303 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd')
-rw-r--r-- | mbbsd/board.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mbbsd/board.c b/mbbsd/board.c index de24e900..778f1ed8 100644 --- a/mbbsd/board.c +++ b/mbbsd/board.c @@ -1003,6 +1003,10 @@ show_brdlist(int head, int clsflag, int newflag) if (B_BH(ptr)->brdattr & BRD_BAD) prints(" X "); + else if (B_BH(ptr)->nuser >= 5000) + prints("\033[1;34mĂz!\033[m"); + else if (B_BH(ptr)->nuser >= 2000) + prints("\033[1;31mĂz!\033[m"); else if (B_BH(ptr)->nuser >= 1000) prints("\033[1mĂz!\033[m"); else if (B_BH(ptr)->nuser >= 100) |