View Single Post
  #3  
Old 11-20-2016, 08:35 AM
Abronsyth's Avatar
Abronsyth Abronsyth is offline
A Headache Embodied
 
Join Date: Aug 2011
Location: NY
Posts: 1,011
Gender: Male
Credits: 151,701
Abronsyth is on a distinguished road
Default

For some reason it seems to just keep resetting it to 0.

Here is the function currently:
PHP Code:
function items_health($item$adopt){
  
$mysidia Registry::get("mysidia");
  
$addHealth $adopt->health $item->value;
      
//Check if the adoptable's health is already at maximum.    
  
if($adopt->health 100){
    
$note "Your gryphon is already fully healed! The {$item->itemname} was not used.";
  }
  
//Not a maximum, but don't go overboard!
  
elseif($addHealth 100){
    
$mysidia->db->update("owned_adoptables", array("health" => 100), "aid ='{$adopt->aid}' and owner='{$item->owner}'");
    
$note "The {$item->itemname} fully healed your gryphon!";
    
$delitem $item->remove();
  }
  
//Not at maximum, won't go overboard. Proceed.
  
else{
    
$mysidia->db->update("owned_adoptables", array("health" => $addhealth), "aid ='{$adopt->aid}' and owner='{$item->owner}'");
    
$note "The {$item->itemname} raised your gryphon's health by {$item->value}! Their health is now at {$addHealth}.";
    
$delitem $item->remove();
  }
  return 
$note;

The health is at 0, and when I use the potion it now tells me that my pet is already fully healed, and it doesn't use the item up, but the health is still 0.
__________________
My Mods Site (1.3.4, 2020 Mods)

Last edited by Abronsyth; 11-20-2016 at 08:41 AM.
Reply With Quote