Guest User

Untitled

a guest
Oct 17th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. import org.rsbot.script.*;
  2. import org.rsbot.script.wrappers.*;
  3.  
  4. @ScriptManifest(authors = {""}, keywords = {""}, name = "skeleton", description = "A basic skeleton. Does nothing.", version = 1)
  5.  
  6. public class skeleton extends Script{
  7.  
  8. @Override
  9. public boolean onStart() {
  10. return true;
  11. }
  12.  
  13. public int loop() {
  14. equipment.getCount();
  15. interfaces.getComponent(387,34).doClick();
  16. return random(500, 1500);
  17. }
  18.  
  19. @Override
  20. public void onFinish() {
  21. }
  22.  
  23. }
Add Comment
Please, Sign In to add comment