PHP код:
CMD:rules(playerid){
new szAREA[1024];
szAREA = "";
strcat(szAREA,"1. Respect the rules, the players and the administrators.\n");
strcat(szAREA,"2. Misuse of the chat is not allowed this includes spamming, and unnessecary use of capitalization.\n");
strcat(szAREA,"3. Hacking cheating is not allowed, in any way.\n");
strcat(szAREA,"4. While playing a LEO class its not allowed to attack innocent players.\n");
strcat(szAREA,"5. Team killing as LEO is not allowed.\n");
strcat(szAREA,"6. While playing as a LEO it is not allowed to team with civillians.\n");
strcat(szAREA,"7. Do not EMP vehicles if there are no wanted players inside.\n");
strcat(szAREA,"8. Do not quit or pause to avoid anything. You will be jailed for this.\n");
strcat(szAREA,"9. Park your owned vehicle in a sensible spot, preferably at your house.\n");
strcat(szAREA,"10. Farming score/xp/money in unacceptable, you will be banned for this.\n");
strcat(szAREA,"11. Do not drive-by without driver.\n");
strcat(szAREA,"12. The scam limit is $10,000.\n");
strcat(szAREA,"13. Do not question administrative actions.\n");
strcat(szAREA,"14. Bugs should be reported, not abused.\n");
strcat(szAREA,"15. Account sharing is not allowed, this results in termination of both accounts.\n");
strcat(szAREA,"These are the basic rules, there are more rules, but they are not listed.\n If you have a question regarding the rules ask an administrator first.\n");
strcat(szAREA,"These rules may be updated without announcement(s) given.");
ShowPlayerDialog(playerid, dRULES,DIALOG_STYLE_MSGBOX,"Server Rules",szAREA,"Close","");
return 1;
}