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)
-   -   Mys v1.3.2 Gender Ratio Mod for Mys v1.3.2 (http://www.mysidiaadoptables.com/forum/showthread.php?t=3879)

Hall of Famer 11-22-2012 10:32 PM

Gender Ratio Mod for Mys v1.3.2
 
1 Attachment(s)
Well my old gender ratio script is not compatible with the new script, so I decide to make a new one. It really isnt complicated, just a few minor edits and its up and running.

I've provided a zip file that contains all necessary modifications to make in your script file in order to get this to work. Incase you have a highly customized site, you may install this Mod manually by following the instruction below. To begin with, insert a new column into table prefix.adoptables as usual:

PHP Code:

'genderratio'INT11 ), default 50 

Since admin.php file does not exist nowadays, you need to go to the file /admincp/adopt.php to modify the form. To add the input field Genderratio into adoptables creation form, find the following code below:

PHP Code:

                                                      </fieldset>    
                                   <
p><input name='page' type='hidden' id='page' value='adopt'>
                                   <
input name='action' type='hidden' id='action' value='add'>
                                   <
input type='submit' name='submit' value='Create This Adoptable'></p></form>"; 

Add above

PHP Code:

      <p>The Gender Ratio of your adoptable is 
             
<input name='genderratio' type='text' id='genderratio' size='6' maxlength='6'> </p

Continue in this script file, find these lines below:

PHP Code:

            $mysidia->db->insert("adoptables", array("id" => NULL"type" => $mysidia->input->post("type"), "class" => $mysidia->input->post("class"), "description" => $mysidia->input->post("description"), "eggimage" => $eggimage"whenisavail" => $mysidia->input->post("cba"),
                                                     
"alternates" => $mysidia->input->post("alternates"), "altoutlevel" => $mysidia->input->post("altoutlevel"), "altchance" => $mysidia->input->post("altchance"), "shop" => $mysidia->input->post("shop"), "cost" => $mysidia->input->post("cost"))); 

Replace with:

PHP Code:

            $mysidia->db->insert("adoptables", array("id" => NULL"type" => $mysidia->input->post("type"), "class" => $mysidia->input->post("class"), "description" => $mysidia->input->post("description"), "eggimage" => $eggimage"whenisavail" => $mysidia->input->post("cba"),
                                                     
"alternates" => $mysidia->input->post("alternates"), "altoutlevel" => $mysidia->input->post("altoutlevel"), "altchance" => $mysidia->input->post("altchance"), "shop" => $mysidia->input->post("shop"), "cost" => $mysidia->input->post("cost"), "genderratio => $mysidia->input->post("genderratio")")); 

The next thing to do, of course, is to manually update our beloved doadopt.php file to enable gender ratio to work while a user is trying to adopt a pet. Find these lines that determine adoptables gender:

PHP Code:

         $genders = array('f''m');
         
$rand rand(0,1);
         
$mysidia->user->changecash(-$row->cost);
         
$mysidia->page->settitle("{$name} adopted successfully");
         
$mysidia->db->insert("owned_adoptables", array("aid" => NULL"type" => $row->type"name" => $name"owner" => $mysidia->user->username"currentlevel" => 0"totalclicks" => 0"code" => $code
                                                        
"imageurl" => NULL"usealternates" => $alts"tradestatus" => 'fortrade'"isfrozen" => 'no'"gender" => $genders[$rand], "lastbred" => 0)); 

Replace by the gender ratio generation code:
PHP Code:

     $tempgender rand(099);
      if(
$tempgender $row->genderratio){
         
$gender "f";
         unset(
$tempgender);
      }
      else {
         
$gender "m";
         unset(
$tempgender);
      }  
         
$mysidia->user->changecash(-$row->cost);
         
$mysidia->page->settitle("{$name} adopted successfully");
         
$mysidia->db->insert("owned_adoptables", array("aid" => NULL"type" => $row->type"name" => $name"owner" => $mysidia->user->username"currentlevel" => 0"totalclicks" => 0"code" => $code
                                                        
"imageurl" => NULL"usealternates" => $alts"tradestatus" => 'fortrade'"isfrozen" => 'no'"gender" => $gender"lastbred" => 0)); 

