PHP Code:
/* Script generated by Pawn Studio */
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "New Plugin"
#define AUTHOR "Unknown"
#define VERSION "1.0"
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
register_clcmd("say", "cmdsay")
}
public cmdsay(id)
{
read_args(..)
if(equali(Args, "/command"))
{
read_Args(...)
}
}
I need read_args of /commad, example: say /command 123, i need ready the '123'.
__________________