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 4 ... 12
16
Items / Re: Avatar Upload Item
« on: March 15, 2007, 10:29:21 am »
another option is to modify the flag item...then instead of flags give them a selection of avatar to choose from.... and the modify the code to change the avatar field in the database. 

17
General SMFShop Discussion / Re: SMFPets is Finally Here
« on: March 14, 2007, 02:03:18 pm »
I guess you want to say thank you...

so...YOU'RE WELCOME!

ROFL

18
Items / Re: Item: Jeeves The Butler
« on: March 13, 2007, 02:28:07 pm »
Yes, thatnk you very much...I didn't mean to come accross rude...i have just been registering at soo many sites lately!  ROFL

I did download the item and it is very cool.  What kind of additional features do you have planned for this?

19
Items / Re: Arcade Pass Item and SMF Arcade Integration
« on: March 12, 2007, 09:34:17 am »
already have those...awesome work there hambil!

it almost feels like the old version because of those...but the version of the post restriction they used was actually a crappy way to check for posts per day.

20
Items / Re: Arcade Pass Item and SMF Arcade Integration
« on: March 12, 2007, 09:26:07 am »
yes, I even upgraded my arcade to the newest version so I could try it out...made a few modifications though to use in conjunction with my post-per-day mod (the arcade version doesn't work very wel)

21
Items / Re: Item: Jeeves The Butler
« on: March 12, 2007, 09:25:06 am »
anyone have screen shots or something?  I really don't feel like registering with ANOTHER site (my list is already close to 200 long, hard to keep track)

22
Coding / Re: Making Packages?
« on: March 11, 2007, 09:32:32 am »
basically only package up the update, then apply it...that should work.

23
Items / Re: Insurance (Still needs work!)
« on: March 10, 2007, 11:33:50 pm »
You are very welcome!

Ok, I have added the tinsurance count so members can see how much they have left (This only show the particular member and noone else)
in shop.template.php find:
Code: [Select]
<b>',$txt['shop_money_in_pocket'],': </b>',$context['shop_money'],'<br />
',$context['shop_money_in_bank'],'<br />
add after:
Code: [Select]
';<b>',$txt['shop_money_in_pocket'],': </b>',$context['shop_money'],'<br />
',$context['shop_money_in_bank'],'<br />';
if ($context['shop_shieldleft'] > 5){
echo'
<b>',$txt['shop_insurance'],':</b> ',$context['shop_shieldleft'],'<br />';
}
elseif ($context['shop_shieldleft'] >1 && $context['shop_shieldleft'] < 5){
echo'
<font color="red">',$txt['shop_insurance_low'],'</font><br />
<b>',$txt['shop_insurance'],':</b> ',$context['shop_shieldleft'],'<b> ',$txt['shop_insurance_left'],'</b><br />';
}
else{
echo'
<font color="red">',$txt['shop_insurance_none'],'</font><br />
<b>',$txt['shop_insurance'],':</b> ',$context['shop_shieldleft'],'<b> ',$txt['shop_insurance_left'],'</b><br />';
}
echo'
in shop.php find:
Code: [Select]
// The current member's money
$result = db_query("SELECT money, moneyBank
add after:
Code: [Select]
, insurance
find:
Code: [Select]
$context['shop_money_bank'] = formatMoney($row['moneyBank']);
add after:
Code: [Select]
$context['shop_shieldleft'] = $row['insurance'];
add these strings to the shop.english.php
Code: [Select]
$txt['shop_insurance'] = "Dragon Shield";
$txt['shop_insurance_low'] = "Your Dragon Shield is getting low! You may want to stock up!";
$txt['shop_insurance_none'] = "You have no Dragon Shield...Be Warned, this makes you a target for those that like to steal!";
$txt['shop_insurance_left'] = "Remaining";

make sure to change them to reflect what you call the insurance on your forum.

this will display their current amount left as well as change what message displays based on how much they have left

24
Items / Re: Item: Egg your victims avatar
« on: March 09, 2007, 05:43:29 am »
Quote
or storing the egged image in a directory other then avatars?

That

25
General SMFShop Discussion / Re: SMFPets is Finally Here
« on: March 08, 2007, 09:37:21 pm »
Ahhh, then THAT would appear to be an error then!

don't suppose you could post a screen shot of when you are trying to use the item to feed your pet?

26
Items / Re: Item: Egg your victims avatar
« on: March 08, 2007, 09:35:16 pm »
Wow, very good work Feeble...though let me tell you from experience...you are probably better off leaving the avatars as they are, it is near impossible to change that stuff with out a total rewrite of the whole avatar code in smf...

27
General SMFShop Discussion / Re: SMFPets is Finally Here
« on: March 08, 2007, 01:17:26 pm »
using either basil beards food item or the one i created

28
Items / Re: Insurance (Still needs work!)
« on: March 08, 2007, 08:28:42 am »
actually no...it seems to be working fine on my forum...let me attach my version and see if that fixes it for you...just remember to change the board number in the code for the item

29
Items / Re: New Item: Add membergroup
« on: March 07, 2007, 09:35:09 pm »
No, you are mistaken.  You either have not tried it out yet or you specified the admin group yourself when you set it up.

This item allows the buyer to be added to only 1 membergroup which the administrator chooses when he create the item.  When you set up this item in the admin, it asks you which membergroup you want the purchaser to be added to.  So it is PRE-SET!  The buyer is ONLY added to the membergroup that you have set the item up for and does NOT have the option to join any membergroup he pleases.

The good thing about this one is that you can create a different item for EACH membergroup you want your members to be able to BUY their way into and at DIFFERENT prices too! 

So no security leak here as far as I can see.

Ok, my bad, I was just trying to read the code posted to see what it did, didn't notice that!  Very cool item then!

30
Items / Re: New Item: Add membergroup
« on: March 07, 2007, 09:57:33 am »
the only issue I see (and i may be mistaken) is that you even allow them to choose the admin membergroup which could cause a serious security risk on a forum.

Pages: 1 [2] 3 4 ... 12