Hey. I ran some speed-test which is
"zcmd" versus "Romanius Command Engine" and found out that Romanius's CMD engine is faster.
For anyone interested, it's syntax are like this :
PCMD:me( playerid, params[ ], pc ) // pc = param count
{
if ( !pc ) // No params
{
SendClientMessage( playerid, -1, "/me action" );
return 1;
}
new str[ 128 ], name[ 24 ]; GetPlayerName( playerid, name, 24 );
format( str, sizeof str, "* %s %s", name, params );
SendClientMessageToAll( -1, str );
return 1;
}
PCMD:hello works with ~> /HELLO, /hElLo which means it's not case-sensitive.
I'm using Romanius CMD system at my gamemode and haven't found any problems yet.
This is just a suggestion
