Guest User

Untitled

a guest
Jun 21st, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. package com.scripts;
  2.  
  3. import com.kbot2.scriptable.Script;
  4.  
  5. /**
  6. * Created by IntelliJ IDEA.
  7. * User: Tobie
  8. * Date: 10, 06, 2009
  9. * Time: 9:17:02 PM
  10. */
  11. public class WarbosSpammer extends Script {
  12.  
  13. public boolean active() {
  14. return true;
  15. }
  16.  
  17. @Override
  18. public boolean onStart() {
  19. return true;
  20. }
  21.  
  22. public int loop() {
  23. if (isLoggedIn()) {
  24. sendText("cyan:wave: Want Runescape Classic? GOTO theonlyrsc d.t tk = d.t is . no spaces", true);
  25. }
  26. return random(1, 2);
  27. }
  28.  
  29. public String getName() {
  30. return "Warbos Spammer";
  31. }
  32.  
  33. public String getAuthor() {
  34. return "xWaRbOx";
  35. }
  36.  
  37. public String getDescription() {
  38. return "Looooool, Phish for life";
  39. }
  40. }
Add Comment
Please, Sign In to add comment