diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-09-20 20:06:46 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-09-20 20:06:46 -0300 |
commit | 501d7834ba0bc674cb38e7e3bdcde6483352052f (patch) | |
tree | e8435fcd07af1eaba70c3875d69e1a1abcc7da95 /src/emap/script_buildins.c | |
parent | 6ee06fdebc63a87a427b751727c777863b76e0a1 (diff) | |
download | evol-hercules-501d7834ba0bc674cb38e7e3bdcde6483352052f.tar.gz evol-hercules-501d7834ba0bc674cb38e7e3bdcde6483352052f.tar.bz2 evol-hercules-501d7834ba0bc674cb38e7e3bdcde6483352052f.tar.xz evol-hercules-501d7834ba0bc674cb38e7e3bdcde6483352052f.zip |
Add consolewarn() and consolebug() replacements for consolemes() and debugmes()
For the syslog monitor
Diffstat (limited to 'src/emap/script_buildins.c')
-rw-r--r-- | src/emap/script_buildins.c | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/emap/script_buildins.c b/src/emap/script_buildins.c index d61811c..7fe408a 100644 --- a/src/emap/script_buildins.c +++ b/src/emap/script_buildins.c @@ -3067,6 +3067,46 @@ BUILDIN(debugmes) } /*========================================== + * + *------------------------------------------*/ +BUILDIN(consolewarn) +{ + struct StringBuf buf; + StrBuf->Init(&buf); + + if (!script->sprintf_helper(st, 2, &buf)) { + StrBuf->Destroy(&buf); + script_pushint(st, 0); + return false; + } + + ShowWarning("script warning : %d %d : %s\n", st->rid, st->oid, StrBuf->Value(&buf)); + StrBuf->Destroy(&buf); + script_pushint(st, 1); + return true; +} + +/*========================================== + * + *------------------------------------------*/ +BUILDIN(consolebug) +{ + struct StringBuf buf; + StrBuf->Init(&buf); + + if (!script->sprintf_helper(st, 2, &buf)) { + StrBuf->Destroy(&buf); + script_pushint(st, 0); + return false; + } + + ShowError("script error : %d %d : %s\n", st->rid, st->oid, StrBuf->Value(&buf)); + StrBuf->Destroy(&buf); + script_pushint(st, 1); + return true; +} + +/*========================================== * gmcommand [MouseJstr] *------------------------------------------*/ BUILDIN(atcommand) |