Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.scripts;
- import com.kbot2.scriptable.Script;
- import com.kbot2.scriptable.methods.data.Walking;
- import com.kbot2.scriptable.methods.data.Skills;
- import com.kbot2.scriptable.methods.wrappers.Obj;
- import com.kbot2.scriptable.methods.wrappers.Tile;
- import com.kbot2.scriptable.methods.wrappers.Interface;
- import com.kbot2.handlers.eventSystem.eventListeners.PaintListener;
- import java.awt.*;
- /**
- * Created by Eclipse.
- * User: ILiked
- * Date: 3-mei-2009
- * Time: 22:13:44
- */
- public class TutIslandSolver extends Script implements PaintListener {
- /**
- * Gets called before every loop.
- *
- * @return true to call loop() and false to stop the script.
- */
- public boolean active() {
- return true;
- }
- /**
- * Register event listener and communicate with the user to st up the script here.
- *
- * @return if the script shall start or not.
- */
- @Override
- /**
- * Scripts loop.
- *
- * @return time to next loop.
- */
- public int loop() {}
- /**
- * Get the scripts name
- *
- * @return
- */
- public String getName() {
- return "TutIslandSolver";
- }
- /**
- * Gets the script author
- *
- * @return
- */
- public String getAuthor() {
- return "ILikedRSBot";
- }
- /**
- * Gets the scripts description.
- *
- * @return
- */
- public String getDescription() {
- return "Solves Tutorial Island\n" +
- "Start in Tutorial Island having done nothing.";
- }
- /**
- * Search tags.
- *
- * @return
- */
- @Override
- public String[] getTags() {}
- /**
- * Gets called on each repaint.
- * This at default 50 times a second so try not to do anything resource intensive.
- *
- * @param g instance of the graphics object to paint on
- */
Add Comment
Please, Sign In to add comment