SK Arcade Play Personal Best

This plugin is for v3Arcade.
Add this plugin and you can see your personal record when playing a game in the arcade.

Tested on vBulletin 3.6.x and v3Arcade 1.0.7

Installation:
2 steps installation. Import plugin and edit one template.

Import SK_arcade_play_personal_best.xml as a plugin.
(Via “Plugin & Products” > “Download / Upload Plugins” > “Import Plugin Definitions XML File” in your Admin CP.)

In the template: ARCADE_PLAY
Find:

<tr align="center">
  <td class="alt1" align="center">
  <div class="smallfont"><phrase 1="$game[title]">$vbphrase[score_to_beat]</phrase>:</div>
  <strong>$game[highscore]</strong>
  </td>
</tr>

Below it, add:

<!-- SK - Personal best add -->
<tr align="center">
  <td class="alt1" align="center">
    <div class="smallfont"><phrase 1="$game[title]">$vbphrase[personalbest]</phrase>:</div>
    <if condition="!$sk_pbscore"> 
      <em>$vbphrase[none]</em>
    <else />
      <strong>$sk_pbscore</strong>
    </if>
  </td>
</tr>
<!-- /SK - Personal best add-->