14.08.2013, 14:49
simple only copy this
and put below the last rule you write, and where say rule? is on you write the rules
example
you understand?
pawn Код:
strcat(PT, "{FFFFFF}>: Rule ? \n", sizeof(PT));
example
pawn Код:
CMD:rules(playerid)
{
new PT[1000];
strcat(PT, "{FFFFFF}>: Rule 1 \n", sizeof(PT));
strcat(PT, "{00FF00}>: Rule 2 \n", sizeof(PT));
strcat(PT, "{00FF00}>: Rule 3 \n", sizeof(PT));
strcat(PT, "{00FF00}>: Rule 4 \n", sizeof(PT));
strcat(PT, "{00FF00}>: Rule ? \n", sizeof(PT));
strcat(PT, "{00FF00}>: Rule ? \n", sizeof(PT));
strcat(PT, "{00FF00}>: Rule ? \n", sizeof(PT));
strcat(PT, "{00FF00}>: Rule ? \n", sizeof(PT));
strcat(PT, "{00FF00}>: Rule ? \n", sizeof(PT));
strcat(PT, "{00FF00}>: Rule ? \n", sizeof(PT));
// and continues
ShowPlayerDialog(playerid, 5, DIALOG_STYLE_MSGBOX, "{46BEE6}YS Server Rules:", PT, "I Agree", "I Disagree");
return 1;
}