Author Topic: Item Ideas  (Read 55128 times)

Offline Basil Beard

Re: Item Ideas
« Reply #30 on: May 24, 2006, 02:12:18 am »
size would probably be avatar sized, but as long as I remember to code it right, it should also be adjustable.
Arrrrr!

Offline Daethian

Re: Item Ideas
« Reply #31 on: May 25, 2006, 11:18:15 am »
I found a small collection but its a zip so I'll have to find another way to get them to you.

Offline akulion

Re: Item Ideas
« Reply #32 on: May 25, 2006, 05:38:41 pm »
any news on when this is gona be out? :D

Offline Basil Beard

Re: Item Ideas
« Reply #33 on: May 25, 2006, 10:01:20 pm »
When I feel like actually working on it? Basically i've been doing other stuff right now and thus not working on the pet mod. If I get around to working on it, it could be a week; if I don't it could be a month. I want to have it done by the end of june though cause i'll be away during July =D
Arrrrr!

Offline Daethian

Re: Item Ideas
« Reply #34 on: June 06, 2006, 10:16:55 am »
I found a site with TONS of small animal icons that you most likely can use.

http://www.kidsdomain.com/icon/animalsi.html

Offline StrangerWithin

Re: Item Ideas
« Reply #35 on: June 07, 2006, 06:53:00 am »
Just a thought?!?!?

Would it not be possible to incorperate the shops credits with some kind of fruit machine in a boards arcade?

Everyone loves to play the one arm bandits ;D

Offline Basil Beard

Re: Item Ideas
« Reply #36 on: June 15, 2006, 11:18:33 am »
Just an update, activity on my forum sadly died. Thus I really have no personal motive to finish the pet mod code and thus totally lost the will to do it. Thus unless I get the urdge to finish it within the next couple of weeks, it will be delayed until august/september at the earlyest. Sorry about that =(
Arrrrr!


Offline Levita

Re: Item Ideas
« Reply #38 on: June 22, 2006, 03:47:47 am »
I've got an Item Idea, but I don't know how to insert it.
WHen the Item is used, it chages your Name Style.
The Name should glow!
http://rainbow.arch.scriptmania.com/css/ie_filters_generator.html like this (glow)
Anyone can do this?

Offline Levita

Re: Item Ideas
« Reply #39 on: June 23, 2006, 03:45:02 am »
no one read this forum?

Offline Daniel15

Re: Item Ideas
« Reply #40 on: June 23, 2006, 10:11:32 pm »
Sorry Levita, I've been extremely busy over the past week, and haven't been able to visit this forum much...

About the glow, you can use it with the 'Display Name CSS' item. When you add the item to your shop, you can specify what CSS style to use. Just use something like 'filter:Glow(color=#0000FF,strength=4);height:22px' and call the item 'Name Glow' or something. Note that I don't officially support this, as it only works in Internet Explorer ;)

Offline Levita

Re: Item Ideas
« Reply #41 on: June 24, 2006, 12:13:21 am »
Iam so stupid in this category.

Code: [Select]
<?php
/**********************************************\
| SMFSHOP (Shop MOD for Simple Machines Forum) |
|         (c) 2005 DanSoft Australia           |
|      http://www.dansoftaustralia.net/        |
\**********************************************/

//File: ChangeDisplayNameCSS.php
//      Item that allows member to change style of their name. The style being changed
//      is fully customisable by the admin.

//NOTE: Some file edits are necessary to make this item work!!!


//VERSION: Not in SMFShop install as yet (item version 0.1 beta)
//DATE: 20th September 2005

class item_ChangeDisplayNameCSS extends itemTemplate {
    function 
getItemDetails() {
        
$this->name "Change display name style";
        
$this->desc "Change the style of your display name (style is admin-definable)";
        
$this->price 75;
        
        
$this->require_input false;
        
$this->can_use_item true;
    }

    function 
getAddInput() {
        return 
"New Style: <input type='text' name='info1' value='font-style:oblique'><br>
        NOTE: The 'New Style' can be any formatting CSS Properties. <b>Do not</b> put a 
        semicolon (;) at the end as it is appended automatically.<br><br>"
;
    }

    function 
onUse() {
        global 
$db_prefix$ID_MEMBER$item_info;
        
        
$result db_query("UPDATE {$db_prefix}members
                            SET shop_nameStyle = 
                                concat(shop_nameStyle,'
{$item_info[1]}; ')
                            WHERE ID_MEMBER = 
{$ID_MEMBER}",
                            
__FILE____LINE__);

        return 
"Successfully updated your display name style!";
    }

}

?>


What to do in this file?

Offline Levita

Re: Item Ideas
« Reply #42 on: June 24, 2006, 12:19:27 am »
oh iam sorry, i havent read your post exactly, i think its done now

Offline Levita

Re: Item Ideas
« Reply #43 on: June 24, 2006, 12:26:35 am »
omg...  when i paste your code (without the ') it happen nothing!

Offline Levita

Re: Item Ideas
« Reply #44 on: June 24, 2006, 06:11:00 pm »
*bump