Mysidia Adoptables Support Forum  

Home Community Mys-Script Creative Off-Topic
Go Back   Mysidia Adoptables Support Forum > Mysidia Adoptables > Addons and Modifications > Mys v1.1.x Mods

Notices

Reply
 
Thread Tools Display Modes
  #1  
Old 10-14-2010, 08:36 PM
Kaeliah's Avatar
Kaeliah Kaeliah is offline
Premium Member
 
Join Date: Sep 2010
Location: Pennsylvania, United States
Posts: 485
Gender: Female
Credits: 31,894
Kaeliah will become famous soon enough
Send a message via AIM to Kaeliah Send a message via MSN to Kaeliah
Default Adoptable Pet Status Mod by Kaeliah

[size=x-large]Adoptable Pet Status Mod[/size]
Mod by Kaeliah


Description
Adds another dimension into the Adoptables Script by letting adoptables get sick! You can choose the chance each adoptable type has of getting sick every time it's clicked. If an adoptable gets sick, it can be cured by its owner by clicking on it. Of course you can edit this if you have an item/cash mod or anything along those lines. You can also feel free to add other status issues other than just Happy and Sick and this mod would be a perfect start for those popular Pokemon games. There is a lot you can do with this mod! My only request is you share what you've done with the mod!!

[size=large]Possible Future Features:[/size]
  • Edit chance of getting sick from Admin panel


[size=large]Directions For Installation[/size]


[size=large]-MySQL Databases[/size]

In table 'adoptables' add another field:

Code:
Field        | Type    | Null | Default |
========================================|
sickchance   | int(11) | Yes  | NULL    |
========================================|
In table 'owned_adoptables add another field:

Code:
Field        | Type        | Collation       | Null | Default |
==============================================================|
status       | varchar(20) | utf8_general_ci | No   | Happy   |
==============================================================|


[size=large]-Code Editing[/size]


In levelup.php

Find:
Code:
$aid=@mysql_result($result,$i,"aid");
$type=@mysql_result($result,$i,"type"); 
$name=@mysql_result($result,$i,"name");
$totalclicks=@mysql_result($result,$i,"totalclicks");
$currentlevel=@mysql_result($result,$i,"currentlevel"); 
$usealternates=@mysql_result($result,$i,"usealternates");
$usealternates2=@mysql_result($result,$i,"usealternates2");
$isfrozen=@mysql_result($result,$i,"isfrozen");
$owner=@mysql_result($result,$i,"owner");
Add After:
Code:
$petstatus=@mysql_result($result,$i,"status");

Find:
Code:
    if($isfrozen == "yes"){

    $article_title = $lang_isfrozen_title;
    $article_content = $lang_isfrozen_explain;

    }
Add After:
Code:
    else if($petstatus != "Happy" and $loggedinname != $owner){
    
    $article_title = "Cannot Level Up";
    $article_content = "This pet is not happy, only happy pets can be leveled up!";
    
    }
Find:
Code:
    // Now we need to update our vote_voters table with the user's vote...

    mysql_query("INSERT INTO ".$prefix."vote_voters VALUES ('$date', '$loggedinname', '$ip','$id')");
Add After:
Code:
// By leveling up this adoptable, there's a chance that it will get sick!
	
	if($loggedinname == $owner and $petstatus != "Happy") {
	$petstatus = "Happy";
			$query2 = "UPDATE ".$prefix."owned_adoptables SET status='".$petstatus."' WHERE aid='".$id."'";
	mysql_query($query2);
	}
	
	$query2 = "SELECT * FROM ".$prefix."adoptables WHERE type='$type'";
	$result2 = mysql_query($query2);
	$num2 = mysql_numrows($result2);

	//Loop out code
	$i=0;
	while ($i < 1) {

	$sickchance=@mysql_result($result2,$i,"sickchance");

	$i++;
	}
	
	if($sickchance != 0) {
	$randnum = rand(1, $sickchance);
	
	if($randnum == 1){
	
	$petstatus = "Sick";
		$query2 = "UPDATE ".$prefix."owned_adoptables SET status='".$petstatus."' WHERE aid='".$id."'";
	mysql_query($query2);
	
	}
	}

In admin.php

Find:
Code:
  <p>
    <input type='submit' name='Submit' value='Create This Adoptable'> 
  </p>
  <p>&nbsp; </p>
</form>";
    

    } //End the create a new adoptable form
