View Single Post
  #1  
Old 11-19-2016, 12:31 PM
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 New Item Function Issues

Here is the function:
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 pet is already fully healed! The {$item->itemname} was not used.";
  }
  
//Not a maximum, but don't go overboard!
  
if($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 pet's health by {$item->value}! Their health is now at {$addHealth}.";
    
$delitem $item->remove();
  }
  return 
$note;

What it should do:
A) If pet's health is already 100, it does nothing (and does not use the item).
B) If the pet's health is not 100, but the item value would put health OVER 100 then it instead only adds the amount needed to make 100.
C) If the pet's health is not 100, and the item value would not go over 100, then it just normally adds the item value to increase the health.

What it's doing:
My pet's health is at 100. I test it. It tells me that it worked, added 2, and my pet's health is now 100. Then it actually turns my pet's health to 0.

Now that my pet's health is at 0, I try again, it tells me that it added 2 and the health is now 2. Pet health still at 0.

Please help? ;_;
__________________
My Mods Site (1.3.4, 2020 Mods)

Last edited by Abronsyth; 11-19-2016 at 12:48 PM.
Reply With Quote