You will need BOTH installed on your forum already for this addon to work!
Features:
Games
Costs per Play
Static or Raising Jackpot Type
Editable Jackpots
Jackpot Tax
Qualifying Rank Threshhold for Jackpot
Jackpot displayed along with score to beat
Individual Jackpot Intervals
Three Winnings Types
Divide by Rank
Multiply by Rank Points
Entire Jackpot
Tournaments
Edit Costs and Jackpots Even After Creation
Entrance Fee
Static or Raising Jackpot Type
Deducts Fees From Players and Adds to Raising Jackpots
Works Even When Added via ACP
Costs and Jackpots Listed Throughout Tournament Area
Winner Takes All After Taxes
Arcade Passes
Allow all Games to be Free to Play, but Unable to Win Jackpots
Option to Still Pay Cost to Try For Jackpot, With Alternative Link
Usergroup Price Configuration
Configurable Expiry Time, Editable in ACP User Editor
General
Order Games by Cost or Jackpot in Both ACP and Forum
Mass Configure Costs and Jackpots for Games
Transaction Log Entries When You Win
Works for Both Layout Styles
Set Usergroup Discounts
Charge For Arcade Access
Taxes Go Into Central Board Account
Overall Quality
Everything is Easily Disabled / Unlimited
Will Not Alter Environment for vB or Other Hacks
Fully Phrased
Obeys canspend and canearn
Complete Admin Help
Unique Plugin Optimization
Now, ibProArcade was originally meant for another points hack, which was pretty much hard coded into the script, and is still there. So, basically you have to remove all of that code and replace it with the new vBCredits code.
I have two options for you:
I have the set of ibProArcade files pre-edited for you (used with permission)
I have provided the instructions for editing your own arcade files (if you have other addons you dont want to undo by overwritting the originals)
In either case - you still have to follow all directions in the instructions! The above is only step #3!
Support for this addon will NOT be here, but instead at this thread: http://www.vbcredits.com/forum/showthread.php?t=67
I will post announcements and updates here though regarding it. There is also a v3 Arcade version with the same features.
(note: until vBCredits 1.4 final is available, the settings for this addon may appear in a "blank" settings group)
Is there anyway to have a "visual" arcade pass. Like an arcade pass icon and/or data that appears by the pm message info at the top of the screen to let you know you still have a pass.
For example you could have a green icon when you have the pass and red or greyed out icon show when the arcade pass expires with a link to purchase a new one.
Any pointers on the template variables related to the arcade passes would be appreciated.
hmm you have a point there, must have gotten forgotten.
this should do the trick:
in plugins/credits_ibproarcade_plugins.php find:
PHP Code:
if ($vbulletin->userinfo['userid'] AND $game['cost'] AND ($vbulletin->userinfo['credits_ibp_pass'] <= TIMENOW OR $_GET['pay']))
replace with
PHP Code:
if (!($vbulletin->bf_ugp['creditpermissions']['credit_locked'] & $vbulletin->userinfo['creditperms']['creditpermissions']) AND $vbulletin->userinfo['userid'] AND $game['cost'] AND ($vbulletin->userinfo['credits_ibp_pass'] <= TIMENOW OR $_GET['pay']))
and in forum/arcade.php find
PHP Code:
if ($vbulletin->userinfo['credits_canearn'] AND $ctr <= $vbulletin->options['credits_ibp_minrank'] AND $lboard['score'] == $player_score AND $vbulletin->userinfo['credits_ibp_paid'])
replace with
PHP Code:
if (!($vbulletin->bf_ugp['creditpermissions']['credit_locked'] & $vbulletin->userinfo['creditperms']['creditpermissions']) AND $vbulletin->userinfo['credits_canearn'] AND $ctr <= $vbulletin->options['credits_ibp_minrank'] AND $lboard['score'] == $player_score AND $vbulletin->userinfo['credits_ibp_paid'])