Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 1st, 2012  |  syntax: Java  |  size: 0.97 KB  |  hits: 14  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. /**
  2. **Should be pretty self explanatory to what this does. I did not add this to the DialogueHandler class, would be pretty pointless, right?
  3. **/
  4. public void handleStarter() {
  5.                 c.getDH().sendOption5("Rookie", "Average", "Legend", "", "");
  6.                 c.dialogueAction = 28;
  7.                 c.dialogueId = 38;
  8.         }
  9.  
  10. /**
  11. **1st ClickingButtons
  12. **/
  13. } else if (c.dialogueAction == 28) {
  14.                                 c.nextChat = 26;
  15.                                 c.difficulty = 0;
  16.                                 c.starter = true;
  17.  
  18. /**
  19. **2nd ClickingButtons
  20. **/
  21. } else if (c.dialogueAction == 28) {
  22.                                 c.nextChat = 26;
  23.                                 c.difficulty = 1;
  24.                                 c.starter = true;
  25.  
  26. /**
  27. **3rd ClickingButtons
  28. **/
  29. } else if (c.dialogueAction == 28) {
  30.                                 c.nextChat = 26;
  31.                                 c.difficulty = 2;
  32.                                 c.starter = true;
  33.  
  34. /**
  35. **On login, this is supposedly designed to check and see if you have chosen your difficulty or not
  36. **/
  37. if (starter = false) {
  38.                                 getPA().handleStarter();
  39. } else {
  40.                                 sendMessage("You are currently on level " + difficulty + " difficulty.");
  41.                                 return;
  42.                         }