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

Pages: [1]
1
Requested additions / Re: add your own objects in smf shop
« on: March 03, 2008, 02:19:16 am »
how?  :)
Create the item's PHP file (or use one created by some one else: with their permission, of course) and upload it via FTP.

2
Requested additions / Re: add your own objects in smf shop
« on: February 26, 2008, 07:34:02 am »
You can.

3
Requested additions / Re: Living avatars
« on: February 20, 2008, 11:45:42 am »
I'm interested.  How did you get it working?

4
Modifications / Re: SMF Lottery Mod
« on: December 24, 2007, 02:38:15 pm »
I'm not sure if the item is working or not.

If there are no winners, should the results of the drawing show up in the past winners section? If so, I have a problem--they aren't.

Yes, I've set a cron job.  I set it to go every friday at 3PM and then edited the file like you said
Code: [Select]
// 518400 is the amount of seconds in 6 days. Change this to change the time between the draws.
if ($currentTime - $last_draw < 604800)
fatal_error("Lottery draws are to close together.",true);
Which, should result in a 7 day drawing period.


5
General SMFShop Discussion / Re: Is posiblre this?
« on: December 22, 2007, 12:44:34 pm »

6
General SMFShop Discussion / Re: Member Profiles!!! HELP!!!!
« on: December 18, 2007, 01:14:15 pm »
Oh yes, I know what you're talking about.  I think the error worked itself out when I had the problem.

Just to be sure, did you install anything before it started?

7
Requested additions / Re: limited items in invent.
« on: December 16, 2007, 12:39:05 pm »
http://www.daniel15.com/forum/index.php/topic,1043.0.html
That limits the items a user can have in their inventory.  I was going to use it until I saw that the creator was a bit of an ass and attacked Daniel for trying to help. 

As for storing items in the bank, that's a good idea.  Unfortunately I don't think there any mods that allow it yet

8
Requested additions / Re: Add custom or own item to shop
« on: December 16, 2007, 12:34:49 pm »
Well, first you need to create the item.  I can't help you there since my PHP skills are minimal.  Once you actually create the item, upload it via FTP to [Forum Directory] >Sources>shop>items

Once you do that, you can add it to the shop like any other item by using the admin CP.

9
General SMFShop Discussion / Re: Is posiblre this?
« on: December 16, 2007, 12:20:11 pm »
Alright, here is a snippet of code from the Display.Template.php file in one of the themes( an edit of SAF Multicolor)
Code: [Select]
  // BEGIN SMFShop MOD New Version Code
echo 'Lüts: ', $message['member']['money'], '<br />
<a href="', $scripturl, '?action=shop;do=invother2;member=', $message['member']['username'], '">[Inventory]</a>
<a href="', $scripturl, '?action=shop;do=sendmoney;member=', $message['member']['username'], '">[Send Lüts]', '</a><br /><br />';
  //END SMFShop code

All you should need is
Code: [Select]
echo 'Lüts: ', $message['member']['money'], '<br />Change "Lüts" to whatever the credits on your forum are called.  We have the section placed right after the karma section.  I'm not sure if there's a way to add it without manually adding the code since I wasn't the one who did the SMF and SMFShop installation.


If it doesn't work, let me know.


10
General SMFShop Discussion / Re: Is posiblre this?
« on: December 15, 2007, 05:01:43 pm »
Yes, it's possible.


I'm not the one who installed the shop, so I'm not sure how to enable it, or if it's on by default. I know that when I tested it on another forum the amounts showed up automatically.

11
Modifications / Re: SMF Lottery Mod
« on: December 15, 2007, 03:36:18 pm »
Pretty good.  Is there a way to limit how many a person can purchase? I initially set it to 3, thinking it would stop them from buying tickets at 3 tickets.  A user then bought 12 and put them all in the trade center.  Is there a way to limit both the purchases and the entries of the item?

Other than that, it's pretty cool.  Thanks.

Pages: [1]