View Single Post
  #1  
Old 06-30-2014, 02:23 PM
Missy Master's Avatar
Missy Master Missy Master is offline
Pet-Sim.Online
 
Join Date: Jan 2010
Posts: 475
Gender: Unknown/Other
Credits: 45,594
Missy Master is an unknown quantity at this point
Default Stat Inheritance Mod * thanks to Wallie! *

Backup files AND database before you apply this Mod. Leave all files open so you can simply 'undo' if you need to!

This Mod will take the stats from Wallie's Mod, and give your bred young a total of both. It can be easily tweaked to give half of their total, etc.



class_breeding.php:

Add this just above the insert statement.


Code:
       $mother_stat=  $this->female->getAdoptstatname();
                             $father_stat=  $this->male->getAdoptstatname();
      
                             $newstatname = $mother_stat + $father_stat;

Change the insert statement

"statname" => $statname

To

"statname" => $newstatname



In breeding.php:

Change -
Code:
                $mysidia->db->update("owned_adoptables",array("statname" => 'statname'),"aid = $offspringID");  
                foreach($offsprings as $offspring){
                    $image = $offspring->getEggImage("gui");
                    $links->add(new Link("myadopts/manage/{$offspringID}", $image));
                    $offspringID++;
To:

Code:
                $mysidia->db->update("owned_adoptables",array("statname" => ''),"aid = $offspringID");  
                foreach($offsprings as $offspring){
                    $image = $offspring->getEggImage("gui");
                    $links->add(new Link("myadopts/manage/{$offspringID}", $image));
                    $offspringID++;

As always back up files and databases before you try ANY new code!

Last edited by Missy Master; 06-30-2014 at 02:26 PM.
Reply With Quote