Hey i realy thank u but one more question
If i type something like: Hello
the output is: °hello°
something like quotes. i tried that:
PHP Code:
#include <amxmodx>
public plugin_init()
{
register_clcmd("say /wordhere", "cmdWord")
register_clcmd("_mm_wordhere", "mmWord")
}
public cmdWord(id)
{
client_cmd(id, "messagemode _mm_wordhere")
}
public mmWord(id)
{
new szTemp[64]
read_args(szTemp, charsmax(szTemp))
client_print(id, print_chat, "You just said: %s", remove_quotes(szTemp)) //<------------------- HERE
}
Look in comment, but it didnt work the it just remove the output.
__________________