Started on random handler

This commit is contained in:
Jeroen Ketelaar
2014-02-18 22:40:06 +01:00
parent 39cc7f735a
commit 0ecef657c5
4 changed files with 71 additions and 30 deletions
@@ -1,7 +1,5 @@
package org.parabot.environment.scripts;
import java.util.Collection;
import org.parabot.core.Context;
import org.parabot.core.Core;
import org.parabot.core.ui.components.BotToolbar;
@@ -12,6 +10,8 @@ import org.parabot.environment.scripts.framework.LoopTask;
import org.parabot.environment.scripts.framework.SleepCondition;
import org.parabot.environment.scripts.framework.Strategy;
import java.util.Collection;
/**
*
* Script template, scripts are 'add-ons' which executes various tasks in-game
@@ -33,7 +33,7 @@ public class Script implements Runnable {
public static final int STATE_PAUSE = 1;
public static final int STATE_STOPPED = 2;
public boolean onExecute() {
public boolean onExecute() {
return true;
}