03.02.2013, 13:45
Something like this or use dialog list on help cmd!
PHP код:
CMD:help(playerid, params[])
{
if(!sscanf(params,"s[40]", help))
{
if(strcmp(help,"new", true) == 0)
{
}
else if(strcmp(help,"_", true) == 0)
{
}
// And so on.
}
else
{
SendClientMessage(playerid, -1,"/help new, _, _, _, _");
}
return 1;
}
}