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

    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
     
  2. Offline

    Plague

    and one more...
     
  3. Offline

    Wiilt

    lol in that respect-y way?
     
  4. Offline

    CRAZYxMUNK3Y

  5. Offline

    Unscrewed

    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. }
     
    Dreeass likes this.
  6. Offline

    careyness

    hi,i am new here .nice to see you .[​IMG]
     
  7. Offline

    Plague

    No, as in "the same problem as your other 5 submissions have"
     
  8. Offline

    Unscrewed

    It's all the same, if you get what I mean. ;)
     

Share This Page