Инфо из amxmodx.inc:
/* Returns id of client message.
* Example: get_user_msgid("TextMsg"). */
native get_user_msgid(const name[]);
Синтаксис:
get_user_msgid(const name[])
- const name[] - название события, например "Money"
Тип функции:
Native
Пример:
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "[messages.inc] get_user_msgid"
#define VERSION "1.0"
#define AUTHOR "Admin"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_message(get_user_msgid("Money"),"message_money")
}
public message_money(msg_id,msg_dest,msg_entity){
console_print(0,"msg_id[%d]",msg_id)
console_print(0,"msg_dest[%d]",msg_dest)
console_print(0,"msg_entity[%d]",msg_entity)
}
Описание:
Пример взят из описания функции register_message, по этому нет смысла его тут повторно описывать. Главное понять что данная функция облегчает нам жизнь.