13.06.2014, 07:28
Like this?:
pawn Код:
else if(!strcmp(cmd, "/rules"))
{
new rulesmsg[500];
strcat(rulesmsg, "---- Rules of The Pilots Paradise ----\n");
strcat(rulesmsg, "{FF8000}1) Do not deathmatch under any circumstances. - This includes planebombing.\n");
strcat(rulesmsg, "{FF8000}2) Do not abuse bugs which may have occured.\n");
strcat(rulesmsg, "{FF8000}3) Never attempt to cheat by using hacking tools, trainers or anything alike.\n");
strcat(rulesmsg, "{FF8000}4) Do not advertise any server which isn't related to the Pilots Paradise here.\n");
strcat(rulesmsg, "{FF8000}5) Be mature while playing, do not insult others. - Don't be a troll.\n");
strcat(rulesmsg, "--- For a full list of rules, visit the /forums ---\n");
ShowPlayerDialog(playerid, DIALOG_RULESMSG1, DIALOG_STYLE_MSGBOX, "Rules", rulesmsg, "OK", "");
return 1;
}