The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
v3 Arcade Lights Out Mode Details »» | |||||||||||||||||||||||||||||||
I did this a long time ago, so I'd advise you to back up your v3ARCADE_PLAY template before you do anything else, just incase I've forgotten something
I released a simplified version of this to Premium Members on v3arcade.com, now here is the more advanced version. What Does This Do? Basically, when you turn lights down, the entire page darkens and let you play the game in the 'dark' which cuts out distractions. I've also added a section of code which will show a game description (if one is available) above the game instructions. Open your headinclude template and add: Code:
<vb:if condition="THIS_SCRIPT == 'arcade'"> <script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script> <script type="text/javascript" src="js/lights.js"></script> <link rel="stylesheet" href="css/lights.css"/> </vb:if> In your v3ARCADE_PLAY template and find: Code:
<!-- main --> <div class="blockrow">{vb:raw flashcode}</div> <vb:if condition="$game['instructions']"> <div class="blockrow">{vb:raw game.instructions}</div> </vb:if> <!-- /main --> </td> <td valign="top" style="width: 200px; padding-left: 10px;"> <!-- right area --> Code:
<!-- main --> <div id="acontainer"> <div id="header"> <div id="command"><a class="lightSwitcher" href="javascript:foo();">Turn off the lights</a></div> </div> <div id="movie"> <div class="blockrow">{vb:raw flashcode}</div> <!-- /main --> <table width="700" border="0"> <vb:if condition="$game['description']"> <tr> <th scope="row"><span><b>Description:</b> {vb:raw game.description}<br/><br/></span></th> </tr> </vb:if> <vb:if condition="$game['instructions']"> <tr> <th scope="col"><span><b>Instructions:</b> {vb:raw game.instructions}</span></th> </tr> </vb:if> </table> </td> <td valign="top" style="width: 200px; padding-left: 10px;"> <!-- right area --> Code:
{vb:raw footer} Code:
</div> </div> <div id="shadow"></div> Upload the contents of the zip file to your server using your FTP css/lights.css js/lights.js images/arcade/light_bulb.png images/arcade/light_bulb_off.png images/arcade/shade5x5.png You can see a live demo in our arcade, play a game and click on 'Turn The Lights Off'. To upgrade from version 1.0.1 to version 1.0.2, unpack the archive and upload the files. No need to re-edit any templates Version History 1.0.1 - Initial release on vB.org 1.0.2 - Added new lights.css file If anyone wants to further develop any of my addons, you are free to do so. Download Now
Screenshots
Show Your Support
|
Comments |
#22
|
||||
|
||||
Quote:
To upgrade from version 1.0.1 to version 1.0.2, unpack the archive and upload the files. No need to re-edit any templates(unless you've removed the edits ofcourse). |
#23
|
||||
|
||||
Kewl, hope the new version works for me. My members are gonna love this. I have some serious gamers on my site.
|
#24
|
||||
|
||||
You do mean the headinclude for the forum not the arcade_headinclude right?
|
#25
|
||||
|
||||
Yes.
|
#26
|
||||
|
||||
Still not working for me.
|
#27
|
|||
|
|||
check whether you are already using a jquery file on your server and if you do include it above the code Gemma provided. Loading multiple jquery files on the same site does break the jquery functionality in many cases.
You could try to remove the jquery line and try this codeblock instead: Code:
<vb:if condition="THIS_SCRIPT == 'arcade'"> <script type="text/javascript" src="js/lights.js"></script> <link rel="stylesheet" href="css/lights.css"/> </vb:if> |
#28
|
||||
|
||||
Can you try following the instructions in post #7
|
#29
|
|||
|
|||
how do i translate it to heb? i try to translate the words in js file but it didn't show good.
|
#30
|
||||
|
||||
Quote:
in the v3Arcade_PLAY template edit Code:
<div id="command"><a class="lightSwitcher" href="javascript:foo();">Turn off the lights</a></div> Code:
$(this).html("Turn off the lights").removeClass("turnedOff"); else $(this).html("Turn on the lights").addClass("turnedOff"); |
#31
|
|||
|
|||
Quote:
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|