Inactive [ADMN] HealthControl v1.1.7- Control da health [1.2.5-R1.0]

Discussion in 'Inactive/Unsupported Plugins' started by JamieSinn, Apr 16, 2012.

     
  1. Offline

    JamieSinn

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    MOVED TO BUKKIT DEV
    HealthControl - The HealthControlling Plugin:

    Version: v1.1.7

    HealthControl was built for survival servers that wanted to change a players health

    based on needed instances.

    Features:

    Heals Players and yourself
    See Players Health
    Set Default Health

    Commands:

    /heal
    /heal <playername>
    /seehealth <playername>
    Changelog:
    Version 1.1.7
    Added food healing and better /seehealth display
    Version 1.1.6
    Added config and ability to set default health
    thanks to http://dev.bukkit.org/profiles/Masonnasty/ for the idea
    Version 1.0
    Added the ability for the player to heal others
    Version 0.7
    Bug Fixes for internal error
    Version 0.6
    Added the ability for the player to heal self
    Version 0.5
    Fixed Major Bug

    This post has been edited 3 times. It was last edited by Plague Apr 28, 2012.
  2.  
  3. Offline

    Plague

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    and one more...
  4. Offline

    Wiilt

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    lol in that respect-y way?
  5. Offline

    CRAZYxMUNK3Y

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
  6. Offline

    Unscrewed

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    No, as in... again a heal plugin.

    Code:java
    1. if(sender instanceof Player){
    2. Player player = (Player) sender;
    3. if(cmd.getName().equalsIgnoreCase("heal") && player.hasPermission("Heal.heal")){
    4. player.sendMessage(ChatColor.GREEN + "[Heal] " + ChatColor.RED + "You have been healed.");
    5. player.setHealth(20);
    6. return true;
    7. }else{
    8. player.sendMessage(ChatColor.GREEN + "[Heal] " + ChatColor.RED + "You do not have permission to heal yourself.");
    9. return true;
    10. }
    11. }
    12. return false;
    13. }

    This post has been edited 3 times. It was last edited by Unscrewed Apr 17, 2012.
    Dreeass likes this.
  7. Offline

    careyness

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    hi,i am new here .nice to see you .[IMG]
  8. Offline

    Plague

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    No, as in "the same problem as your other 5 submissions have"
  9. Offline

    Unscrewed

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    It's all the same, if you get what I mean. ;)

Share This Page