Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 21st, 2012  |  syntax: None  |  size: 0.40 KB  |  hits: 13  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. import org.rsbot.script.Script;
  2. import org.rsbot.script.ScriptManifest;
  3.  
  4.  
  5. @ScriptManifest(authors = "Test", keywords = "Other", name = "Test", version = 1.0, description = "Test")
  6. public class Test extends Script {
  7.  
  8. public boolean onStart(){
  9.   log("Welcome to Test.");
  10.   return true;
  11.  
  12. }
  13.  
  14. public void onFinish(){
  15.   log("Goodbye.");
  16. }
  17.  
  18.   @Override
  19.   public int loop() {
  20.  
  21.     return 0;
  22.  
  23.   }
  24. }