public class HerbHarvester extends IdleScript
| Modifier and Type | Field and Description |
|---|---|
static ScriptInfo |
info |
paintBuilder, rowBuilder| Constructor and Description |
|---|
HerbHarvester() |
| Modifier and Type | Method and Description |
|---|---|
void |
bank() |
int |
countHerbs() |
void |
paintInterrupt()
This will be called by
DrawCallback every game frame. |
void |
questMessageInterrupt(java.lang.String message)
Called by
MessageCallback every time a new quest message is drawn on the
screen. |
int |
start(java.lang.String[] param)
This function is the entry point for the program.
|
void |
walkToBank() |
void |
walkToTaverly() |
chatCommandInterrupt, chatMessageInterrupt, keyPressInterrupt, npcDamagedInterrupt, playerDamagedInterrupt, privateMessageReceivedInterrupt, serverMessageInterrupt, setController, tradeMessageInterruptpublic static final ScriptInfo info
public int start(java.lang.String[] param)
IdleScriptstart in class IdleScriptparam - an array of String values representing the parameters passed to the functionpublic void walkToBank()
public int countHerbs()
public void bank()
public void walkToTaverly()
public void questMessageInterrupt(java.lang.String message)
IdleScriptMessageCallback every time a new quest message is drawn on the
screen. Override this in your script to process these messages.questMessageInterrupt in class IdleScriptmessage - -- variable containing the message.public void paintInterrupt()
IdleScriptDrawCallback every game frame. Override this in
your script to paint on the screen.paintInterrupt in class IdleScript