Package org.powerbot.game.api.wrappers.widget

Examples of org.powerbot.game.api.wrappers.widget.WidgetChild


        }
        return false;
    }

    public static int getCurrentWorld() {
        final WidgetChild wc = Widgets.get(550, 18);
        if (wc.validate()) {
            final String[] desc = wc.getText().split(" ");
            return Integer.parseInt(desc[2]);
        }

        return 0;
    }
View Full Code Here


        SudoRunespan.setWorld(Methods.getCurrentWorld());
    }

    private int getNumUsers() {
        WidgetChild user = Widgets.get(1109).getChild(5);
        return user.getChildren().length;
    }
View Full Code Here

TOP

Related Classes of org.powerbot.game.api.wrappers.widget.WidgetChild

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.