summaryrefslogtreecommitdiffstats
path: root/mbbsd/talk.c
diff options
context:
space:
mode:
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;