Mysidia Adoptables Support Forum  

Home Community Mys-Script Creative Off-Topic
Go Back   Mysidia Adoptables Support Forum > Off Topic Discussions > Adoptables Sites Showcase

Notices

Reply
 
Thread Tools Display Modes
  #31  
Old 02-16-2011, 02:51 PM
PTGigi's Avatar
PTGigi PTGigi is offline
Crazily Friendly~HoF
 
Join Date: Jul 2009
Location: Somewhere >.>
Posts: 370
Gender: Female
Credits: 26,401
PTGigi
Default

(okay *shot* my triple evo system isn't working DX darn I can't spot the problem either D: )

Lol another fixing is going to happen again XD

Daw thanks Explore areas will vary. I'm also trying to add a 'Explore Pokemon' right now so you can travel with a buddy. This allows you to do extra things (like underwater areas will require a Pokemon with Swim, etc). This will add more fun to exploring X3 Town Outskirts would be released if I realized I can't FTP at school D: So have to do that bulk of testing at home...which I forgot to do yesterday D: So hopefully that'll work ^-^" But it's close to done, most of the work is just uploading adoptables ;)

Forums are coming nicely, I just need to eventually get over my fear of the MyBB code and figure out a nice linking system X3 Theme's up and it's pretty Mr Furry also wanted to be in the theme so he is
__________________


"I see now that the circumstances of one's birth are irrelevant; it is what you do with the gift of life that determines who you are."~Mewtwo
My Adoptables|Nuzlocke Webcomic
Reply With Quote
  #32  
Old 02-16-2011, 03:16 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: 338,505
Hall of Famer is on a distinguished road
Default

umm triple evolution system? Can you post your codes and the error messages here if possible? I am working on an even more enhanced PM system now(with sentbox, draftbox and user created folder, not sure if these will be added to Mys v1.2.0 though), and I will take a look at it for you once I am done with my project.
__________________


Mysidia Adoptables, a free and ever-improving script for aspiring adoptables/pets site.
Reply With Quote
  #33  
Old 02-17-2011, 02:39 PM
PTGigi's Avatar
PTGigi PTGigi is offline
Crazily Friendly~HoF
 
Join Date: Jul 2009
Location: Somewhere >.>
Posts: 370
Gender: Female
Credits: 26,401
PTGigi
Default

And I fail at typing X3 I meant "three evolutions" instead of triple evolution system X3 I added in a second alt first for Pokemon that can have two outcomes for evolutions and then added in a total of seven for the Eevee evolutions. But since I was only planning on 3 outcomes via level-up I didn't bother making a 7 level-up outcome system. :3 (since I've also begun to add "special" level up, for now just a certain mood (ie Pokemon like Togepi) and 'areas' for level-up (like the MD system for level-up was, or like the twin rocks for Eevee to go to Leafeon/Glaceon, stuff like that :3)

And here's what I got on my level-up page:
PHP Code:
// the script below examines if an adoptable can evolve or not and executes if the conditions are met
//We need to make it check for alts!
 
    
if($evolution == "yes" and $nextlevel >= $evolutionlevel){
        if (
$evolutionform2 != "" and $evolutionform3 == ""){
            
$randevo rand(1,2);
            if (
$randevo == 1){
               
$newtype $evolutionform;
            }
            else if (
$randevo == 2){
               
$newtype $evolutionform2;
            }
               
$query "UPDATE ".$prefix."owned_adoptables SET type='".$newtype."' WHERE aid='".$id."'";
               
mysql_query($query);
               if(
$type == $name){
                  
$query "UPDATE ".$prefix."owned_adoptables SET name='".$newtype."' WHERE aid='".$id."'";
                  
mysql_query($query);
               }
        }
        else if (
$evolutionform2 != "" and $evolutionform3 != ""){
            
$randevo rand(1,3);
            if (
$randevo == 1){
               
$newtype $evolutionform;
            }
            else if (
$randevo == 2){
               
$newtype $evolutionform2;
            }
            else if (
$randevo == 3){
               
$newtype $evolutionform3;
            }
               
$query "UPDATE ".$prefix."owned_adoptables SET type='".$newtype."' WHERE aid='".$id."'";
               
mysql_query($query);
               if(
$type == $name){
                  
$query "UPDATE ".$prefix."owned_adoptables SET name='".$newtype."' WHERE aid='".$id."'";
                  
mysql_query($query);
               }
        }
        else {
       
$newtype $evolutionform;

       
$query "UPDATE ".$prefix."owned_adoptables SET type='".$newtype."' WHERE aid='".$id."'";
       
mysql_query($query);
       if(
$type == $name){
         
$query "UPDATE ".$prefix."owned_adoptables SET name='".$newtype."' WHERE aid='".$id."'";
         
mysql_query($query);
       }
            
        }

       
//However, the evolution info is outdated, we will need to update it below:
       
$query "SELECT * FROM ".$prefix."adoptables WHERE type='$evolutionform'";
       
$result mysql_query($query);
       
$num mysql_numrows($result); 
       
       
//Loop out code
       
$i=0;
       while (
$i 1) {
 
       
$elemental=@mysql_result($result,$i,"Element");  
       
$evolutionnew=@mysql_result($result,$i,"evolution");  
       
$evolutionnewlevel=@mysql_result($result,$i,"evolutionlevel");
       
$evolutionnewform=@mysql_result($result,$i,"evolutionform");
       
$evolutionnewform2=@mysql_result($result,$i,"evolutionform2");
       
$evolutionnewform3=@mysql_result($result,$i,"evolutionform3");
       
       
$i++;
       }

       
//Now it's time to update the evolution info to the next possible evolution
       
$query "UPDATE ".$prefix."owned_adoptables SET Elemental='".$elemental."' WHERE aid='".$id."'"
       
mysql_query($query);
       
$query "UPDATE ".$prefix."owned_adoptables SET evolution='".$evolutionnew."' WHERE aid='".$id."'"
       
mysql_query($query);
       
$query "UPDATE ".$prefix."owned_adoptables SET evolutionlevel='".$evolutionnewlevel."' WHERE aid='".$id."'";      
       
mysql_query($query);
       
$query "UPDATE ".$prefix."owned_adoptables SET evolutionform='".$evolutionnewform."' WHERE aid='".$id."'";
       
mysql_query($query); 
       
$query "UPDATE ".$prefix."owned_adoptables SET evolutionform2='".$evolutionnewform2."' WHERE aid='".$id."'";
       
mysql_query($query); 
       
$query "UPDATE ".$prefix."owned_adoptables SET evolutionform2='".$evolutionnewform3."' WHERE aid='".$id."'";
       
mysql_query($query); 
     }  
     
    
// Now we check if we are enabling alternate images... 
It worked fine as two evolution paths so I don't know why this third would mess up D: And I know the tables aren't messed up because I checked that :S

EDIT: Derp see one problem that's no evolution related but the 'Elements'. Odd I never noticed that failing, it works which is odd O.o *fixes anyway*
__________________


"I see now that the circumstances of one's birth are irrelevant; it is what you do with the gift of life that determines who you are."~Mewtwo
My Adoptables|Nuzlocke Webcomic
Reply With Quote
  #34  
Old 02-20-2011, 11:32 AM
Knyfe's Avatar
Knyfe Knyfe is offline
Things are looking harder
 
Join Date: Jan 2011
Location: MA, United States (That's one reason why I love this site XD)
Posts: 48
Gender: Female
Credits: 6,227
Knyfe is on a distinguished road
Default

This is an epical site.
__________________
Just because we all use the same script doesn't mean our websites can't be unique.
Please visit Shop 12.
Reply With Quote
  #35  
Old 03-14-2011, 06:02 PM
PTGigi's Avatar
PTGigi PTGigi is offline
Crazily Friendly~HoF
 
Join Date: Jul 2009
Location: Somewhere >.>
Posts: 370
Gender: Female
Credits: 26,401
PTGigi
Default

New area! Town Outskirts. Mrf been busy sorry D: Not sure how active I'll be able to be :( But I'll try to add updates when possible! (gah mereging with the 1.2 is going to be awhile o-o")
__________________


"I see now that the circumstances of one's birth are irrelevant; it is what you do with the gift of life that determines who you are."~Mewtwo
My Adoptables|Nuzlocke Webcomic
Reply With Quote
  #36  
Old 03-14-2011, 06:05 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: 338,505
Hall of Famer is on a distinguished road
Default

Nice update Gigi, glad you are still actively working on your adoptables site. There are a few changes made in Mys v1.2.0 that seems rather hard to integrate onto existing sites, but thats definitely doable.
__________________


Mysidia Adoptables, a free and ever-improving script for aspiring adoptables/pets site.
Reply With Quote
  #37  
Old 03-14-2011, 07:51 PM
PTGigi's Avatar
PTGigi PTGigi is offline
Crazily Friendly~HoF
 
Join Date: Jul 2009
Location: Somewhere >.>
Posts: 370
Gender: Female
Credits: 26,401
PTGigi
Default

Thank you! ^-^ I've just had so much stuff going on recently o-o" Not to mention Pokemon White is addicting XD I got so many plans for MM2+ though just not a lot of time to code anything due to school and White and whatnot DX

Though I have a neato evolution idea for special Pokemon which is going along nicely, also "Explore Buddies" is done I just need to make areas which use the feature XD I haven't released the feature for that reason. ;)
__________________


"I see now that the circumstances of one's birth are irrelevant; it is what you do with the gift of life that determines who you are."~Mewtwo
My Adoptables|Nuzlocke Webcomic
Reply With Quote
  #38  
Old 10-21-2011, 05:16 PM
SilverDragonTears's Avatar
SilverDragonTears SilverDragonTears is offline
I am your Nemesis.
 
Join Date: Jun 2011
Posts: 1,113
Gender: Female
Credits: 82,594
SilverDragonTears is on a distinguished road
Default

I MUST know... how did you integrate the forum with the site?
__________________

Check out SilvaTales
Reply With Quote
  #39  
Old 10-21-2011, 05:36 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: 338,505
Hall of Famer is on a distinguished road
Default

Well the idea is that the user's info is inserted into both the forum and adoptables site databases upon registration. The technique varies with different forum engines. PHPbb and Mybb integration appear to be easy, while integration with more advanced engines such as VB and IPB can be complicated since user information is stored in more than one table.
__________________


Mysidia Adoptables, a free and ever-improving script for aspiring adoptables/pets site.
Reply With Quote
  #40  
Old 10-21-2011, 05:47 PM
SilverDragonTears's Avatar
SilverDragonTears SilverDragonTears is offline
I am your Nemesis.
 
Join Date: Jun 2011
Posts: 1,113
Gender: Female
Credits: 82,594
SilverDragonTears is on a distinguished road
Default

Well I'm willing to switch to phpbb but I don't know where to even start with integrating them. I already have a phpbb forum that I installed last night hoping to be able to integrate the two.
__________________

Check out SilvaTales
Reply With Quote
Reply


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 07:19 AM.

Currently Active Users: 9666 (0 members and 9666 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