Guest User

Untitled

a guest
Dec 11th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1.  
  2. package whatever;
  3.  
  4. import org.bukkit.Bukkit;
  5. import org.bukkit.entity.Player;
  6.  
  7. /**
  8. *
  9. * @author Jackcrawf3
  10. */
  11. public class YourRepeatingTask implements Runnable {
  12.  
  13. private Player player;
  14. YourMainClass plugin;
  15.  
  16. public YourRepeatingTask(Player thisplayer,YourMainClass plugin){
  17. this.plugin = plugin;
  18. player = thisplayer;
  19. }
  20.  
  21. public void run() {
  22. // This runs every so many ticks.
  23. return;
  24.  
  25. }
  26. }
Add Comment
Please, Sign In to add comment