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 - TechnoDragon

Pages: [1] 2 3 ... 12
1
Coding / Re: Avatar Maker Mod
« on: April 16, 2007, 10:25:52 pm »
Sorry, yes, there has been an ever increasing issue with SMF's Packager system.  as for the ManagePermissions.php error, I will take care of that today and reupload a new package at my site for download.  Sorry it took so long to get to it!

2
Items / Re: Insurance (Still needs work!)
« on: April 11, 2007, 02:01:25 pm »
it should show up in the items list so that you can add it to the shop to buy...if not try checking your server to make sure iot was uploaded.  I can't remember if I added a PM to these versions or not.  Most likely not, because it would require manual changes to the files for the board you want it posted to.

3
General SMFShop Discussion / Re: SMFPets is Finally Here (0.1 out)
« on: April 09, 2007, 11:40:39 pm »
Like i said it was fine until I went to use it the first time.  I had just purchased the pet and went to use a skill.  It gave me a message saying something like I wasnt trained enough to use it, and it disappeared, so I went to train the animal.  Well I have purchased a couple more animals and now they come with out it to begin with.

If possible, would it be possible to get someone to give me a clean copy of the Pet-Shops and the pet_engine files?  I have done the 0.1 update, so i know that is good.  TY

Sorry I have been away for so long...Littleone, When you bring up your pets and the skill list is missing, do any errors show up in your error log?

4
Items / Re: Insurance (Still needs work!)
« on: March 21, 2007, 03:26:53 pm »
well if you mean it failed...that is because of the extremely low percentage chance of success...if you mean there is an error if there is success  Iwill look at my code and if there is an issue I will post up the corrected item

5
General SMFShop Discussion / Re: SMFPets is Finally Here (0.1 out)
« on: March 19, 2007, 04:46:27 pm »
for the issues with the directory permissions...I have been having similar issues with a mod I have been working on with some sites and the issue has been traced to the smf package manager chown when installing packages.  For some reason (haven't been able to trace the cause yet) it changes the owner of the directories which makes them effectively unusable for he forum.

6
Coding / Re: Avatar Maker Mod
« on: March 19, 2007, 04:43:22 pm »
well, we had planned on releasing this last week, but then decided to create it own package manager...so we will be finishing that before we release it.

7
General SMFShop Discussion / Re: SMFPets is Finally Here (0.1 out)
« on: March 18, 2007, 03:35:21 pm »
Currently the only way to remove a members pet in directly through the database...

8
General SMFShop Discussion / Re: SMFPets is Finally Here (0.1 out)
« on: March 18, 2007, 01:23:30 am »
ROFL

I didn't realize about the numpets, I could change that around if you like?  Thank you...I am always trying to figure out small ways to improve everything i use or help others do the same!

as an update...The combat portion has not been forgotten, we are just trying to finalize the current beta version of my mod before we proceed on any new features(we found that we are getting into an infinite loop where we finish, figure out something new, then keep coding.  We HAD to pick a point to stop otherwise we would never release it! ROFL)

9
General SMFShop Discussion / Re: SMFPets is Finally Here (0.1 out)
« on: March 17, 2007, 01:15:25 pm »
OK, here's the skinny:

in Load.php find:
Code: [Select]
$row['options'] = array();
$user_profile[$row['ID_MEMBER']] = $row;
}
mysql_free_result($request);
add below that:
Code: [Select]
//Load the pet data
$request2 = db_query("
SELECT COUNT(*) AS pets, ownerid
FROM {$db_prefix}shop_pets
WHERE ownerid IN ('" . implode("', '", $loaded_ids) . "')
GROUP BY ownerid", __FILE__, __LINE__);
while ($row = mysql_fetch_assoc($request2))
$user_profile[$row['ownerid']]['pets'] = $row['pets'];
mysql_free_result($request2);

then find:
Code: [Select]
'post_group' => $profile['post_group'],
add below:
Code: [Select]
//another pets modification
'pets' => &$profile['pets'],

then in the display template.php find the code you suggested and add this below instead:
Code: [Select]
//finally a pets button
if ($message['member']['can_view_profile']){
if($message['member']['pets'] > 0){
echo '
<a href="', $message['member']['href'], ';sa=showPets">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/icons/pets.gif" alt="' . $txt[27] . '" title="' . $txt[27] . '" border="0" />' : $txt[27]), '</a>';
}
}

this will only show the link to the members pets in profile on two conditions:
     1. person can view profiles
     2. member actually has a pet

there you go...ENJOY!

10
General SMFShop Discussion / Re: SMFPets is Finally Here (0.1 out)
« on: March 17, 2007, 12:27:21 pm »
working on the code right now...give me about 10 minutes! ok, maybe 30 LOL

11
General SMFShop Discussion / Re: SMFPets is Finally Here (0.1 out)
« on: March 17, 2007, 12:17:11 pm »
thats actually a very good idea...now if I can only figure out a way to only have it show if they actually have pets...

12
Items / Re: Insurance (Still needs work!)
« on: March 17, 2007, 12:23:09 am »
i'll see what I can do...the items I already released were the ones I modified on my site....didn't want them to be protected from EVERYTHING! LOL

13
Coding / Re: Avatar Maker Mod
« on: March 16, 2007, 07:32:37 am »
Absolutely...and I have been working at streamlining the code and adding some new functionality as well

14
Items / Re: Insurance (Still needs work!)
« on: March 15, 2007, 02:23:58 pm »
I haven't implemented it yet for either of those items, but I am sure it wouldn't be much harder than any of the other items

15
Items / Re: Insurance (Still needs work!)
« on: March 15, 2007, 11:55:17 am »
well, there is no complete installpackage if that is what you mean...the zip file i have at my site should add the item and the database field, but the code above has to be manually installed to have the current shield count show up for the member in the shop

Pages: [1] 2 3 ... 12