hello.
type console in "anno abc123" to print chat "[] 123"
i want type console in "anno abc123" to print chat "[] abc123"
where is the problem?
help me.
thanks.
source code here:
PHP Code:
#include <amxmodx>
#include <fun>
public plugin_init()
{
register_clcmd("/anno", "cmdAnno")
register_clcmd(".anno", "cmdAnno")
}
public cmdAnno(id)
{
new MessageText[4], PrintText
read_argv(1, MessageText, charsmax(MessageText))
PrintText = str_to_num(MessageText)
client_print(id, print_chat, "[prifix] %s", PrintText)
return PLUGIN_HANDLED
}