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