summaryrefslogtreecommitdiffstats
path: root/mbbsd/talk.c
diff options
context:
space:
mode:
authorvictor <victor@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2003-10-27 09:35:04 +0800
committervictor <victor@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2003-10-27 09:35:04 +0800
commit95c901b5e0ce59134b89bcc31dc52043e0bdafc3 (patch)
treed631eb450271ccf9f32ce46cd7e268a7dc790e1b /mbbsd/talk.c
parentefb64bb91a13ea9f7551d8b3ae66620516e086ff (diff)
downloadpttbbs-95c901b5e0ce59134b89bcc31dc52043e0bdafc3.tar
pttbbs-95c901b5e0ce59134b89bcc31dc52043e0bdafc3.tar.gz
pttbbs-95c901b5e0ce59134b89bcc31dc52043e0bdafc3.tar.bz2
pttbbs-95c901b5e0ce59134b89bcc31dc52043e0bdafc3.tar.lz
pttbbs-95c901b5e0ce59134b89bcc31dc52043e0bdafc3.tar.xz
pttbbs-95c901b5e0ce59134b89bcc31dc52043e0bdafc3.tar.zst
pttbbs-95c901b5e0ce59134b89bcc31dc52043e0bdafc3.zip
complete assess
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@1264 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/talk.c')
-rw-r--r--mbbsd/talk.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/mbbsd/talk.c b/mbbsd/talk.c
index b1a3d712..07c94c45 100644
--- a/mbbsd/talk.c
+++ b/mbbsd/talk.c
@@ -358,11 +358,12 @@ my_query(char *uident)
26 - strlen(muser.userid) - strlen(muser.username), "",
money[i]);
if ((uentp && ((fri_stat & HFM) || strcmp(muser.userid,cuser.userid) == 0) && !uentp->invisible))
- prints(" (%d)", muser.money);
+ prints(" ($%d)", muser.money);
prints("\n");
+
prints("《上站次數》%d次", muser.numlogins);
move(2, 40);
- prints("《文章篇數》%d篇\n", muser.numposts);
+ prints("《文章篇數》%d篇 (佳作%d/劣文%d)\n", muser.numposts, muser.goodpost, muser.badpost);
prints("\033[1;33m《目前動態》%-28.28s\033[m",
(uentp && isvisible_stat(currutmp, uentp, fri_stat)) ?
@@ -374,15 +375,15 @@ my_query(char *uident)
prints("《上次上站》%-28.28s《上次故鄉》%s\n",
Cdate(&muser.lastlogin),
(muser.lasthost[0] ? muser.lasthost : "(不詳)"));
- prints("《文章評比》 優 %-3d 劣 %-3d 《競標評比》 優 %-3d 劣 %-3d\n",
- muser.goodpost, muser.badpost,
- muser.goodsale, muser.badsale);
prints("《五子棋戰績》%3d 勝 %3d 敗 %3d 和 "
"《象棋戰績》%3d 勝 %3d 敗 %3d 和\n",
muser.five_win, muser.five_lose, muser.five_tie,
muser.chc_win, muser.chc_lose, muser.chc_tie);
+ prints("《競標評比》 優 %d / 劣 %d", muser.goodsale, muser.badsale);
+ move(6, 40);
if ((uentp && ((fri_stat & HFM) || strcmp(muser.userid,cuser.userid) == 0) && !uentp->invisible))
prints("《 性 別 》%-28.28s\n", sex[muser.sex % 8]);
+
showplans(uident);
pressanykey();
return FULLUPDATE;