PDA

View Full Version : Stat Inheritance Mod * thanks to Wallie! *


Missy Master
06-30-2014, 02:23 PM
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.


$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 -

$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:


$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!