
Untitled
By: a guest on
May 1st, 2012 | syntax:
Java | size: 0.97 KB | hits: 14 | expires: Never
/**
**Should be pretty self explanatory to what this does. I did not add this to the DialogueHandler class, would be pretty pointless, right?
**/
public void handleStarter() {
c.getDH().sendOption5("Rookie", "Average", "Legend", "", "");
c.dialogueAction = 28;
c.dialogueId = 38;
}
/**
**1st ClickingButtons
**/
} else if (c.dialogueAction == 28) {
c.nextChat = 26;
c.difficulty = 0;
c.starter = true;
/**
**2nd ClickingButtons
**/
} else if (c.dialogueAction == 28) {
c.nextChat = 26;
c.difficulty = 1;
c.starter = true;
/**
**3rd ClickingButtons
**/
} else if (c.dialogueAction == 28) {
c.nextChat = 26;
c.difficulty = 2;
c.starter = true;
/**
**On login, this is supposedly designed to check and see if you have chosen your difficulty or not
**/
if (starter = false) {
getPA().handleStarter();
} else {
sendMessage("You are currently on level " + difficulty + " difficulty.");
return;
}