Hi !
Any one tell me how to add function remplace message when i determine his place !
ex :
Code:
#include <amxmodx>
#include <amxmisc>
#define MSG_POS_X 2457
#define MSG_POS_Y 4096
public plugin_init() {
register_message(SVC_TEMPENTITY, "hud_text_msg")
}
public hud_text_msg(id)
{
if (get_msg_arg_int(1) == TE_TEXTMESSAGE && get_msg_arg_int(3) == MSG_POS_X && get_msg_arg_int(4) == MSG_POS_Y)
// here i think ! i need some code plese
}
__________________