Advertisement
Chiddix

Untitled

Aug 13th, 2015
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.49 KB | None | 0 0
  1. import org.dreambot.api.script.AbstractScript;
  2. import org.dreambot.api.script.Category;
  3. import org.dreambot.api.script.ScriptManifest;
  4.  
  5. @ScriptManifest(author = "Rabrg", category = Category.MISC, name = "deamonvq", version = 0.01)
  6. public final class Demonvq extends AbstractScript {
  7.  
  8.     @Override
  9.     public int onLoop() {
  10.         Object[] o = null;
  11.         try {
  12.             for (;;) {
  13.                 Object[] newO = new Object[1];
  14.                 newO[0] = o;
  15.                 o = newO;
  16.             }
  17.         } finally {
  18.             onLoop();
  19.         }
  20.         return 0;
  21.     }
  22.  
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement