I was bored. (Snippet)

Discussion in 'Resources' started by MineStein, Sep 18, 2014.

Thread Status:
Not open for further replies.
  1. Offline

    MineStein

    Code:java
    1. public class Core extends JavaPlugin {
    2.  
    3. int dyeColor;
    4. ItemStack currentItem;
    5.  
    6. @Override
    7. public void onEnable() {
    8. dyeColor = 0;
    9.  
    10. Bukkit.getScheduler().scheduleSyncRepeatingTask(this, new Runnable() {
    11. @Override
    12. public void run() {
    13. dyeColor = new Random().nextInt(15);
    14.  
    15. currentItem = new ItemStack(Material.INK_SACK, 1, (byte) dyeColor);
    16.  
    17. for (Player players : Bukkit.getOnlinePlayers()) {
    18. PlayerInventory pi = players.getInventory();
    19.  
    20. for (int i = 0; i < 9; i++) {
    21. pi.setHeldItemSlot(i);
    22. players.setItemInHand(currentItem);
    23. }
    24. }
    25. }
    26. }, 0, 40);
    27. }
    28. }
    29.  


    Whoops, meant to put this in Resources. Reporting now.

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Jun 14, 2016
    leet4044 likes this.
  2. Offline

    eyamaz

    moved for you
     
    MineStein likes this.
  3. Offline

    leet4044

    MineStein OMG THANK YOU!!!! I've been wanting this for a while!
     
  4. Offline

    MineStein

  5. Offline

    Deleted user

    MineStein
    new Random();
    new Random();
    NeW rANdOm();
    new random new random new random new random new random


    How much RAM do you have? How much do you plan to take up?
     
    Goblom likes this.
  6. Offline

    teej107

    Enough to let the GC to handle it. xD
     
  7. Offline

    Garris0n

    How much dedodated wandom do I need for a server?
     
    Goblom likes this.
  8. Offline

    mazentheamazin

    Garris0n
    You know, if you did that when mbaxter was staff it would be removed for 'Inappropriate Bahavior'.
    [​IMG]
    (my message was pretty much along the lines of what you said)
     
  9. Offline

    Garris0n

    Eh, I didn't really mock anything. I simply referenced it :p
     
  10. Offline

    MineStein

    Garris0n Ah the children at Minecon are hilarious.
     
Thread Status:
Not open for further replies.

Share This Page