Guest User

Untitled

a guest
Jun 19th, 2018
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.77 KB | None | 0 0
  1. package com.scripts;
  2.  
  3. import com.kbot2.scriptable.Script;
  4. import com.kbot2.scriptable.methods.data.Walking;
  5. import com.kbot2.scriptable.methods.data.Skills;
  6. import com.kbot2.scriptable.methods.wrappers.Obj;
  7. import com.kbot2.scriptable.methods.wrappers.Tile;
  8. import com.kbot2.scriptable.methods.wrappers.Interface;
  9. import com.kbot2.handlers.eventSystem.eventListeners.PaintListener;
  10.  
  11. import java.awt.*;
  12.  
  13.  
  14.  
  15. /**
  16. * Created by Eclipse.
  17. * User: ILiked
  18. * Date: 3-mei-2009
  19. * Time: 22:13:44
  20. */
  21. public class TutIslandSolver extends Script implements PaintListener {
  22.  
  23.  
  24. /**
  25. * Gets called before every loop.
  26. *
  27. * @return true to call loop() and false to stop the script.
  28. */
  29. public boolean active() {
  30. return true;
  31. }
  32.  
  33. /**
  34. * Register event listener and communicate with the user to st up the script here.
  35. *
  36. * @return if the script shall start or not.
  37. */
  38. @Override
  39.  
  40. /**
  41. * Scripts loop.
  42. *
  43. * @return time to next loop.
  44. */
  45. public int loop() {}
  46.  
  47.  
  48. /**
  49. * Get the scripts name
  50. *
  51. * @return
  52. */
  53.  
  54.  
  55. public String getName() {
  56. return "TutIslandSolver";
  57. }
  58.  
  59. /**
  60. * Gets the script author
  61. *
  62. * @return
  63. */
  64. public String getAuthor() {
  65. return "ILikedRSBot";
  66. }
  67.  
  68. /**
  69. * Gets the scripts description.
  70. *
  71. * @return
  72. */
  73. public String getDescription() {
  74. return "Solves Tutorial Island\n" +
  75. "Start in Tutorial Island having done nothing.";
  76. }
  77.  
  78. /**
  79. * Search tags.
  80. *
  81. * @return
  82. */
  83. @Override
  84. public String[] getTags() {}
  85.  
  86.  
  87.  
  88. /**
  89. * Gets called on each repaint.
  90. * This at default 50 times a second so try not to do anything resource intensive.
  91. *
  92. * @param g instance of the graphics object to paint on
  93. */
Add Comment
Please, Sign In to add comment