mirror of
https://github.com/tbamud/tbamud.git
synced 2026-02-16 12:48:07 +01:00
Renamed Squelch to Mute and added emote ability to all channels. (thanks Mordecai) --Rumble
This commit is contained in:
parent
8315bc5da8
commit
eff90e60d0
7 changed files with 35 additions and 19 deletions
|
|
@ -2020,11 +2020,11 @@ ACMD(do_toggle)
|
|||
else if (wimp_lev > (GET_MAX_HIT(ch) / 2))
|
||||
send_to_char(ch, "You can't set your wimp level above half your hit points.\r\n");
|
||||
else {
|
||||
send_to_char(ch, "Okay, you'll wimp out if you drop below %d hit points.\r\n", wimp_lev);
|
||||
send_to_char(ch, "Okay, you'll wimp out if you drop below %d hit points.", wimp_lev);
|
||||
GET_WIMP_LEV(ch) = wimp_lev;
|
||||
}
|
||||
} else {
|
||||
send_to_char(ch, "Okay, you'll now tough out fights to the bitter end.\r\n");
|
||||
send_to_char(ch, "Okay, you'll now tough out fights to the bitter end.");
|
||||
GET_WIMP_LEV(ch) = 0;
|
||||
}
|
||||
} else
|
||||
|
|
@ -2032,12 +2032,12 @@ ACMD(do_toggle)
|
|||
break;
|
||||
case SCMD_PAGELENGTH:
|
||||
if (!*arg2)
|
||||
send_to_char(ch, "You current page length is set to %d lines.\r\n", GET_PAGE_LENGTH(ch));
|
||||
send_to_char(ch, "You current page length is set to %d lines.", GET_PAGE_LENGTH(ch));
|
||||
else if (is_number(arg2)) {
|
||||
GET_PAGE_LENGTH(ch) = MIN(MAX(atoi(arg2), 5), 255);
|
||||
send_to_char(ch, "Okay, your page length is now set to %d lines.\r\n", GET_PAGE_LENGTH(ch));
|
||||
send_to_char(ch, "Okay, your page length is now set to %d lines.", GET_PAGE_LENGTH(ch));
|
||||
} else
|
||||
send_to_char(ch, "Please specify a number of lines (5 - 255).\r\n");
|
||||
send_to_char(ch, "Please specify a number of lines (5 - 255).");
|
||||
break;
|
||||
default:
|
||||
if (!*arg2) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue