Mysidia Adoptables Support Forum

Mysidia Adoptables Support Forum (http://www.mysidiaadoptables.com/forum/index.php)
-   Mys v1.3.x Mods (http://www.mysidiaadoptables.com/forum/forumdisplay.php?f=42)
-   -   Stat Inheritance Mod * thanks to Wallie! * (http://www.mysidiaadoptables.com/forum/showthread.php?t=4565)

Missy Master 06-30-2014 02:23 PM

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!


All times are GMT -5. The time now is 03:34 PM.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.