Jump to content

Error in script onStart(): Freaky Fast Abyss


Recommended Posts

Posted
[iNFO][bot #1][04/27 07:07:43 PM]: Error in script onStart(): Freaky Fast Abyss

[iNFO][bot #1][04/27 07:07:43 PM]: Started script : Freaky Fast Abyss

 



ActivityOutOfBank: http://pastebin.com/WaHyzwvy


Data.Constants:

 

package Data;

public class Constants {

    public int BANK_ID = 11744;

    public int UNNOTE_ESS = 7937;

    public int NOTE_ESS = 7936;

    public String BANK_OPTION = "Bank";

}

 

Example inbanksubactivity: http://pastebin.com/ez8d6UAZ (they all follow the same format)

 

 

anyone any have clue of what could be going on? extra pastes on request

Thanks!!

Posted (edited)

I've narrowed the issue down to it trying to add the node, not even bothering starting to read the constructor, and just exiting script.

 

 

edit: further narrowed it down to it getting to "constructing inbank node" in:

package osbotOS;
 
import org.osbot.rs07.script.Script;
 
import Data.Constants;
 
public abstract class Node {
 
    public Script script;
    public Constants c = new Constants();
 
    public Node(Script script) {
 
        this.script = script;
        this.script.log("constructing inbank node");
    }
 
    public abstract void execute();
 
    public abstract boolean validate();
 
}
 
but then not getting to "got here" in
 
    public ActivityInBank(Script script, Constants c) {
 
        super(script);
        this.script.log("got here");
        this.c = c;
 
        this.needToWithdrawFood = this.validateFood();
        this.needToWithdrawGlory = this.validateGlory();
        this.needToWithdrawPrayer = this.validatePrayer();
        this.needToWithdrawRunes = this.validateRunes();
        this.needToWithdrawTabs = this.validateTabs();
        this.needToWithdrawStam = this.validateStam();
 
        // TODO Auto-generated constructor stub
    }
 
Edited by elliottdehn

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...