01.12.2015, 18:57
Hello guys, im making a simple dialog that should show the server rules,
Im hoping that someone would be able to help me out, since it is only showing the last rule.
Some language/grammar corrections would be appreciated very much too.
Im hoping that someone would be able to help me out, since it is only showing the last rule.
Some language/grammar corrections would be appreciated very much too.
Код:
CMD:rules(playerid, params[]) { new str[524]; format(str, sizeof(str),"1. Respect the rules, the players and the administrators."); format(str, sizeof(str),"2. Misuse of the chat is not allowed this includes spamming, and unnessecary use of capitalization."); format(str, sizeof(str),"3. Hacking cheating is not allowed, in any way."); format(str, sizeof(str),"4. While playing a LEO class its not allowed to attack innocent players."); format(str, sizeof(str),"5. Team killing as LEO is not allowed."); format(str, sizeof(str),"6. While playing as a LEO it is not allowed to team with civillians."); format(str, sizeof(str),"7. Do not EMP vehicles if there are no wanted players inside."); format(str, sizeof(str),"8. Do not quit or pause to avoid anything. You will be jailed for this."); format(str, sizeof(str),"9. Park your owned vehicle in a sensible spot, preferably at your house."); format(str, sizeof(str),"10. Farming score/xp/money in unacceptable, you will be banned for this."); format(str, sizeof(str),"11. Do not drive-by without driver."); format(str, sizeof(str),"12. The scam limit is $10,000."); format(str, sizeof(str),"13. Do not question administrative actions."); format(str, sizeof(str),"14. Bugs should be reported, not abused."); format(str, sizeof(str),"15. Account sharing is not allowed, this results in termination of both accounts."); format(str, sizeof(str),"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."); format(str, sizeof(str),"These rules may be updated without announcement(s) given."); ShowPlayerDialog(playerid, dRULES,DIALOG_STYLE_MSGBOX,"Server Rules",str, "Close",""); return 1; }