![]() |
Quote:
|
I tested this app with vbcredits II beta 3 (current in private testing for vbulletin 4.0) and seems to work good so far.
|
I've just installed this and it looks like a great mod. However I have a small initial issue...
Point Field Name: Enter the fieldname of the point location located inside the user table. Sorry... I have no idea what this is for. |
Quote:
|
Quote:
I'm not normally this dense, I promise.... lol |
write ucash in that spot all lower case letters
where it asks point name field |
Quote:
|
You are very welcome
|
Now I just need to figure out how to adjust what's being 'sold' in the store and for how much. :)
|
I tried to find the answer on this but no luck.
I am using vBookie as my points system. What do I put in the Point Field Name I tried "vcash" and "vbookie" |
Quote:
|
How do i make the "Market Addon Features" clickable?
The list is a list of black text. Shouldnt it be clickable? |
1 Attachment(s)
I would really appreciate some help with fully implementing this mod into my site.
The main problem is custom user titles mess up my Postbit Legacy once they have either a colour or glow added to them (see attachment for comparison) Any idea how i can fix it? |
Code:
if ($post['market_username_subscript']) { Could anybody help me use the <div class="eti_postbit"> </div> class with the user title styles? Where do i put this? |
Is there a way that I can add new items? I need to have over 100 items in my Market and I am not seeing a Create New Item option anywhere.
|
where can steal from others ? and some Ajax into the card game would be nice
|
Quote:
I would really like to use this on my boards Cheers! |
Hi, LOVE THIS MOD!! I have one issue though... In the Point Market menu in ACP if I click on "Statistics" I get this Db error:
Code:
Database error in vBulletin 4.0.2: |
Code:
Database error in vBulletin 4.0.2: |
MikeM, I believe your suffering from a similar issue to what other people were before I released 2.0.1. I can't fix it right now because I've been away for a few weeks doing finals and a lot of traveling around the country. I'll be home this weekend to start my summer vacation with nothing to do except for a bit of work. I will definately look into it and come up with a fix for you.
|
How can I hide the Market NavbarTab? Is there a Way?
|
Quote:
|
Great plugin mate, just installed it. Something I could really use is to be able to add custom items to the list. You see, I run several counter-strike servers, and it would be cool to be able to sell, say reserved slots in the servers.
Of course, I could make this using the usergroup or gifts items, but it wouldn't be exactly what I need. |
Too bad you cant config that certain usergroups can purchase more items than other usergroups (example VIP being able to change usertitle color, but regular users cant)
|
i have one idea, author of this mod can add tool auto cash when member download to attachment.
|
Quote:
|
Update: I was planning on releasing 2.0.2 a few weeks ago that had a few bug fixes and tweaks. Instead, I've spent a few days working on my laptop on version 2.1.0. The reason for this release is I believe there was enough significant bug fixes applied in this version that requires a new version release instead of a maintenance release.
I know I haven't been able to get back to many people on their issues. 2.1.0 is set to fix many issues and as always I've done changes to the Market that allows for new features based off of user's feedback and requests. The most important changes / features I've done with this version is I've spent some extensive time working on the Admin CP and also the Gift section. I've seen numerous requests since I've released the gifts on being able to control the amount of gifts to display for users so that they don't get cluttered. There is now a new feature within the Admin CP to control these settings. In addition, I've seen numerous requests on being able to control the location on where the gifts are displayed. I've now added features that will allow for the admins to control based off of hook locations. Other changes and bug fixes involve a new Administrator Permissions system that allows the master admin to control which admins can access what. I've also added Moderator CP access to allow for moderators to be able to edit the Point Market and Admins can control which mods will have access. And there are other features as well. I'm trying to get this out as soon as possible so keep checking back daily and hourly. |
Thank you!! Hourly it is!!
|
I should also note I saw a number of people requesting automatic notification for donation and gifts via private message. I've added that functionality as well. I have about 5 bugs left I want to fix before this puppy is released.
|
Oh My! Can't wait:)
|
AWESOME MODE... really great work..
2 questions though: 1.How can i have big smilies by default, because small smilies look a bit smaller then they should be in my theme. 2. Does not display avatar :( Thanks. |
First of all, awesome mod! We use it on a fairly large forum (500k users, nearly 2M posts), and it's given our users something new to play with.
With that said; I've had to modify a few things to make it more usable on bigger boards, and more happy with custom postbit_legacy users. The first thing we changed was in the following plugin (Point Market: Postbit Adjustments): PHP Code:
It also allows us to add far more color options in the template for item_buy (and our custom template for username colors) without having to also modify the CSS files to include the glows. Further down in that hook, is a potentially server-intensive set of queries that was causing certain threads to have query counts in the 400s which is unacceptable. The potentially bad code is as follows: PHP Code:
Since we don't display who gave the gift, and why, in the postbit (we leave that to the member profiles to cut down on page sizes) I could change the above code to the following, to drop the query count down to 1 per post, which is acceptable. PHP Code:
Other changes include actually setting the message to use the [COLOR][B][I] BBCode tags, instead of wrapping them in HTML for display. (Which messes with quotes, and other tags inside the posts) I simply modified your plugin code for that to the following: PHP Code:
We also had to change the way username/title coloring is handled, since we want certain colors unavailable for usernames, but still available for titles/posts. There are various other things we've changed, but overall, great mod! I'd personally like to see a bit easier-to-use item adding system, so I don't have to manually insert things into the DB and add the code later. (An eval() type system would be awesome) |
Interesting changes you've done there. Kurios is right on how I have written some of the queries in the hook locations for the gifts is a bit database intensive and I might apply one or more of a fix to the next version before I release.
As far as the user title changes you applied, I'm very unsure of that... The user title bug issues is one of three bugs I haven't fixed and want to before the next version so I will look into what you suggested and see if I can come up with a better way of doing it then I currently have so that the usernames & usertitles can still be purchased with the items I currently offer without having to do template edits. Having no template edits is a very important part of this product that I refuse to ever change. Now as far as the final thing about manually editing the database for items. As I've previously stated if you ever plan on applying any upgrades of this product never ever-ever-ever start adding new items to the market_items table in the database. With how I have it coded it just won't work. Instead use one of the predefined market items I have included in the 2.0.1 series or one of the predefined categories that have no functionality but are available for custom coding and modify the coding with how you wish. Just don't insert anything new on the table. The reason I did that is so I can still have some control over the reported bugs and errors without having much 3rd party issues coming into play on why things don't work. I'm not saying I won't change that in the future but it all depends on how popular this mod becomes. Finally, I'm only 3 bugs away from releasing 2.1.0. I can safely say version 3.0.0 will be the next release which will majorly rework the design of purchasing items and I plan on introducing a new major feature that will greatly work with vbcredits when it comes out to allow multiple currencies for purchase and for users to be able to determine if multiple currencies are needed for each item to purchase or if a user can choose what to charge their account and how much of each. More will be available on that after I release this in the next day or two. |
Quote:
The other thought I personally had regarding 'items' was for actual 'things' like a t-shirt or hat with the sites logo, or even put the points towards their next years membership for example. I'm assuming the best way to do that is manually subtracting the points from a members profile if they order something like that. |
Quote:
Also; the only template edit we did, was to let us quickly add/remove colors for the color purchases. There are some colors we want off-limits for usernames. (It's simply 'appending' colors to the selection box, if it's not the username color item) As for the actual template edits, we needed to add/remove some colors due to our skin, as some are very very hard to read on our style, so we didn't want our members to have the ability to purchase them at all. (Thus, saving us the headache of having to manually change their color) The changes for that are as follows: PHP Code:
Quote:
Since you're still working on bugs; there are quite a few ways to 'force' buying items without having to pay for them. (You can open multiple tabs at the actual purchase screen for different items, and purchase an item in each tab. You'll only be deducted points for certain items.) The gambling stuff has a nasty bug that doesn't even check if you have enough points to play the games at all. You can effectively buy 10 million lotto tickets, nearly making your chances of winning 100%. (You go into the far negatives for points, but you can still win the Lotto and make all your points back, plus whatever else was in the pot) And lastly; we had to add a small little onclick handler to disable the 'Purchase' button after clicking it once, or you could accidentally buy more than 1 of the same item (if applicable). |
Very well done on findings... I'm upset that some of those bugs exist but very well done :) Check your private messages.
Also, I have done a lot of investigating on why user's are having issues with the Group By function while most other users are not. The only answer I can come up with is an out of date mysql version of 4.1 when the majority of users of this script and vBulletin use the 5x series. I am looking into alternatives on how to redo the Group By function, which is used on the statistics page within the Admin CP AND the Market home page. |
Quote:
CAN SOMEONE ANSWER THAT? 3. more question, what would have to be edited if i want to change the name of the tab that says "Market" which is created under the banner and next to forum? Thanks. |
i am getting error when it try to open my forum's market.php ? how can i increase my own point from admincp and what is point field incorrect error? help
Quote:
|
Quote:
|
oh thanks , its working now using ucash :) ~marked
|
All times are GMT. The time now is 08:56 AM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|