Advertisement
Guest User

Untitled

a guest
Oct 9th, 2015
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.97 KB | None | 0 0
  1. public String getHelp(int page) {
  2. String help = "";
  3. if (page == 4) {
  4. help = addLine(help, "&8&m-----------------------------------------------------");
  5. help = addLine(help, "&6Faction Help &e(Page 4/4)");
  6. help = addLine(help, "&a/f withdraw > &7Withdraws money from the faction balance.");
  7. help = addLine(help, "&6You are currently on &fPage 4/4.");
  8. help = addLine(help, "&6To view other pages, use &e/f help <page#>.");
  9. help = addLine(help, "&8&m-----------------------------------------------------");
  10. } else if (page == 2) {
  11. help = addLine(help, "&8&m-----------------------------------------------------");
  12. help = addLine(help, "&6Faction Help &e(Page 2/4)");
  13. help = addLine(help, "&a/f disband > &7Disband your faction.");
  14. help = addLine(help, "&a/f home > &7Teleport to the faction home.");
  15. help = addLine(help, "&a/f invite > &7Invite a player to the faction.");
  16. help = addLine(help, "&a/f kick > &7Kick a player from the faction.");
  17. help = addLine(help, "&a/f leader > &7Sets the new leader for your faction.");
  18. help = addLine(help, "&a/f leave > &7Leave your current faction.");
  19. help = addLine(help, "&a/f list > &7See a list of all factions.");
  20. help = addLine(help, "&a/f map > &7View all claims around your location.");
  21. help = addLine(help, "&a/f msg > &7Sends a message to your faction.");
  22. help = addLine(help, "&6You are currently on &fPage 2/4.");
  23. help = addLine(help, "&6To view other pages, use &e/f help <page#>.");
  24. help = addLine(help, "&8&m-----------------------------------------------------");
  25. } else if (page == 3) {
  26. help = addLine(help, "&8&m-----------------------------------------------------");
  27. help = addLine(help, "&6Faction Help &e(Page 3/4)");
  28. help = addLine(help, "&a/f rename > &7Change the name of your faction.");
  29. help = addLine(help, "&a/f promote > &7Promotes a player to a captain.");
  30. help = addLine(help, "&a/f sethome > &7Sets the faction home location.");
  31. help = addLine(help, "&a/f show > &7Get details about a faction.");
  32. help = addLine(help, "&a/f subclaim > &7Shows the subclaim help page.");
  33. help = addLine(help, "&a/f unclaim > &7Unclaims land from your faction.");
  34. help = addLine(help, "&a/f uninvite > &7Revoke an invitation to a player.");
  35. help = addLine(help, "&6You are currently on &fPage 3/4.");
  36. help = addLine(help, "&6To view other pages, use &e/f help <page#>.");
  37. help = addLine(help, "&8&m-----------------------------------------------------");
  38. } else {
  39. help = addLine(help, "&8&m-----------------------------------------------------");
  40. help = addLine(help, "&6Faction Help &e(Page 1/4)");
  41. help = addLine(help, "&a/f accept > &7Accept a join request from an existing faction.");
  42. help = addLine(help, "&a/f chat > &7Toggle faction chat only mode on or off.");
  43. help = addLine(help, "&a/f claim > &7Claim land in the Wilderness.");
  44. help = addLine(help, "&a/f create > &7Create a faction.");
  45. help = addLine(help, "&a/f demote > &7Demotes a player to a member.");
  46. help = addLine(help, "&a/f deposit > &7Deposits money to the faction balance.");
  47. help = addLine(help, "&6You are currently on &fPage 1/4.");
  48. help = addLine(help, "&6To view other pages, use &e/f help <page#>");
  49. help = addLine(help, "&8&m-----------------------------------------------------");
  50. }
  51.  
  52. return help;
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement