Mysidia Adoptables Support Forum  

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

Notices

Reply
 
Thread Tools Display Modes
  #21  
Old 03-21-2011, 03:08 PM
ChibiMaestro ChibiMaestro is offline
bruh
 
Join Date: Nov 2010
Location: United Kingdom
Posts: 300
Gender: Female
Credits: 37,895
ChibiMaestro is on a distinguished road
Default

Actually, on the demo site: http://www.mysidiaadoptables.com/mys120a/ the pound is exactly the same. I just test pounded 2 adoptables, and readopted them.

Also, I'll try check out the inventory :) *goes to test on my site*
__________________
Regards,
...the CSS lovin' cookie monster...

~C.Maestro
___________________
I'd like to think I'm good at CSS&HTML, so if you need help with designing templates and stuff, feel free to 'come at me bro' with the questions. Haha, also if you need help with installing the Mysidia Adoptables Script, please check out my guide here!
Reply With Quote
  #22  
Old 03-21-2011, 03:11 PM
AlexC's Avatar
AlexC AlexC is offline
Moderator
 
Join Date: Dec 2009
Location: Canada
Posts: 753
Gender: Unknown/Other
Credits: 67,773
AlexC is an unknown quantity at this point
Default

hmm, that's not good. D: Is that how it's suppose to be displayed then?

it keeps telling me it can't find the file on line 113.
Reply With Quote
  #23  
Old 03-21-2011, 03:24 PM
ChibiMaestro ChibiMaestro is offline
bruh
 
Join Date: Nov 2010
Location: United Kingdom
Posts: 300
Gender: Female
Credits: 37,895
ChibiMaestro is on a distinguished road
Default

I think the inventory script was for 1.1.X and I think you're using 1.2.0
And the furthest editing I got for the inventory script was:
Code:
<?php

include("inc/functions.php");
include("inc/config.php");

//***************//
//  START SCRIPT //
//***************//

$themeurl = grabanysetting("themeurl");
$links = getlinks();
$ads = getads("any");
$pagecontent = getsitecontent("index");
$article_title = $pagecontent[title];
$article_content = $pagecontent[content];
$article_content = nl2br($article_content);

$article_title = "Your Inventory";

if ($isloggedin == "yes") {
$article_content = "Here you can see a list of items that you have collected.<table width='500' border='2'>
<tr>
    <td width='200'><strong>Picture:</strong></td>
    <td width='230'><strong>Item Type: </strong></td>
    <td width='70'><strong>ID Number:</strong></td>
</tr>";
 
$query = "SELECT * FROM ".$prefix."useritems WHERE Owner = '$loggedinname'";
$result = mysql_query($query);
$num = mysql_numrows($result);

$i=0;
while ($i < $num) {

$iid=@mysql_result($result,$i,"ID");
$object=@mysql_result($result,$i,"Item");
$url=@mysql_result($result,$i,"imageurl");


$article_content = $article_content."<tr>
    <td><center><img src='".$url."'></center></td>
    <td><center>".$object."</center></td>
    <td><center>".$iid."</center></td>
  </tr>";

unset($iid);
unset($object);

$i = $i + 1;
}
$article_content = $article_content."</table>";

}
else {

$article_content = "You must be logged in to view items.";

}
//***************//
//  OUTPUT PAGE  //
//***************//

echo showpage($article_title, $article_content, $date);

?>
I couldn't continue because I have no idea how to insert a new table, and it's required to insert a table which is:
Code:
id, int(11), not null, auto_increment 
owner, varchar(40), latin1_general_ci, yes (NULL)	
itemtype, varchar(40), latin1_general_ci, yes (NULL)
imgurl, varchar(120), latin1_general_ci, yes (NULL)
But yeah :P
__________________
Regards,
...the CSS lovin' cookie monster...

~C.Maestro
___________________
I'd like to think I'm good at CSS&HTML, so if you need help with designing templates and stuff, feel free to 'come at me bro' with the questions. Haha, also if you need help with installing the Mysidia Adoptables Script, please check out my guide here!
Reply With Quote
  #24  
Old 03-21-2011, 03:30 PM
AlexC's Avatar
AlexC AlexC is offline
Moderator
 
Join Date: Dec 2009
Location: Canada
Posts: 753
Gender: Unknown/Other
Credits: 67,773
AlexC is an unknown quantity at this point
Default

i noticed that the person didn't actually say WHERE to add the tables, I know howto otherwise

http://ratties.x10.mx/inventory.php this was the result of adding the script. D: and yeah, I am using 2.0. Darn, I really wanted it to work. ;-; I've been promising items for ages.
Reply With Quote
  #25  
Old 03-21-2011, 03:38 PM
ChibiMaestro ChibiMaestro is offline
bruh
 
Join Date: Nov 2010
Location: United Kingdom
Posts: 300
Gender: Female
Credits: 37,895
ChibiMaestro is on a distinguished road
Default

Gahhh, yes, TCK needs (well, it'd be epic if he did) to update the thread :P

So how do you actually ADD tables? o-o
__________________
Regards,
...the CSS lovin' cookie monster...

~C.Maestro
___________________
I'd like to think I'm good at CSS&HTML, so if you need help with designing templates and stuff, feel free to 'come at me bro' with the questions. Haha, also if you need help with installing the Mysidia Adoptables Script, please check out my guide here!
Reply With Quote
  #26  
Old 03-21-2011, 03:43 PM
AlexC's Avatar
AlexC AlexC is offline
Moderator
 
Join Date: Dec 2009
Location: Canada
Posts: 753
Gender: Unknown/Other
Credits: 67,773
AlexC is an unknown quantity at this point
Default

You go through to phpadmin or whatever, then you click whatever area you want to add it to. like, adoptables or something. then I clicked structure or something (one of the tabs along the top) and at the very bottom there was an option to another field. At least, I think that was what it was. It had all of the options that everyone wanted me to add, and it worked fine.
Reply With Quote
  #27  
Old 03-21-2011, 03:47 PM
ChibiMaestro ChibiMaestro is offline
bruh
 
Join Date: Nov 2010
Location: United Kingdom
Posts: 300
Gender: Female
Credits: 37,895
ChibiMaestro is on a distinguished road
Default

Ohhh, I meant isn't there a way to kinda copy and paste the code? o-o
__________________
Regards,
...the CSS lovin' cookie monster...

~C.Maestro
___________________
I'd like to think I'm good at CSS&HTML, so if you need help with designing templates and stuff, feel free to 'come at me bro' with the questions. Haha, also if you need help with installing the Mysidia Adoptables Script, please check out my guide here!
Reply With Quote
  #28  
Old 03-21-2011, 03:58 PM
AlexC's Avatar
AlexC AlexC is offline
Moderator
 
Join Date: Dec 2009
Location: Canada
Posts: 753
Gender: Unknown/Other
Credits: 67,773
AlexC is an unknown quantity at this point
Default

I'm not sure. I'm rather hungry and thus confused at the moment, lol. Not a good place to be coding from.
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

Similar Threads
Thread Thread Starter Forum Replies Last Post
Need Help With a Few Things parayna Questions and Supports 3 09-28-2015 06:51 AM
Just 2 more things Starrunner Questions and Supports 17 01-12-2014 07:31 PM
A few more little things... Ruinily Questions and Supports 0 07-03-2013 08:16 PM
few things help 12345 Questions and Supports 1 05-05-2009 04:23 PM
Few things 12345 Questions and Supports 1 04-21-2009 03:42 PM


All times are GMT -5. The time now is 07:35 AM.

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