PHP Code:
public plugin_init()
register_message(get_user_msgid("TextMsg"), "msgTextMsg")
public msgTextMsg(iMessage, iDest, id)
{
static szMessage[32]
get_msg_arg_string(2, szMessage, charsmax(szMessage))
set_hudmessage(bla bla)
show_hudmessage(id, szMessage)
}
If the message contains arguments, like this one:
PHP Code:
"Cstrike_TitlesTXT_Game_bomb_drop" "%s1 dropped the bomb"
... how do I get the full formated message without the "%s" and send it as a HUD message?
__________________