The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
vBookie for vBulletin 4 Details »» | |||||||||||||||||||||||||||||||||||||||
Please See the first post for a F.A.Q. I will endevour to link to useful posts within this thread there as I spot them. You should check there before posting issues etc. This is a port of vBookie for vBulletin 3.5 by Andreas which was a port of vBookie - vBulletin Betting Hack by tjdrico. Permission was given by tjdrico to port this. vBookie is a 'bookmakers' or betting extension to vBulletin. It enables authorised members to post Events and Outcomes that forum members can bet on. Each Outcome has its own set of odds, and odds can be modified through the life of an Event (bets that are placed are stored with the prevailing odds, so even if the odds change, your users are paid at the correct rate). Once the results are known, Events can be settled and forums members awarded their winnings. vBookie uses its own vCash by default, but this has no more use than as 'bragging rights'. Although vBookie does not have any built-in facility to integrate with any other store hacks, it's a very simple job to hack vBookie itself to integrate it with any store/points system you care to use. Install Instructions 1. Unzip product file 2. Upload files from 'Upload' folder to your forum 3. Install product XML [S]4. Edit "newthread" template as per readme.txt ionstructions[/S] 5. Set usergroup permissions 6. Set vBookie settings 7. Enjoy. 8. Check out Dismounted's Activity Stream addon 9. Click Mark As Installed and Rate Upgrade instructions same as above, but undo edits made in point 4 if upgrading from pre 4.0.7! (see readme.txt for more info) Version Control 4.0.0 (19 Jan '10 ) - Initial Release 4.0.1 (21 Jan '10 ) - Removed some junk from templates, added enable private bets option 4.0.2 (24 Jan '10 ) - fixed options for hiding vcash, added some more stuff to teh settings screen, added some vCash utilities (reset balances, give to everyone, set default balance) and fixed some template bugs. 4.0.3 (25 Jan '10) - fixed bugs I introduced in 4.0.2 see post #109 4.0.4 (25 Jan '10) - fixed time zone not being saved, can delete events, + plus a couple other things. 4.0.5 (Australia Day '10) - no longer uses bitfields for permissions, fixed vCash display, fixed stats page error 4.0.6 (27 Jan '10) - fixed TABLE PREFIX issue in vBookie stats page 4.0.7 (23 Mar '10) - fixed redirect bug when editing events, fixed display of cash holdings in events, added plugin to make template mods (no template mods needed now) and updated code to 4.0.2 standards, added hooks for vbcredits integration. NOTE 0- if upgrading from pre 4.0.7, you will need to eitehr revert your "newthread" temp[late, or manually undo template edits as there is now a plugin which does this for you. Check teh readme.txt in the archive for more info. 4.0.8 (31 May '10) - hopefully fixed bug with updating number of outcomes when editing events. To upgrade from previous version (4.0.7) just overwrite vbookie.php 4.0.9 (25 July 10) - Added ability to select Reputation points for currency. Phrased had coded text. Fixed bug in displaying vCash balance in postbit. 4.2.0 (21 August 12) Added in navigation manager Code for vBulletin 4.2, disabled old nav plugin 4.2.1 (24 January 13) Added missing template, fixed Nav code, fixed some small bugs Download Now
Screenshots
Supporters / CoAuthors Show Your Support
|
7 благодарности(ей) от: | ||
DS MrSinister, gagan007, RichieBoy67, snowlion, talkncaasports, tbworld |
Comments |
#712
|
|||
|
|||
Quote:
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 |
#713
|
|||
|
|||
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. |
#714
|
|||
|
|||
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 |
#715
|
|||
|
|||
Found it here.
https://vborg.vbsupport.ru/showpost....&postcount=716 Will have a look at it tomorrow. Regards Mick |
#716
|
|||
|
|||
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
|
#717
|
|||
|
|||
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 |
#718
|
|||
|
|||
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; } } |
#719
|
|||
|
|||
Excellent - glad you go it working!
|
#720
|
|||
|
|||
Hi dartho, is this something you would be interested in doing. Would be of good use for us.
|
#721
|
||||
|
||||
Quote:
Would also be of use to us too :up: |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|