mirror of
https://github.com/tbamud/tbamud.git
synced 2025-12-23 18:50:13 +01:00
Added %log% command, and made capitalization up to the builders discretion in various trigedit messages. (#35)
* Added %log%, and made %send%, %echo%, etc. not force capitalization. * Fixed Previous Commit * Really fixed this time.
This commit is contained in:
parent
512fd64d65
commit
023348b0a0
8 changed files with 51 additions and 3 deletions
|
|
@ -282,6 +282,28 @@ ACMD(do_mecho)
|
|||
sub_write(p, ch, TRUE, TO_CHAR);
|
||||
}
|
||||
|
||||
ACMD(do_mlog)
|
||||
{
|
||||
char *p;
|
||||
|
||||
if (!MOB_OR_IMPL(ch)) {
|
||||
send_to_char(ch, "%s", CONFIG_HUH);
|
||||
return;
|
||||
}
|
||||
|
||||
if (AFF_FLAGGED(ch, AFF_CHARM))
|
||||
return;
|
||||
|
||||
if (!*argument)
|
||||
return;
|
||||
|
||||
p = argument;
|
||||
skip_spaces(&p);
|
||||
|
||||
mob_log(ch, p);
|
||||
|
||||
}
|
||||
|
||||
ACMD(do_mzoneecho)
|
||||
{
|
||||
int zone;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue