getHealth for a Show Health Plugin

Discussion in 'Plugin Development' started by jebbo, Oct 30, 2013.

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

    jebbo

    Hey, how do i get the Health for a Show Health plugin.

    int / double h = p.getHealth();

    both doesn't work.. :/
     
  2. Offline

    Mmarz11

    Could you post the method that you are trying to get the health in?
     
  3. Offline

    FireBreath14

    Code:
    Damageable dm = <your object here>
    Double d = dm.getHealth();
    //rest of code here
    Thats my method anyway. For some reason, Damageable can become any LivingEntity to control its health.
     
Thread Status:
Not open for further replies.

Share This Page