Edit:
PHP Code:
public ClCmd_Say( id )
{
new szArgs[ 64 ]
read_args( szArgs, charsmax( szArgs ) )
remove_quotes( szArgs )
new arg1[16]
new arg2[32]
strbreak(szArgs, arg1, charsmax(arg1), arg2, charsmax(arg2))
if (equali(arg1,"/donate"))
donate(id, arg2)
}
PHP Code:
public ClCmd_Say( id )
{
new szArgs[ 64 ];
read_args( szArgs, charsmax( szArgs ) );
remove_quotes( szArgs );
new arg1[16];
new arg2[32];
strbreak(szArgs, arg1, charsmax(arg1), arg2, charsmax(arg2));
if (equali(arg1,"/donatexp"))
donate(id, arg2);
}
You should read the description of this native before using it...
http://www.amxmodx.org/doc/index.htm...re%2Fequal.htm
</span></span>