Mysidia Adoptables Support Forum

Mysidia Adoptables Support Forum (http://www.mysidiaadoptables.com/forum/index.php)
-   Questions and Supports (http://www.mysidiaadoptables.com/forum/forumdisplay.php?f=18)
-   -   Having an adoptable available only once? (http://www.mysidiaadoptables.com/forum/showthread.php?t=4977)

tahbikat 01-10-2016 10:47 AM

Having an adoptable available only once?
 
Basically I want users to be able to adopt a certain critter when they join the site only once and never again. I actually do know this is enabled already with the adoptable conditions section "You want user to have no more than THIS many types of this adopt".

However, if they trade it away, say, to a friend or something, they can adopt another and then just get their old one back, which is what I don't want to happen. :c I'm sure some users will eventually figure this out and the value of this adopt will go down (not to mention it will be highly frowned upon by me).

Anyone have solutions? I could live with I guess if I have to. :desudesudesu:

I guess in the meantime I'll make them a non tradeable species even though I wanted them to be able to get traded. :L

Kyttias 01-10-2016 02:20 PM

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. :ooo: 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).

tahbikat 01-10-2016 02:41 PM

Funny, I actually thought about calling them Kitsu at first. cx

Thank you so much! I'll get this added soon and let you know how it works. And yea, I think I would only need it for the one species, however, I plan on implementing a quest system using the Explore mod with modifications. This bit of code will probably be useful for that too. No doubt I'll probably post here needing help with it though. x.x

tahbikat 01-11-2016 01:49 AM

Hmm, I added the code but when I went to the adopt page, there's just a black line there and no eggs. :I

Kyttias 01-11-2016 04:12 AM

Hmmnngh... all the eggs are leaving and not just the one of a specific type? I'll need HoF to actually look at it and think it through. >< I'm probably close.

tahbikat 01-11-2016 05:33 PM

Aww it's okay, thank you anyway Kyttias! <3 I don't mind having them non-tradeable for now!


All times are GMT -5. The time now is 08:31 PM.

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