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

Pages: [1] 2 3 ... 20
1
Items / Re: Item: BuyAvatar
« on: February 16, 2008, 02:18:13 am »
I put this item in my shop and removed the ability to upload your own avatar, and now people are losing their avatars any time they change something in their profiles! Is there a quick fix to this I'm just missing?
Hmm bit wierd, this item really doesn't affect any of SMF source files.

Seems like a weird bug, I would post it up on the official SMF forums. might be able to get a solution there

2
Requested additions / Re: Benefits for money
« on: December 21, 2007, 07:30:08 am »
BuyAvatar Item

Signature hasnt been done yet

3
Modifications / Re: SMF Lottery Mod
« on: October 26, 2007, 08:43:27 pm »
nice work with this mod, its been asked for a long time so thank you.

good solid list of features, nice one

4
Items / Re: change someones avatar
« on: October 25, 2007, 09:18:06 pm »
It'd be cool to be able to upload a new avatar for someone else...

The egg thing is cool

but an entire new avatar would also be a cool item....wish I knew more about this stuff so I could make some items myself

you could probably make a few small adjustments to this item here
http://www.daniel15.com/forum/index.php/topic,940.0.html

5
Items / Re: Item: EggAvatar
« on: October 25, 2007, 07:23:17 am »
Ok so I installed this...

I gather if you egg someone with a gif avatar it adds the egg and the avatar no long has movement..correct?

correct, its a limitation with using GD

it will only grab the first frame and apply the egg to it

6
Items / Re: Item: EggAvatar
« on: October 14, 2007, 06:14:31 pm »
Sorry. Yea. The avatars shrinked after egged. Is this normal or not. If it is not normal then anyone know what is the problem and how to fix it. Hhe thank you  :angel:

Its to do with the maximum allowed uploaded/external avatar settings.

If you go into the your admin -> forum -> Attachments and Avatars -> avatar settings

your should find what you are looking for

just increase the size to the desired max that you want allowed on your forums

7
Items / Re: Item: EggAvatar
« on: October 14, 2007, 06:48:04 am »
Guys it seems that those avatar got egged shrinked. ANyone know why or is that normal?

I dont actually understand what you are asking about?

Did the avatar get smaller after it was egged?

8
I have this same problem now.  Can someone tell me please what to look for and edit?

if you can send me a copy of those 2 files ill manually edit them for you
email: tsaphin@gmail.com

9
Items / Re: Prediction - Guessing Item
« on: September 28, 2007, 09:53:02 pm »
nice work again with this item inkstain

small suggestion for your prediction item
Code: [Select]
function onUse() {
global $db_prefix, $ID_MEMBER, $item_info, $boardurl;

$failedTextArray = array(
"You rolled a %s <br/><br/>The force is weak in this one",
"You rolled a %s <br/><br/>I don't think you'll be opening a psychic hotline any time soon :p");

srand(time());
$value = rand(1, 6);

if($value == $_REQUEST["dieside_"]){
$value1 = rand($item_info[1], $item_info[2]);
db_query("UPDATE {$db_prefix}members SET money = money + {$value1} WHERE ID_MEMBER = {$ID_MEMBER}", __FILE__, __LINE__);
return "<img src='".$boardurl."/Sources/shop/item_images/Roll".$value.".gif' align='texttop'/><br><br>Congratulations your prediction was right you rolled a ".$value." and got ".formatMoney($value1)."";
}else
return sprintf($failedTextArray[array_rand($failedTextArray)], $value);
}

10
Coding / Re: borrar items/ delete items
« on: September 18, 2007, 05:51:13 am »
I put the file "shop.php" in sources/shop but it follows equal, does
not appear the option to allow access smfshop   :-\


?

try look at index.php?shop

basically you can now only see sendmoney as you initially requested

11
Coding / Re: borrar items/ delete items
« on: September 17, 2007, 09:08:24 am »
http://www.leaderless.net/tp-downloads/forcuqui.zip

zip contains Shop.php

just unzip and upload the Shop.php into your Sources/shop/ folder

12
Coding / Re: borrar items/ delete items
« on: September 17, 2007, 08:59:01 am »
hmm im a little bit worried if you were unable to change the permissions related to SMFShop.

never the less, ill make some adjustments to some of the shop files, and ill give you a link soon enough

13
Coding / Re: borrar items/ delete items
« on: September 16, 2007, 09:46:59 pm »
My Spanish is terrible, but we should manage fine ;)

Lets get the permissions working correctly before adjusting the php in the files

Quote
By the way, in my panel of administrator, in "shop administration" I can see "General Settings Add/Edit/Delete Items Category Management Members' Inventory Restock Items Membergroup Functions" but I cannot see "allow Access to smfshop. :(

Try looking under
In your Panel in administrator,
Members -> Permissions
If you modify "Regular Members" you should be able to see "Allow Access to SMFShop"

I would probably recommend disabling these 5, and that should be pretty much what you are after

SMFShop
   Buy Items   
   View Other Members' Inventory   
   Send an Item to Someone   
   Bank   
   Trade Centre

14
Coding / Re: borrar items/ delete items
« on: September 16, 2007, 09:59:44 am »
shouldnt be to much of an issue

if you go into permissions of your forum your should see
SMFShop
   Allow access to SMFShop    
   Buy Items    
   View Other Members' Inventory    
   Send Money to Someone    
   Send an Item to Someone    
   Bank    
   Trade Centre

just take off the permission that you want, and should give you the affect you are after

and with that, just make a few small alterations to the Shop.template.php(in templates/default) and Shop.php(in sources)

15
Modifications / Re: SMFShop Inventory Post Modification
« on: September 10, 2007, 08:27:58 pm »
Apologies made a small mistake
change
Code: [Select]
if(mysql_num_rows($result) == 0){
echo '<fieldset><legend><a href="', $scripturl, '?action=shop;do=invother2;member=', $message['member']['username'], '">View Inventory</a></legend>';
while ($row = mysql_fetch_assoc($result)){
echo "<img src='{$boardurl}/Sources/shop/item_images/blank.gif'>&nbsp;&nbsp;";
}
echo '</fieldset>';
}
to
Code: [Select]
if(mysql_num_rows($result) == 0){
echo '<fieldset><legend><a href="', $scripturl, '?action=shop;do=invother2;member=', $message['member']['username'], '">View Inventory</a></legend>
<img src="{$boardurl}/Sources/shop/item_images/blank.gif">&nbsp;&nbsp;
</fieldset>';
}

Pages: [1] 2 3 ... 20