summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mbbsd/bbs.c6
-rw-r--r--mbbsd/mail.c2
-rw-r--r--mbbsd/vote.c2
-rw-r--r--mbbsd/voteboard.c4
4 files changed, 7 insertions, 7 deletions
diff --git a/mbbsd/bbs.c b/mbbsd/bbs.c
index f2d806af..cf7ad993 100644
--- a/mbbsd/bbs.c
+++ b/mbbsd/bbs.c
@@ -801,7 +801,7 @@ do_general(int isbid)
cuser.numlogins < ((unsigned int)(bcache[currbid - 1].post_limit_logins) * 10) ||
cuser.numposts < ((unsigned int)(bcache[currbid - 1].post_limit_posts) * 10)) ) {
move(5, 10);
- vmsg("你不夠資深喔!");
+ vmsg("你不夠資深喔! (可按大寫 I 查看限制)");
return FULLUPDATE;
}
#ifdef USE_COOLDOWN
@@ -1473,7 +1473,7 @@ cross_post(int ent, fileheader_t * fhdr, const char *direct)
cuser.badpost > (255 - (unsigned int)(bcache[author - 1].post_limit_badpost)) ||
cuser.numlogins < ((unsigned int)(bcache[author - 1].post_limit_logins) * 10) ||
cuser.numposts < ((unsigned int)(bcache[author - 1].post_limit_posts) * 10)) ) {
- vmsg("你不夠資深喔!");
+ vmsg("你不夠資深喔! (可在目的看板內按大寫 I 查看限制)");
return FULLUPDATE;
}
@@ -2340,7 +2340,7 @@ recommend(int ent, fileheader_t * fhdr, const char *direct)
cuser.numlogins < ((unsigned int)(bcache[currbid - 1].post_limit_logins) * 10) ||
cuser.numposts < ((unsigned int)(bcache[currbid - 1].post_limit_posts) * 10)) ) {
move(5, 10);
- vmsg("你不夠資深喔!");
+ vmsg("你不夠資深喔! (可按大寫 I 查看限制)");
return FULLUPDATE;
}
#endif
diff --git a/mbbsd/mail.c b/mbbsd/mail.c
index 6f997979..9f731530 100644
--- a/mbbsd/mail.c
+++ b/mbbsd/mail.c
@@ -1298,7 +1298,7 @@ mail_cross_post(int ent, fileheader_t * fhdr, const char *direct)
cuser.numlogins < ((unsigned int)(bcache[ent - 1].post_limit_logins) * 10) ||
cuser.numposts < ((unsigned int)(bcache[ent - 1].post_limit_posts) * 10)) ) {
move(5, 10);
- vmsg("你不夠資深喔!");
+ vmsg("你不夠資深喔! (可在看板內按大寫 I 查看限制)");
return FULLUPDATE;
}
diff --git a/mbbsd/vote.c b/mbbsd/vote.c
index 9a499d52..5aa6fda6 100644
--- a/mbbsd/vote.c
+++ b/mbbsd/vote.c
@@ -909,7 +909,7 @@ user_vote_one(vote_buffer_t *vbuf, const char *bname, int ind)
fclose(lfp);
if (cuser.firstlogin > closetime || cuser.numposts < limits_posts ||
cuser.numlogins < limits_logins) {
- vmsg("你不夠資深喔!");
+ vmsg("你不夠資深喔! (可在看板內按大寫 I 查看限制)");
return FULLUPDATE;
}
}
diff --git a/mbbsd/voteboard.c b/mbbsd/voteboard.c
index 3578317a..c228abfb 100644
--- a/mbbsd/voteboard.c
+++ b/mbbsd/voteboard.c
@@ -29,7 +29,7 @@ do_voteboardreply(const fileheader_t * fhdr)
cuser.numlogins < ((unsigned int)(fhdr->multi.vote_limits.logins) * 10) ||
cuser.numposts < ((unsigned int)(fhdr->multi.vote_limits.posts) * 10) ) {
move(5, 10);
- vmsg("你不夠資深喔!");
+ vmsg("你不夠資深喔! (可按大寫 I 查看限制)");
return;
}
setbpath(fpath, currboard);
@@ -172,7 +172,7 @@ do_voteboard(int type)
cuser.numlogins < ((unsigned int)(bcache[currbid - 1].vote_limit_logins) * 10) ||
cuser.numposts < ((unsigned int)(bcache[currbid - 1].vote_limit_posts) * 10) ) {
move(5, 10);
- vmsg("你不夠資深喔!");
+ vmsg("你不夠資深喔! (可按大寫 I 查看限制)");
return FULLUPDATE;
}
move(0, 0);