Add BEFORE:
Code:
  <hr>
  
  <p><strong>Status Settings</strong></p>
  <p>
    <input name='sickchance' type='text' id='sickchance' size='6' maxlength='6'><br>
	
	This type of pet has a 1 in _____ chance of getting sick everytime it is clicked.<br>
	This number should probably be higher as only the owner of the pet will be able to cure it.<br>
	Leave blank or input 0 to have no chance of getting sick.<br>
	
  </p>

In nadopt.php

Find:
Code:
$altchance = $_POST["altchance"];
$altchance = secure($altchance);
Add After:
Code:
$sickchance = $_POST["sickchance"];
$sickchance = secure($sickchance);
Find:
Code:
mysql_query("INSERT INTO ".$prefix."adoptables VALUES ('', '$name', '$description','$eggimage','$cba','$promocode', '$freqcond', '$number','$datecond','$date','$adoptscond','$maxnumcond','$morethannum','$usergroupcond','$usergroups','$alternates','$altoutlevel','$altchance')");
Replace with:
Code:
if($sickchance == ""){
$sickchance = 0; }

mysql_query("INSERT INTO ".$prefix."adoptables VALUES ('', '$name', '$description','$eggimage','$cba','$promocode', '$freqcond', '$number','$datecond','$date','$adoptscond','$maxnumcond','$morethannum','$usergroupcond','$usergroups','$alternates','$altoutlevel','$altchance','$sickchance')");

In doadopt.php
(Thank you HOF for pointing this out. ^.^)

FIND
Code:
mysql_query("INSERT INTO ".$prefix."owned_adoptables VALUES ('', '$type', '$name','$loggedinname','0','0', '$code', '','$alts','notfortrade','no')");
Replace With:

Code:
mysql_query("INSERT INTO ".$prefix."owned_adoptables VALUES ('', '$type', '$name','$loggedinname','0','0', '$code', '','$alts','notfortrade','no','Happy')");


