vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Add-On Releases - vBookie for vBulletin 4 (https://vborg.vbsupport.ru/showthread.php?t=233473)

Mickie D 09-04-2011 05:05 PM

Quote:

Originally Posted by bobster65 (Post 2238596)
That must have been a customization that someone had done for you as vbookie has never been that way.

You could probably ask 500 of my members that use it regularly, that is how it worked and I never made any customizations, or anyone else.

I would however pay for someone to do that no problem, as it was much more fun for everyone.

Still loving this mod though!

Mick

dartho 09-04-2011 09:53 PM

Bobster is correct, that was never default behaviour. There are instuctions in the 3.5 version thread on how to make this change, but I ran into an issue when having a quick look at it under 4.0, so it is more than a quick job (and not one I can do at the moment).

BTW - I still use vb3.8 and have that same code modification.

Mickie D 09-04-2011 10:08 PM

No problem Dartho, thanks for looking.

Can you point me to that information please, I will take a little look.

But I can promise you I never done this modification, very strange?

Regards
Mick

Mickie D 09-04-2011 10:22 PM

Found it here.

https://vborg.vbsupport.ru/showpost....&postcount=716

Will have a look at it tomorrow.

Regards
Mick

dartho 09-04-2011 10:39 PM

Ah - I remember now, you're probably using this version whioch would explain why you did not have to modifiy the code: https://vborg.vbsupport.ru/showthrea...17#post2157617

Mickie D 09-05-2011 04:23 PM

That was exactly the one I installed :)

Thought I was going crackers there.

I have just got in from work but seen that the switch uses "vcash" instead of "vCash"

Looking over it now hopefully I can get it going

Mick

Mickie D 09-05-2011 06:16 PM

I got it working!

It was a very easy fix - you just change the "CASE".

If anyone is interested and all credits to the original add on maker... I done nothing really!

You will need to follow the instructions from this post
https://vborg.vbsupport.ru/showpost....&postcount=716

But when it comes to the edit for function_vbookie.php use this code below

Code:

// Additional pay/debit bookie
function vbookie_take_bookie_cash($userid, $amount)
{
        global $vbulletin;

        $bookie = $vbulletin->db->query_first("SELECT * FROM " . TABLE_PREFIX . "user WHERE userid=$userid");

        switch ($vbulletin->options['vbookiecash'])
        {
                case 'vCash':
               
               
                        if($amount > $bookie['vbookie_cash'])
                        {
                                $vbulletin->db->query_write("UPDATE " . TABLE_PREFIX . "user SET vbookie_cash=0 WHERE userid=$userid");
                        }
                        else
                        {
                                $vbulletin->db->query_write("UPDATE " . TABLE_PREFIX . "user SET vbookie_cash=vbookie_cash-$amount WHERE userid=$userid");
                        }
                        break;
                case 'uCash':
                        if($amount > $bookie['ucash'])
                        {
                                $vbulletin->db->query_write("UPDATE " . TABLE_PREFIX . "user SET ucash=0 WHERE userid=$userid");
                        }
                        else
                        {
                                $vbulletin->db->query_write("UPDATE " . TABLE_PREFIX . "user SET ucash=ucash-$amount WHERE userid=$userid");
                        }
                        break;
                case 'eBux':
                        if($amount > $bookie['ebux'])
                        {
                                $vbulletin->db->query_write("UPDATE " . TABLE_PREFIX . "user SET ebux=0 WHERE userid=$userid");
                        }
                        else
                        {
                                $vbulletin->db->query_write("UPDATE " . TABLE_PREFIX . "user SET ebux=ebux-$amount WHERE userid=$userid");
                        }
                        break;
                case 'custom':
                        ($hook = vBulletinHook::fetch_hook('vbookie_take_bookie_cash')) ? eval($hook) : false;
        }
}


dartho 09-05-2011 09:32 PM

Excellent - glad you go it working!

CharlieDelta 09-08-2011 05:16 PM

Quote:

Originally Posted by dartho (Post 2004346)
I used to have a max limit on my site (although users could get around this by placing multiple bets) - I'll have a look

Hi dartho, is this something you would be interested in doing. Would be of good use for us.

ProFifaLeagues 09-08-2011 06:07 PM

Quote:

Originally Posted by CharlieDelta (Post 2243486)
Hi dartho, is this something you would be interested in doing. Would be of good use for us.


Would also be of use to us too :) :up:


All times are GMT. The time now is 07:13 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.01946 seconds
  • Memory Usage 1,749KB
  • 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
  • (1)bbcode_code_printable
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)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