You mean to add a command that give you the server's rules ?
If yes, you have just to add some SendClientMessage to a command:
else if(strcmp(cmd, "rules", true) == 0) {
SendClientMessage(playerid,COLOR_RED,"Here put the first server's rule");
SendClientMessage(playerid,COLOR_RED,"Here put the second server's rule");
SendClientMessage(playerid,COLOR_RED,"Here put the third server's rule");
return 1;
}
If you want to add more than 3 rules, just add more SendClientMessage after the last.
SendClientMessage function:
SendClientMessage(playerid,color,text);
playerid = the player ID of that player that will receive the text
color = the color of the text.
(NOTE:In this version of VC:MP, if you will send a yellow text, and after that a red one, the yellow text will be red too. Is a bug.)
text = the text that will be sent.