21.05.2014, 17:57
I don't understand the help part, whether help is true or not.
How do I make it accessible so it will display that message "Lists all the commands a player can use."
How do I make it accessible so it will display that message "Lists all the commands a player can use."
pawn Код:
YCMD:help(playerid, params[], help)
{
if (help)
{
SendClientMessage(playerid, 0xFF0000AA, "Lists all the commands a player can use.");
}
else
{
//
}
return 1;
}