Sudoku for vBulletin(without plugin)

Daz

New Member
Sudoku for vBulletin
(without plugin)



Description: Add one page with Sudoku Game without plugin, just a new template

* Create a new template called: "custom_sudoku"

* Add inside (work with FF and IE):


PHP:
<center>
<html>
<head>
$headinclude
<title>$vboptions[bbtitle] - Sudoku</title>
</head>
<body>
$header
<br />
<table class="tborder" align="center" border="0" cellpadding="6" cellspacing="1">
<thead>
<tr>
<td class="tcat" colspan="2"><center>Sudoku</center>
</td>
</tr>
</thead>
<tr height="500">
<td align="center" class="alt1">
<IFRAME SRC = "http://www.free-sudokus.com/1/8.html" width="435" height="435" scrolling="no">
</IFRAME>
</td>
</tr>
<tr>
<td class="thead">Rules</td>
</tr>
<tr>
<td class="alt2">
<div style="font-weight: bold;">Short rules</div>
<div class="smallfont">Fill the grid by using numbers from 1 to 9. Once in every line, column and square of 3 x 3.
</div>
<br />
<div style="font-weight: bold;">Rules </div>
<div class="smallfont">It is necessary to fill the grid by using  the numbers from 1 to 9. Use only once on every line, column and block (or squared by 3 x 3).</div>
</tr>
<tr>
<td class="tfoot" colspan="2"><div class="smallfont"><B>Options:</B> <a href="$vboptions[bburl]"> Home</a> | <a href="$vboptions[bburl]/misc.php?do=page&template=sudoku">Delete Railing</a></div></td></tr></tbody>
</table>
$footer
</html>
</center>

* Url for play: add to navbar template under
PHP:
$header

insert
PHP:
<tr><td class="vbmenu_option"><a href="$vboptions[bburl]/misc.php?do=page&template=sudoku">Sudoku</a></td></tr>

screen-1.gif
 
Top