If you want the gender ratio script to work with breeding, you will have to do one last task. The below edit is not required, but for those who want pets gender ratio to take effect on breeding. To do this, you need to go to breeding.php and find the following lines:

PHP Code:

       $genders = array('f''m');
       
$genderrand rand(0,1);    

       
// Get other related information       
       
$code codegen(100);
       
$alts getaltstatus($female_species->id00);
       
$time time();
       
       
// Insert a baby adoptable to the database
       
$mysidia->db->insert("owned_adoptables", array("aid" => NULL"type" => $types[$typerand], "name" => $types[$typerand], "owner" => $mysidia->user->username"currentlevel" => 0"totalclicks" => 0"code" => $code
                                                      
"imageurl" => NULL"usealternates" => $alts"tradestatus" => 'fortrade'"isfrozen" => 'no'"gender" => $genders[$genderrand], "lastbred" => 0)); 

Replace with:

PHP Code:

    $genderratio = ($typerand == 0)?$female_species->genderratio:$male_species->genderratio;
    
$tempgender rand(099);
    if(
$tempgender $genderratio){
        
$gender "f";
        unset(
$tempgender);
    }
    else {
       
$gender "m";
       unset(
$tempgender);
    }    

       
// Get other related information       
       
$code codegen(100);
       
$alts getaltstatus($female_species->id00);
       
$time time();
       
       
// Insert a baby adoptable to the database
        
$mysidia->db->insert("owned_adoptables", array("aid" =>  NULL"type" => $types[$typerand], "name" => $types[$typerand],  "owner" => $mysidia->user->username"currentlevel" => 0,  "totalclicks" => 0"code" => $code
                                                       
"imageurl" => NULL,  "usealternates" => $alts"tradestatus" => 'fortrade'"isfrozen"  => 'no'"gender" => $gender"lastbred" => 0)); 

Now we are all done, it is just this simple isnt it? Like I mentioned earlier I've uploaded a zip file containing all modified scripts for those who are running a fresh installation of Mysidia Adoptables. Note you can only use them if you have not heavily modified your script files. The install_genderratio.php file needs to be executed to insert the column genderratio(INT 11) automatically to your database, although you can again do it manually. Enjoy!

Abronsyth 12-29-2012 02:18 PM

Hey, HoF, I installed this (all went well), but I was just wondering how I actually set the ratio..? I know I set it when creating a new adoptable, but what is the format..? I mean, how do I type in the ratio..? I'm wanting it to be 1 male for every 4 females...so, how do I put this in..?

Thanks!

Hall of Famer 12-29-2012 02:53 PM

To set the ratio, enter a number between 0 to 100. 0 means 100% male, 100 means 100% female, the default value is 50.

Abronsyth 12-29-2012 04:19 PM

Er, okay...so 75 would make it 25% male..? (Or rather, 75% female..?)

Hall of Famer 12-29-2012 04:27 PM

Correct, you get the idea.

Abronsyth 01-08-2013 11:34 AM

Okay...so I'd like to use both this mod and your Item Drop mod...however I noticed that both edit the adopt.php file, so do you know how I'd go about making it so I can use both on my site?

Hall of Famer 01-08-2013 02:02 PM

Well they do not really bar each other. You need to create one new column for gender ratio and two columns for itemdrop. In adopt.php, the sql insert line will become something like this(assuming you add gender ratio column first):

PHP Code:

 $mysidia->db->insert("adoptables", array("id" => NULL"type" => $mysidia->input->post("type"), "class" => $mysidia->input->post("class"), "description" => $mysidia->input->post("description"), "eggimage" => $eggimage"whenisavail" => $mysidia->input->post("cba"),
                                                     
"alternates" => $mysidia->input->post("alternates"), "altoutlevel" => $mysidia->input->post("altoutlevel"), "altchance" => $mysidia->input->post("altchance"), "shop" => $mysidia->input->post("shop"), "cost" => $mysidia->input->post("cost"), 
                                                     
"genderratio" => $mysidia->input->post("genderratio"), "dropitem" => $mysidia->input->post("dropitem"), "droprate" => $mysidia->input->post("droprate"))); 

Of course you still need to modify the adoptable creation form, this should be easy.


All times are GMT -5. The time now is 06:23 AM.

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