Optional
It's probably a good idea to show the status of the pet somewhere. This will add the pet's status to the main manage panel. (Click on my adoptables then click on the adoptable and you'll be able to see the status)

In myadopts.php

Find:
Code:
$aid=@mysql_result($result,$i,"aid"); //The adoptable's ID
$currentlevel=@mysql_result($result,$i,"currentlevel");
$type=@mysql_result($result,$i,"type");
$name=@mysql_result($result,$i,"name");
Add after:
Code:
$petstatus=@mysql_result($result,$i,"status");
Find:
Code:
<b><a href='levelup.php?id=".$id."'><img src='templates/icons/add.gif' border=0> Level Up ".$name."</a><br>
Add BEFORE:
Code:
<b><u>Status:</b></u> ".$petstatus."<br>

That's everything for now.
__________________
[My Shop] ♥ [My Blog] ♥ [Subscribe] ♥ [My Mods] ♥ [Mod TOS]
Reply With Quote
  #2  
Old 10-14-2010, 10:49 PM
Hall of Famer's Avatar
Hall of Famer Hall of Famer is offline
Administrator, Lead Coder
 
Join Date: Dec 2008
Location: South Brunswick
Posts: 4,448
Gender: Male
Credits: 327,883
Hall of Famer is on a distinguished road
Default RE: Adoptable Pet Status Mod by Kaeliah

This looks absolutely amazing Miss Kaeliah, should be perfect for a pokemon system which contains about 6-7 different status. Thank you so much for this, I will see what I can do with it. Sure items integrated with status system is a neat idea too. ^^

Oh btw, you never reply to IM? Sorry if this is a harsh question. XD
Reply With Quote
  #3  
Old 10-14-2010, 11:02 PM
Kaeliah's Avatar
Kaeliah Kaeliah is offline
Premium Member
 
Join Date: Sep 2010
Location: Pennsylvania, United States
Posts: 485
Gender: Female
Credits: 31,894
Kaeliah will become famous soon enough
Send a message via AIM to Kaeliah Send a message via MSN to Kaeliah
Default RE: Adoptable Pet Status Mod by Kaeliah

I reply! It says your never online though. =( Maybe it's just my meebo... I should prolly go download msn for real...

Yes I thought it would work well for a Pokemon system which is half of my incentive for sharing it. You don't even really have to change that much, as you only need one status slot. idk how you'd want the status things to happen(like how something would get frozen or paralyzed) but you could set the item to simply change it's status back to normal or whatever.

In all honesty this was originally just a way of keeping my system cleaner. I am annoyed by inactive users who simply adopted 10 then left. So it's supposed to be set up that if a user doesn't cure his pets, they will die after a month or two and my system will have more room for those who are actually active. XD It's quite sly. I just haven't gotten the last part, where they die after a certain number of days... >.> Although I plan to have a medicine you have to buy to cure your pets but until I've got that shop script running smoothly I set it like this. (That script is working great by the way! I've been able to do a lot with it so far, I just haven't integrated it to the site yet)
__________________
[My Shop] ♥ [My Blog] ♥ [Subscribe] ♥ [My Mods] ♥ [Mod TOS]
Reply With Quote
  #4  
Old 10-14-2010, 11:05 PM
redheadturkey redheadturkey is offline
Senior Member
 
Join Date: Jan 2010
Posts: 136
Gender: Female
Credits: 10,085
redheadturkey is on a distinguished road
Default RE: Adoptable Pet Status Mod by Kaeliah

ah, so much LOVE!!


I'll be installing this, and wowsers do I love the multiples mod so far :D :D :D
Reply With Quote
  #5  
Old 10-14-2010, 11:43 PM
Hall of Famer's Avatar
Hall of Famer Hall of Famer is offline
Administrator, Lead Coder
 
Join Date: Dec 2008
Location: South Brunswick
Posts: 4,448
Gender: Male
Credits: 327,883
Hall of Famer is on a distinguished road
Default RE: Adoptable Pet Status Mod by Kaeliah

Oh I am invisible, you can reply to my messages even if I do appear to be offline. But anyway, I will set my status to be online tomorrow and at weekends then. Its good to know that the shop and inventory system work well on your site, glad I can be of any help. ^^

And btw, is this script already integrated with your Multiple Alternative images system? I noticed this part of your codes, and seems that it is actually quite customizable if you have a different structure of ownedadoptable table:

mysql_query("INSERT INTO ".$prefix."adoptables VALUES ('', '$name', '$description','$eggimage','$cba','$promocode', '$freqcond','$number','$datecond','$date','$adopts cond','$maxnumcond','$morethannum','$usergroupcond ','$usergroups','$alternates','$altoutlevel','$alt chance','$sickchance')");
Reply With Quote
  #6  
Old 10-15-2010, 01:13 AM
Kaeliah's Avatar
Kaeliah Kaeliah is offline
Premium Member
 
Join Date: Sep 2010
Location: Pennsylvania, United States
Posts: 485
Gender: Female
Credits: 31,894
Kaeliah will become famous soon enough
Send a message via AIM to Kaeliah Send a message via MSN to Kaeliah
Default RE: Adoptable Pet Status Mod by Kaeliah

It is on my site... but otherwise no...

It is not already integrated. At least not on purpose. You would have to edit the tables to fit your own uses if you have other mods, but I'm just posting the script for the basics. So if you don't have other mods or you're not familiar with PHP you can just copy/paste.

@redheadturkey: I'm really glad you like it!! What's your site? We can affiliate once mine is released NEXT WEEK! Woot!
__________________
[My Shop] ♥ [My Blog] ♥ [Subscribe] ♥ [My Mods] ♥ [Mod TOS]
Reply With Quote
  #7  
Old 10-15-2010, 02:59 AM
Hall of Famer's Avatar
Hall of Famer Hall of Famer is offline
Administrator, Lead Coder
 
Join Date: Dec 2008
Location: South Brunswick
Posts: 4,448
Gender: Male
Credits: 327,883
Hall of Famer is on a distinguished road
Default RE: Adoptable Pet Status Mod by Kaeliah

Oh I see, dont worry this should be a piece of cake for me to figure out what to do with a highly customized adoptable site. ^^

Well I am indeed considering whether to add new types of items called healing items to the site, which consists of Potions and status healing items. There's actually a pokecenter on my site. It does nothing right now, but can be vital in future for healing purposes(Unlike in pokemon video games, pokecenter on my site will charge you about $500 Mysidian dollars for healing). It would be good if HP system is introduced somehow, since you can simply modify the script so that adoptables' HP drops gradually when they are sick or poisoned/injured, and they eventually become fainted if HP drops to 0 as they become 'frozen'. If an adoptable's not healed in time once its HP drops to 0, it will die. The issue here is that the adoptable's HP may or may not depend on its levels, so you will have to take this into consideration too.

And btw, can we affiliate too? We can exchange links of our site in not-so-distant future. ^^
Reply With Quote
  #8  
Old 10-15-2010, 08:47 AM
Kaeliah's Avatar
Kaeliah Kaeliah is offline
Premium Member
 
Join Date: Sep 2010
Location: Pennsylvania, United States
Posts: 485
Gender: Female
Credits: 31,894
Kaeliah will become famous soon enough
Send a message via AIM to Kaeliah Send a message via MSN to Kaeliah
Default RE: Adoptable Pet Status Mod by Kaeliah

Oh you could easily make HP depend on it's level. I'm assuming 1 level is 1 click. Simply use the required clicks and put a formula to it to create a new number for HP. For example if it's level is 99. A good HP might be 300 something? Maybe multiple the level by 3.5? So at level ten their HP is 35, or at least their max level is. Then(and this is where I'm a little fuzzy when it comes to codes) when a Pokemon get's poisoned. It can still do stuff or be interacted with, but each interaction and/or each day goes by drops it's currentHP level down a certain percentage of HP. Then it faints. Although when a Pokemon faints, it doesn't really die... maybe if it remains fainted for too long? But anyway yeah there is a lot that could be done with this mod.

Yes we can affiliate! Although my site has no Pokemon on it. >.> I'll give you a link once my site is released on October 21st!!
__________________
[My Shop] ♥ [My Blog] ♥ [Subscribe] ♥ [My Mods] ♥ [Mod TOS]
Reply With Quote
  #9  
Old 10-16-2010, 09:16 PM
redheadturkey redheadturkey is offline
Senior Member
 
Join Date: Jan 2010
Posts: 136
Gender: Female
Credits: 10,085
redheadturkey is on a distinguished road
Default RE: Adoptable Pet Status Mod by Kaeliah

Would really love to affiliate <3 :) :)

