welcomemsg.inc 2.2 KB

123456789101112131415161718192021222324252627
  1. #define WELCOME_DIALOG 7003
  2. stock displayWelcomeMessage(playerid) {
  3. new msgstring[2048]; //2048
  4. new name[] = "name";
  5. format(msgstring, sizeof(msgstring), "{FFFFFF}Welcome to {FFFF00}Project Roleplay{FFFFFF}.\nPlease take the time to briefly read over the rules to ensure that you have an enjoyable experience.", name);
  6. format(msgstring, sizeof(msgstring), "%s\n\n{FFFF91}Server Information:{FFFFFF}\nThis server is a roleplay server, which means you must be in character at all times.\nYour success in joining factions or gangs may be determined by your ability to roleplay. If you are new to\nthe concept be sure to visit our website for RP guides, tutorials and other useful information.", msgstring);
  7. format(msgstring, sizeof(msgstring), "%s\n\n{FFFF91}Rules:{FFFFFF}", msgstring);
  8. format(msgstring, sizeof(msgstring), "%s\nWe try encourage a healthy roleplay environment, please take the following rules into consideration:", msgstring);
  9. format(msgstring, sizeof(msgstring), "%s\n - No deathmatching or shooting other players without in-character justification.", msgstring);
  10. format(msgstring, sizeof(msgstring), "%s\n - No server advertising.", msgstring);
  11. format(msgstring, sizeof(msgstring), "%s\n - No driver shooting or killing with vehicles (including helicopters).", msgstring);
  12. format(msgstring, sizeof(msgstring), "%s\n - This server has a zero tolerance policy for hacking, by doing it you risk being permanently banned.", msgstring);
  13. format(msgstring, sizeof(msgstring), "%s\n\n{FFFF91}Joining the community:{FFFFFF}", msgstring);
  14. format(msgstring, sizeof(msgstring), "%s\nWe openly invite you to join our community at {8D8DFF}www.p-rp.xyz{FFFFFF}. Registering on the forum will allow you to", msgstring);
  15. format(msgstring, sizeof(msgstring), "%s\nsubmit official faction, gang and radio station applications as well as keep you informed of any future updates\nand events.", msgstring);
  16. format(msgstring, sizeof(msgstring), "%s\nIf this is your first time playing here, it is highly recommended that you take the tutorial as it will\ngive you a brief overview of some of the key features and help you get up to speed quickly.", msgstring);
  17. ShowPlayerDialog(playerid, WELCOME_DIALOG, DIALOG_STYLE_MSGBOX, "Information", msgstring, "Play", "");
  18. }