Regeneration Orb

Discussion in 'Archived: Plugin Requests' started by njcelso, Mar 19, 2013.

  1. Offline

    njcelso

    Hi, I need to make an item that when you right click it will give you regen for a certain amount of time. I know there is a plugin out there that can do this but I cant find it.
     
  2. Offline

    Stevensaurus

    I would love to see this done using Ender Crystals (the things that regen the EnderDragon's health).

    Imagine how neat it would be to have one of those at spawn, and when you right click it you're given a potion effect.
     
  3. Offline

    Wolf7115

    That wouldn't be too difficult to make. Unfortunately I'm not on my development computer right now. I might take this up later.
     
  4. Offline

    njcelso

    Ok, thanks Wolf.
     
  5. Offline

    Zarius

    OtherDrops can do this, eg.

    PHP:
      ANY:
        - 
    toolSLIMEBALL
          action
    RIGHTCLICK
          potioneffect
    REGENERATION@100@2  # regen level 2 for 5 seconds (100ticks)
     
    # or for endercrystals:
        
    ENTITY_ENDER_CRYSTAL:
        - 
    toolANY
          action
    RIGHTCLICK
          potioneffect
    SPEED@300@3  # speed level 3 for 15 seconds (300ticks)
        
    actionLEFTCLICK
          drop
    NOTHING
        
    actionLEFTCLICK
          tool
    APPLE
          replacementblock
    AIR
    Note: the endercrystal bit only works in the latest dev build (2.8b.308) as I've just enabled it.
     

Share This Page