vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Graveyard (https://vborg.vbsupport.ru/forumdisplay.php?f=224)
-   -   Major Additions - Point Market System 3.1x (https://vborg.vbsupport.ru/showthread.php?t=232676)

jeremyricci 08-05-2010 05:28 PM

Is there currently a problem with the gambling portion of the mods? I've been trying to figure out why I get a payout, but it never allocates to my account. I keep spending money, and even though I win occasionally, it never deposites to the users accounts. Ideas?

Also, is there anyway to disable the bank? It doesn't work at all.

capt gary 08-07-2010 10:47 PM

Quote:

Originally Posted by TheMayhem (Post 2078313)
Ah the refund section is a bit messed up in the 3x series. I've attempted to fix it in RC 3 which is due within hours rather then days :)

Any updates?

TheMayhem 08-10-2010 09:04 PM

I'm narrowing in on finishing, I've seen a lot of reports from users related to the steal functions are not working. The problem I am having with dealing some of these bugs is the Point Market has become so big and some problems are really isolated. So if you were suffering from like steal errors or other things that have been commonly reported, PLEASE-PLEASE-PLEASE in the future do this:

- When reporting a bug, give me the exact URL of the error (it massively helps me pinpoint)
- What kind of point system are you using for your PRIMARY point field
- What kind of point system are you using for your SECONDARY point field (If Any)
- If it is a market purchase error, please let me know how you are charging users (Primary Point Field, Secondary Point Field, Either/Or Point Fields, Both Point Fields)

Once again, anyone who had an error that it wouldn't let you steal from users. I need more info because I cannot find the stupid bug and I know it exists.

Centrix 08-10-2010 09:46 PM

Does the 3.0 RC1 have that feature I mentioned before?

Quote:

Will there be a version where the admin can select which individual items can be purchased by certain usergroups?

I want my normal users to use this too, but I don't want them to have all the features, such as change username color. I only want my VIP members to be able to change their username color (and some other things).

TheMayhem 08-11-2010 12:14 AM

Just giving everyone the heads up, I have officially released RC 3. There is over 16 different bug fixes as well as several new features/changes. There still are a few known bug changes I didn't fix such as broken tag when importing the product, stealing isn't working correctly, storing style as a file, and the postbit html getting messed up for colored usertitles/usernames for the online/offline images. All other ones such as the banking bugs, lottery, some mysql errors, I was able to correct as far as I know. :)


Anyways, please repost bug reports following the updated support policy guide where I need specific information such as your primary and secondary point fields, url, etc. The more information the better for me to be able to fix the remaining bugs. The next release will either be RC 4 or Gold and will also feature usergroup control over which market items can be purchased.

Finally, sorry about the wait between RC 2 and RC 3 :)

Aramist 08-11-2010 12:52 AM

HI,


When i create a new item store, and click it to access...it gives me the following my sql error...

Code:

Database error in vBulletin 4.0.5:

Invalid SQL:
select * from market_store_transactions where marketid ='4' and userid='1';

MySQL Error  : Table 'mybd.market_store_transactions' doesn't exist
Error Number  : 1146
Request Date  : Tuesday, August 10th 2010 @ 10:49:11 PM
Error Date    : Tuesday, August 10th 2010 @ 10:49:11 PM
Script        : http://www.mysite.com/forum/market.php?do=storeitem&id=4
Referrer      : http://www.mysite.com/forum/market.php?do=storecat&storeid=3
IP Address    : My IP
Username      : Aramist
Classname    : vB_Database
MySQL Version : 5.0.91-community


He's not inserting the Table prefix

Any fix for it ?

Ty in advance

RollaJedi 08-11-2010 12:53 AM

i noticed that you said you can convert currencies. Can you convert vbexperience points into ucash, so that i may use ucash on your store and also spend the newly converted ucash on other 3rd party shops?

vbexperience points -----> point market system turns them into ucash ----------> able to spend these converted points in another shop

Bigj85 08-11-2010 12:57 AM

Just installed RC3,so far so good,its nice for the users to see the names of the currencies in the converter instead of the field names,a lot less confusing.
The banking seems okay so far but I havent really played with it to much,will give more feedback soon.

great work

Bigj85 08-11-2010 01:00 AM

RollaJedi yes you may,I am converting Experiencde into credits no problem,I mentioned this to you in a previous post in the vbexperience thread in your hunt to use exp. points as triple triad cash

TheMayhem 08-11-2010 02:03 AM

Quote:

Originally Posted by Aramist (Post 2081957)
HI,


When i create a new item store, and click it to access...it gives me the following my sql error...

Code:

Database error in vBulletin 4.0.5:

Invalid SQL:
select * from market_store_transactions where marketid ='4' and userid='1';

MySQL Error  : Table 'mybd.market_store_transactions' doesn't exist
Error Number  : 1146
Request Date  : Tuesday, August 10th 2010 @ 10:49:11 PM
Error Date    : Tuesday, August 10th 2010 @ 10:49:11 PM
Script        : http://www.mysite.com/forum/market.php?do=storeitem&id=4
Referrer      : http://www.mysite.com/forum/market.php?do=storecat&storeid=3
IP Address    : My IP
Username      : Aramist
Classname    : vB_Database
MySQL Version : 5.0.91-community


He's not inserting the Table prefix

Any fix for it ?

Ty in advance

Looks like I missed this, here is your fix for it or you can wait for the next release:

Open root/market.php

Find:

PHP Code:

// Check to See if User Can Rate
$user_purchase $db->num_rows($db->query_read("select * from market_store_transactions where marketid ='".addslashes($itemid)."' and userid='".addslashes($userid)."'"));
if (
$user_purchase 0) {
$can_review $db->num_rows($db->query_read("select * from market_store_review where marketid ='".addslashes($itemid)."' and userid='".addslashes($userid)."'")); 

Change to:

PHP Code:

// Check to See if User Can Rate
$user_purchase $db->num_rows($db->query_read("select * from " TABLE_PREFIX "market_store_transactions where marketid ='".addslashes($itemid)."' and userid='".addslashes($userid)."'"));
if (
$user_purchase 0) {
$can_review $db->num_rows($db->query_read("select * from " TABLE_PREFIX "market_store_review where marketid ='".addslashes($itemid)."' and userid='".addslashes($userid)."'"));
} else { 

:)





Quote:

Originally Posted by RollaJedi (Post 2081958)
i noticed that you said you can convert currencies. Can you convert vbexperience points into ucash, so that i may use ucash on your store and also spend the newly converted ucash on other 3rd party shops?

vbexperience points -----> point market system turns them into ucash ----------> able to spend these converted points in another shop

Yes you can use the Point Market Converter to turn a currency such as vBExperience into uCash and then a user could use those points from uCash to use it on another point store other then the market if you like. :)


All times are GMT. The time now is 09:06 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.03465 seconds
  • Memory Usage 1,766KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (2)bbcode_php_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (5)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete