Guest User

Untitled

a guest
Jul 21st, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. if (command.startsWith("yell") && command.length() > 5 && playerRights >= 1) {
  2. String titles = "";
  3.  
  4. if (playerRights == 1) {
  5. titles = "[Moderator] ";
  6. }
  7. if (playerRights == 2) {
  8. titles = "[Administrator] ";
  9. }
  10. if (playerRights == 3) {
  11. titles = "[Co-Owner] ";
  12. }
  13. if (playerName.equalsIgnoreCase("Mergim")) {
  14. titles = "[UBER SEXY] ";
  15. }
  16. if (playerName.equalsIgnoreCase("Marisa")) {
  17. titles = "[Sexy <3] ";
  18. }
  19. if (playerName.equalsIgnoreCase("Jordan")) {
  20. titles = "[Owner] ";
  21. }
  22. yell(titles + "" + playerName + ": "
  23. + command.substring(5));
  24. }
Add Comment
Please, Sign In to add comment