 |
 |
 |
 |
#281075 - 10/23/04 02:06 AM
Finished-[6.5] Feature Shop 1.7
|
Old Hand
Registered: 10/17/03
Posts: 2409
Loc: Richmond, VA
|
Mod Name / Version: Feature Shop 1.7 <br /> <br />Description: Are you ever not around when Someone needs a Title Changed or Their Name Changed or Anything else that requires your presence as Admin? Ever wanna Hold Auctions and Offer things up for Sale? Well Here it is.. The UBB Threads 6.5 Shop.. <br /> <br />Working Under: UBB.Threads 6.5 <br /> <br />Mod Status: Finished <br /> <br />Any pre-requisites: Ubb THreads 6.5 <br /> <br />Author(s): scroungr <br /> <br />Date: 10/22/04 <br /> <br />Credits: <br /> <br />Files Altered: /ubbthreads/languages/english/online.php, /ubbthreads/languages/english/showflat.php, /ubbthreads/languages/english/showthreaded.php, /ubbthreads/languages/english/editdisplay.php, addpost.php, adduser.php, dopoll.php, showthreaded.php, showflat.php, changedisplay.php, deletepost.php, changebasic.php, /ubbthreads/templates/default/showthreaded.tmpl, /ubbthreads/templates/default/showflat.tmpl, /ubbthreads/templates/default/editdisplay.tmpl <br /> <br /> <br />If using IIP in the shoutaddpal.php <br /> <br /> <br />New Files: Shop Language Files, Shop Template Files, Shop PHP Files <br /> <br />Database Altered: YES <br /> <br />Info/Instructions: <br />Detailed Instructions enclosed <br /> <br />Disclaimer: Please backup every file that you intend to modify. <br />If the modification modifies the database, it's a good idea to backup your database before doing so. <br /> <br />Note: If you modify your UBB.Threads code, you may be giving up your right for "official" support from Infopop.If you need official support, you'll need to restore unmodified files.
Attachments
121815-theshop.zip (103 downloads)
Edited by scroungr (03/07/05 07:36 PM)
|
|
Top
|
|
|
|
 |
 |
 |
 |
 |
 |
 |
 |
#281078 - 10/23/04 12:56 PM
Re: Finished-[6.4-6.5] Feature Shop 1.6
[Re: Daine]
|
Old Hand
Registered: 10/17/03
Posts: 2409
Loc: Richmond, VA
|
Yes you set in the admin Panel what points you want to give for such things as taking Polls, Making Polls, Doing Shouts, How many words or Characters a post has.. and subtract em if the user deletes a post.. so these points build up and you can purchase items that you put up in the Item Section or Purchase Features such as ChangeName ChangeTitle Larger Signatures, Images in Signatures, Glowing Names (Flashes in Mozilla), Shadowed Names ( backgrounded in Mozilla), etc.. You can also Auction Off items you buy and when the auction is over you get the points and the user gets the item...<br /><br />see it for yourself at<br /><br /> CT Shop <br /><br />Login Threadsdev<br />Password Threadsdev
_________________________
Couchtomatoe - www.couch-tomatoe.ccMy abilities are for hire for installs, upgrades, custom themes and custom modifications.
|
|
Top
|
|
|
|
 |
 |
 |
 |
 |
 |
 |
 |
#281083 - 10/24/04 12:35 PM
Re: Finished-[6.4-6.5] Feature Shop 1.6
[Re: Duck]
|
Old Hand
Registered: 10/17/03
Posts: 2409
Loc: Richmond, VA
|
clear the siginiture doesn't clear titles or names it only clears the signature <img src="http://www.ubbdev.com/forum/images/graemlins/smile.gif" alt="" /> look at the script you should be able to see how to add other options...<br /><br /><br />to change only one.. look at the code and comment out the part you don;t want to change...<br /><br />and lastly you can run<br /><br />UPDATE w3t_ShopMembers SET titleeffectstatus = 'ON'<br /><br />that will update all users so they can see the effects and can then turn it off..<br /><br />to set it to default ON for all new users find the following adduser.php<br /><br />// -------------------------<br />// Build Board Query For Shop Mod & Insert Points<br />// Add user to Shop<br />$query="<br /> INSERT INTO {$config['tbprefix']}ShopMembers<br /> VALUES ('', '$Uid', '$Displayn_q', '$Title_q', '$Picture_q', '', '', '', 'OFF', '$Color_q', 'OFF', 'OFF', 'OFF')<br />";<br />$sth = $dbh -> do_query($query);<br />// End of Build Board Query For Shop Mod & Insert Points<br />// -------------------------<br /><br />change to<br /><br />// -------------------------<br />// Build Board Query For Shop Mod & Insert Points<br />// Add user to Shop<br />$query="<br /> INSERT INTO {$config['tbprefix']}ShopMembers<br /> VALUES ('', '$Uid', '$Displayn_q', '$Title_q', '$Picture_q', '', '', '', 'OFF', '$Color_q', 'OFF', 'OFF', 'ON')<br />";<br />$sth = $dbh -> do_query($query);<br />// End of Build Board Query For Shop Mod & Insert Points<br />// -------------------------<br /><br />if ya even wanna give newbies some credits for applying set <CREDITS VALUE> to a number like 1000 which will give newusers 1000 credits to spend..<br /><br /><br />// -------------------------<br />// Build Board Query For Shop Mod & Insert Points<br />// Add user to Shop<br />$query="<br /> INSERT INTO {$config['tbprefix']}ShopMembers<br /> VALUES ('', '$Uid', '$Displayn_q', '$Title_q', '$Picture_q', '', '<CREDITS VALUE>', '', 'OFF', '$Color_q', 'OFF', 'OFF', 'ON')<br />";<br />$sth = $dbh -> do_query($query);<br />// End of Build Board Query For Shop Mod & Insert Points<br />// -------------------------
_________________________
Couchtomatoe - www.couch-tomatoe.ccMy abilities are for hire for installs, upgrades, custom themes and custom modifications.
|
|
Top
|
|
|
|
 |
 |
 |
 |
|
|