IPBarcade ADDONS!

This mod simply adds a link to their game rankings in their profile. It's surprisingly simple, and works with any version of ibProArcade.

Support:

None needed.

Apply these edits:

Find in MEMBERINFO:

Code:
<if condition="$vboptions['usereferrer']">
            <div class="fieldset">
                <div style="padding:$stylevar[formspacer]px">
                    $vbphrase[referrals]: <strong>$referrals</strong>
                </div>
            </div>
            </if>
Add after:
Code:
<div class="fieldset">
<div style="padding:$stylevar[formspacer]px">
<a href="arcade.php?&act=Arcade&module=report&user=$userinfo[userid]">View Arcade Scores</a>
</div>
</div>
That's it!
 
Arcade Rankings Link in Member Profile
This mod simply adds a link to their game rankings in their profile. It's surprisingly simple, and works with any version of ibProArcade.

Support:

None needed.

Apply these edits:

Find in MEMBERINFO:



PHP:
<if condition="$vboptions['usereferrer']">
            <div class="fieldset">
                <div style="padding:$stylevar[formspacer]px">
                    $vbphrase[referrals]: <strong>$referrals</strong>
                </div>
            </div>
            </if>

Add after:



PHP:
<div class="fieldset">
<div style="padding:$stylevar[formspacer]px">
<a href="arcade.php?&act=Arcade&module=report&user=$userinfo[userid]">View Arcade Scores</a>
</div>
</div>

all other hacks below
 
ibProArcade reduce scores to keep arcade competitive..Version 1.0

Reduce the scores. All the ranks are kept in tact but the high scores are achievable again.

I made this add-on from bairy`s v3arcade version..
Thanks goes to him for the main code !!!!!

It's all done by a single cron job.

Upload ibproarcade_reduce_scores.php to /includes/cron
Set a new scheduled task. This one runs on the first of each month:

Varname: Reduce_ibProArcade_Scores

Title: Reduce ibProArcade Scores

Day of week: *
Day of month: 1
Hour: 0
Minute: 4

Active: Yes
Log: up to you
Filename: ./includes/cron/ibproarcade_reduce_scores.php

Product: ibProAcade for vBulletin
Save

Last : Go to Admincp >> Arcade >> Score Tools and Update Highscores...

By default the scores are reduced by 15%.
If you want to change this percentage, change the 15 to whatever you like on line 9..
$scorechange = 15;

Important note: This script will reduce the scores by 15% each time you run it manually or on cron.
 
Back
Top