From 5eb095b5140118bc86761a4aa3594b6de5232200 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johnny=20Bergstr=C3=B6m?= Date: Mon, 25 Oct 2004 23:00:16 +0000 Subject: [PATCH] Added native get_user_msgname(msgid, name[], len); --- amxmodx/amxmodx.cpp | 11 +++++++++++ plugins/include/amxmodx.inc | 4 ++++ 2 files changed, 15 insertions(+) diff --git a/amxmodx/amxmodx.cpp b/amxmodx/amxmodx.cpp index 7e82df1b..f769c04e 100755 --- a/amxmodx/amxmodx.cpp +++ b/amxmodx/amxmodx.cpp @@ -1678,6 +1678,16 @@ static cell AMX_NATIVE_CALL get_user_msgid(AMX *amx, cell *params) /* 1 param */ return GET_USER_MSG_ID(PLID, sptemp , NULL ); } +static cell AMX_NATIVE_CALL get_user_msgname(AMX *amx, cell *params) /* get_user_msgname(msg, str[], len) = 3 params */ +{ + const char* STRING = GET_USER_MSG_NAME(PLID, params[1], NULL); + if (STRING) + return set_amxstring(amx, params[2], STRING, params[3]); + + // Comes here if GET_USER_MSG_NAME failed (ie, invalid msg id) + return 0; +} + static cell AMX_NATIVE_CALL set_task(AMX *amx, cell *params) /* 2 param */ { @@ -2760,6 +2770,7 @@ AMX_NATIVE_INFO amxmod_Natives[] = { { "get_user_ip", get_user_ip }, { "get_user_menu", get_user_menu}, { "get_user_msgid", get_user_msgid}, + { "get_user_msgname", get_user_msgname}, { "get_user_name", get_user_name }, { "get_user_origin", get_user_origin}, { "get_user_ping", get_user_ping }, diff --git a/plugins/include/amxmodx.inc b/plugins/include/amxmodx.inc index cd5b8c8e..bff65db6 100755 --- a/plugins/include/amxmodx.inc +++ b/plugins/include/amxmodx.inc @@ -535,6 +535,10 @@ native random_num(a,b); * Example: get_user_msgid("TextMsg"). */ native get_user_msgid(const name[]); +/* Gets name of client message index. Return value is number of +* characters copied into name. Returns 0 on invalid msgid. */ +native get_user_msgname(msgid, name[], len); + /* Checks if public variable with given name exists in loaded plugins. */ native xvar_exists( const name[] );