Package org.powerbot.game.api.wrappers

Examples of org.powerbot.game.api.wrappers.Locatable


            g.setFont(nodeBlockFont);
            g.drawString("SCRIPT IS BLOCKING NODES", 171, 100);
            g.drawString("GETTING MORE RUNE ESS", 180, 130);
        }

        final Locatable target = SudoRunespan.getTarget();
        if (target != null && target.getLocation().isOnScreen()) {
            g.setColor(Color.RED);
            g.drawPolygon(target.getLocation().getBounds()[0]);
            g.setColor(alphaRed);
            g.fillPolygon(target.getLocation().getBounds()[0]);
        }

        if (Widgets.get(1274).validate()) {
            gainedPoints = Integer.parseInt(Widgets.get(1274, 2).getText()) - startPoints;
        }
View Full Code Here

TOP

Related Classes of org.powerbot.game.api.wrappers.Locatable

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.