the new KK and Pantheras is almoooooooooost ready, I am just having a terrible time getting a shop to work ---- that's really the last thing we need, but it's not working well.

Everything else is a go, as far as I can tell, so will keep all posted on this--- if anyone knows of a good WORKING shop mod, please, please :D
Reply With Quote
  #10  
Old 10-17-2010, 04:43 AM
Hall of Famer's Avatar
Hall of Famer Hall of Famer is offline
Administrator, Lead Coder
 
Join Date: Dec 2008
Location: South Brunswick
Posts: 4,448
Gender: Male
Credits: 327,883
Hall of Famer is on a distinguished road
Default RE: Adoptable Pet Status Mod by Kaeliah

Again this one works just great. ^^ I've found a small error though, which can be resolved by editing this line in doadopt.php:

PHP Code:
mysql_query("INSERT INTO ".$prefix."owned_adoptables VALUES ('', '$type', '$name','$loggedinname','0','0', '$code', '','$alts','$alts2','$alts3','$alts4','fortrade','no','$gender','$thetime')"); 
To:

PHP Code:
mysql_query("INSERT INTO ".$prefix."owned_adoptables VALUES ('', '$type', '$name','$loggedinname','0','0', '$code', '','$alts','$alts2','$alts3','$alts4','Happy','fortrade','no','$gender','$thetime','','','')"); 
If your default pet status is not Happy, then change this one to whatever you have as default. Also please do not just copy/paste my code since my sql tables are heavily modified and may not look exactly the same as yours. For instance, I have 4 alternative images and a gender system, so you need to delete these from your mysql_query script if yours does not have such things.
Reply With Quote
Reply

Thread Tools
Display Modes

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

Similar Threads
Thread Thread Starter Forum Replies Last Post
Make pets' trade status Not For Trade by default tahbikat Questions and Supports 3 12-13-2015 10:21 PM
Mods by Kaeliah - NEW: Pet Status Mod! Kaeliah Mys v1.1.x Mods 27 11-17-2010 12:38 AM
Where's my premium status? Smilie Other Chat 1 03-24-2009 02:00 PM


All times are GMT -5. The time now is 08:47 AM.

Currently Active Users: 671 (0 members and 671 guests)
Threads: 4,080, Posts: 32,024, 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 - 2024, vBulletin Solutions Inc.
vBCommerce I v2.0.0 Gold ©2010, PixelFX Studios
vBCredits I v2.0.0 Gold ©2010, PixelFX Studios
Emoticons by darkmoon3636