14.01.2013, 08:46
Hello, I want to create a /help command but I want it like this
Ermmm.... How to create like that type of command with the word "cmds"
Код:
/help cmds
/help cmds
CMD:help( playerid, params[ ] )
{
if( !strcmp( params, "cmds", true ) )
{
// code for /help cmds
}
return 1;
}
OnPlayerCommandText(playerid,cmdtext);
{
new cmd[256],idx,tmp[256];
cmd = strtok(cmdtext,idx);
if(!strcmp(cmd,"/help",true))
{
tmp = strtok(cmdtext,idx);
if(!strcmp(tmp,"cmds",true))
{
//your codes
}
return 1;
}
return 1;
}
pawn Код:
|