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

Pages: [1]
1
Items / Re: New Item: Buy Membergroup
« on: January 15, 2007, 01:22:51 pm »
actually I wrote a version of this already here: http://www.daniel15.com/forum/index.php/topic,316.0.html

the recoded post by daniel15 is the one that you want to download..

feel free to use or expand on the code from there.



MJ

2
Items / Re: Rob The Bank - new item
« on: October 03, 2006, 07:27:09 am »
yah I added this to my forum... pissed alot of people off...lol

its not real they keep getting told..

3
General SMFShop Discussion / permissions
« on: September 30, 2006, 02:13:13 am »
would it be possible to add permissions to the next version so that nonmembers can not even see the shop button, and certain members can manage the shop but not be an admin on the forum, and add a php file to the shop as well...

also have permissions so that people can or can not see the shop, for example if they abuse the shop or something like that...


MJ

4
Items / Re: Change Member Group
« on: September 30, 2006, 12:27:27 am »
the idea is a membergroup that they can buy into, presetupup by the admin, for example they could by a forum shopper membergroup... that way they can be all happy they are part of the membergroup.

the forums that I run, the people love anything thats available..

Daniel: it took me a few hours to figure out ur coding in regards to SMF, this was my first attempt at creating something for SMF and SMFSHOP. Having to go into the database to figureout exactly what I am doing makes sense..

Thanks again for recoding my idea from your Code Daniel.

Much appreciated.

MJ

5
General SMFShop Discussion / Re: money maxes out
« on: September 26, 2006, 12:47:16 pm »
I reset everyones credits because everyone was maxed out, when you break something, somehow it has to be fixed....lol

6
Items / Change Member Group
« on: September 26, 2006, 12:46:17 pm »
I rewrote the code here to allow people to change membergroups on the forum

I called this Membergroup.php

Code: [Select]
<?php

class item_Membergroup extends itemTemplate {
    function 
getItemDetails() {
        
$this->name "Change Membergroup";
        
$this->desc "Change your Membergroup!";
        
$this->price 50000;

        
$this->require_input false;
        
$this->can_use_item true;
    }

    function 
getAddInput() {
        return 
"Membergroup: <input type='text' name='info1' value=''>";
    }

    function 
onUse() {
        global 
$db_prefix$ID_MEMBER$item_info;

        
$result db_query("UPDATE {$db_prefix}members
                            SET ID_GROUP = 
{$item_info[1]}
                            WHERE ID_MEMBER = 
{$ID_MEMBER}",
                            
__FILE____LINE__);
        return 
"Changed Member Group to {$item_info[1]}";
    }

}

?>


7
General SMFShop Discussion / Re: money maxes out
« on: September 26, 2006, 12:39:00 pm »
I had to reset everyones credits

8
General SMFShop Discussion / money maxes out
« on: September 26, 2006, 08:14:46 am »
I am on a forum where we have appeared to reach the max amount displayed by the shop software, where can I change it?

2147483647


this shows in show all Richest Members (Bank) & Richest Members (pocket), and also in money in pocket, and money in bank, however when I go into the admin area it has the actual amount..

whats up?

9
General SMFShop Discussion / Re: issue with turning off shop points...
« on: August 16, 2006, 11:32:28 pm »
shop 2.2

10
General SMFShop Discussion / Re: random money
« on: August 16, 2006, 11:16:54 pm »
I like to have fun with the people on the forum I have this on...  I was hopin they would win some... but I went through 10,000 credits and lost it all..

Thanks Daniel for the fix.

11
General SMFShop Discussion / Re: issue with turning off shop points...
« on: August 09, 2006, 03:19:46 am »
well I can turn them off but turning off is a sql job :/

12
General SMFShop Discussion / random money
« on: August 09, 2006, 03:19:13 am »
ok I setup the random money to -10 and 500 then I lost 70 credits when I checked it out...

thats ODD!!..

should look into the programming on this..

Max

13
General SMFShop Discussion / Re: issue with turning off shop points...
« on: August 07, 2006, 10:14:19 am »
1.0.7, is this verson better run on rc2?

SHOP 2.2

14
General SMFShop Discussion / issue with turning off shop points...
« on: August 06, 2006, 01:35:29 pm »
I installed the latest version...

there seems to be an error in the coding regarding turning off the shop points via manage boards..

when I want to do that I have to go into the database manually...

kinda a pain in the butt..

Max

Pages: [1]