Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - CKWT

Pages: [1]
1
Modifications / Re: SMFPets Version 0.2
« on: June 05, 2010, 03:44:05 am »
I've installed this and it works nice.. but I cannot change the image on the Pet.. is this normal?

It only goes to the Blank.

Any help?

I found it, I had to copy the other Pets examples to the real Pets folder

2
Requested additions / Re: [SOLVED] "Voucher Code" Item
« on: May 13, 2010, 12:10:01 pm »
Is there anyway we can get this mod compatible with 1.1.11

3
Modifications / Re: SMFShop Inventory Post Modification
« on: May 07, 2010, 10:58:44 pm »
BTW, I got it working.... It showd lots of errors but with the parser did the modifications and working neatly.

4
oki doki..

Thanks

Can you move My post to a place where the author might see it..

Thanks again

6
Will Try...


How hard would it be to update the ZIP file to make it compatible with 1.1.11

7
Hello..

This is the Redeem Shop...

I'm trying to install on 1.1.11, but not compatible.. The parser thing I can do, but it looks like there is a piece of code here that creates a table..

Can someone help on either, helping me install the hole thing manually or with an updated version that would show it to be compatible with 1.1.11

Thanks

CKWT

8
Modifications / Re: SMFShop Inventory Post Modification
« on: May 06, 2010, 10:58:36 pm »
I'm not on the same computer, but it showed, Unexpected T_While... something like that....

9
Modifications / Re: SMFShop Inventory Post Modification
« on: May 06, 2010, 09:56:11 am »
This piece of Code on 1.1.11 has an error.. and I follow the parser intructions:.. any help?

This is in Load.php in my source folder

//BEGIN SMFShop IPM
      //Set variable for LIMIT amount
      $row = 0;
      $max = $modSettings['ShopIpDisMax'];
      //Begin database query
      $request3 = db_query("
         SELECT it.desc, it.image, it.category, inv.id
         FROM {$db_prefix}shop_inventory AS inv, {$db_prefix}shop_items AS it
         WHERE inv.ownerid = {$profile['ID_MEMBER']} AND inv.itemid = it.id
         LIMIT $max", __FILE__, __LINE__);
         
         //Start with an empty array
         $profile['shopitems']['shopitems'] = array();
         
         //Loop through all items
         while ($row = mysql_fetch_assoc($request3))
         {
            // Add item to the array
            $profile['shopitems']['shopitems'][] = array(
               'image' => $row['image'],
               'desc' => $row['desc'],
            );
         }
         
      mysql_free_result($request3);
//END SMFShop IPM   

Thanks

10
Modifications / Re: SMFPets Version 0.2
« on: May 02, 2010, 08:28:12 am »
I've installed this and it works nice.. but I cannot change the image on the Pet.. is this normal?

It only goes to the Blank.

Any help?

Pages: [1]