vBookie
=======
Description
-----------
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'. However,
vBookie also comes with a built-in switch to allow it to use uCash or eBux instead. That means that
all bets are paid for and settled using uCash or eBux, making betting even more attractive than just
for fun on forums with uShop installed. Although vBookie does not have any built-in facility to
integrate with any other store hacks, it's a very simple to integrate it with any store/points
system you care to use.
Details
-------
1 Product XML
1 Bitfield XML
1 Hooks XML
1 PHP Script
1 Image
Installation
------------
1) Upload all files in floder upload
2) Import product-bookiehack.xml
3) In Template newthread
FIND
--------------------------------------------------
$threadmanagement
--------------------------------------------------
ABOVE that ADD
--------------------------------------------------
<if condition="$show['vbookieevent']">
<fieldset class="fieldset">
<legend>$vbphrase[post_a_vbookieevent]</legend>
<div style="padding:$stylevar[formspacer]px">
<div><label for="cb_postvbookieevent"><input type="checkbox" name="postvbookieevent" value="yes" id="cb_postvbookieevent" tabindex="1" $checked[postvbookieevent] />$vbphrase[yes_post_a_vbookieevent_thread]</label></div>
</div>
</fieldset>
</if>
--------------------------------------------------
In Templates postbit/postbit_legacy
FIND
--------------------------------------------------
$vbphrase[posts]: $post[posts]
--------------------------------------------------
BELOW that ADD
--------------------------------------------------
<if condition="$vboptions['vbookiecashon']">
<br />$vbphrase[vbookie_vcash]: $post[vbookie_cash]
</if>
--------------------------------------------------
In Template
FIND
--------------------------------------------------
<td class="vbmenu_control"><a href="calendar.php?$session[sessionurl]">$vbphrase[calendar]</a></td>
--------------------------------------------------
BELOW that ADD
--------------------------------------------------
<td class="vbmenu_control"><a href="vbookie.php?$session[sessionurl]">$vbphrase[vbookie]</a></td>
--------------------------------------------------
Usage
-----
Go to vBulletin Options / vBookie Settings to make your settings
Setup your permissions in Usergroups / Usergroup Manager (and, if necessary, in Forums & Moderators / Forum Permissions too)
Integrations with cash/points/store systems
-------------------------------------------
vBookie does have built-in support for uCash and eBux.
To integrate it with other systems, you have to write plugins for the following hooks:
* vbookie_do_charity
* vbookie_get_richest
* vbookie_get_user_cash
* vbookie_give_user_cash
* vbookie_take_user_cash
If you are unsure how to do this, please ask the author of those
|