Mysidia Adoptables Support Forum  

Home Community Mys-Script Creative Off-Topic
Go Back   Mysidia Adoptables Support Forum > Mysidia Adoptables > Questions and Supports

Notices

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #2  
Old 01-10-2016, 02:20 PM
Kyttias's Avatar
Kyttias Kyttias is offline
Premium Member
 
Join Date: Jan 2014
Posts: 857
Gender: Unknown/Other
Credits: 133,785
Kyttias is on a distinguished road
Default

You want a species of pet that you can never ever get again, even if you trade it away. I think what you should do is add a flag to the character's account when that particular species is adopted and then check for that flag on the page that offers the pet.

Let's just say the species name is "Kitsu".

In adopt.php, after the adoptable is inserted into the database (shouldn't be hard to find), let's go ahead and check what type it is.

PHP Code:
if ($adopt->getType() == "Kitsu"){
    
$mysidia->db->update("users", array("Kitsu" => "1"), "username='{$mysidia->user->username}'");

This'll update a column called "Kitsu" in the adopts_users table from 0 to 1 for this user. (Of course you should go create such a thing in your database. Let me know if you need help!)

Now, in adoptsview.php, you'll want to find where the table of available adopts is being built. It should look something like this:
PHP Code:
$adopts $this->getField("adopts");
for(
$i 0$i $adopts->length(); $i++){
    
$row = new TRow;
    
$idCell = new TCell(new RadioButton("""id"$adopts[$i]->getID()));                
    
$imageCell = new TCell(new Image($adopts[$i]->getEggImage(), $adopts[$i]->getType()));
    
$imageCell->setAlign(new Align("center"));
        
    
$type = new Comment($adopts[$i]->getType());
    
$type->setBold();
    
$description = new Comment($adopts[$i]->getDescription(), FALSE);
    
$typeCell = new TCell;
    
$typeCell->add($type);
    
$typeCell->add($description);            

    
$row->add($idCell);
    
$row->add($imageCell);
    
$row->add($typeCell);
    
$adoptTable->add($row);

First we'll run a check to see if a user has ever adopted a "Kitsu". Then, once inside the for loop we're going to force it to skip over any adopt whose type matches the one we're looking for, IF the user already has one of that type. Here's the above with the changes:

PHP Code:
$check $mysidia->db->select("users", array("Kitsu"), "username='{$mysidia->user->username}'")->fetchColumn();
$adopts $this->getField("adopts");
for(
$i 0$i $adopts->length(); $i++){
    if ((
$check 0) && ($adopts[$i]->getType() != "Kitsu")){
        
$row = new TRow;
        
$idCell = new TCell(new RadioButton("""id"$adopts[$i]->getID()));                
        
$imageCell = new TCell(new Image($adopts[$i]->getEggImage(), $adopts[$i]->getType()));
        
$imageCell->setAlign(new Align("center"));
            
        
$type = new Comment($adopts[$i]->getType());
        
$type->setBold();
        
$description = new Comment($adopts[$i]->getDescription(), FALSE);
        
$typeCell = new TCell;
        
$typeCell->add($type);
        
$typeCell->add($description);            

        
$row->add($idCell);
        
$row->add($imageCell);
        
$row->add($typeCell);
        
$adoptTable->add($row);
    }

Disclaimer: I haven't tested this in slightest. You'll need to make changes if this is going to apply to more than one kind of pet (that's a lot of checking to do) or a pet sold in the shops instead of freely available (that's a whole other monster).
__________________
Please do not contact me directly outside of Mysidia.
I also cannot troubleshoot code more than two years old - I legit don't remember it.

Last edited by Kyttias; 01-10-2016 at 02:23 PM.
Reply With Quote
 


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -5. The time now is 09:41 AM.

Currently Active Users: 3920 (0 members and 3920 guests)
Threads: 4,081, Posts: 32,032, Members: 2,016
Welcome to our newest members, jolob.
BETA





What's New?

What's Hot?

What's Popular?


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
vBCommerce I v2.0.0 Gold ©2010, PixelFX Studios
vBCredits I v2.0.0 Gold ©2010, PixelFX Studios
Emoticons by darkmoon3636