Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. import java.lang.System;
  2.  
  3. import com.rsbuddy.script.ActiveScript;
  4. import com.rsbuddy.script.Manifest;
  5.  
  6.  
  7. @Manifest(authors={"weequ"}, name="abc", version=1, description="")
  8.  
  9. public class abc extends ActiveScript {
  10.  
  11.  
  12. public Account[] accounts = new Account[2];
  13.  
  14. public int loop() {
  15. return 0;
  16. }
  17.  
  18. public static class Account {
  19. static String name;
  20. static String password;
  21. }
  22.  
  23. public boolean onStart() {
  24. accounts[0].name = "zezima";
  25. accounts[0].password = "zezimapass";
  26. accounts[1].name = "andrew";
  27. accounts[1].password = "andrewpass";
  28. log(accounts[0].name);
  29. log(accounts[0].password);
  30. return true;
  31. }
  32.  
  33. public void onFinish() {
  34. }
  35.  
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement