Mchat Rock-paper-scissors addon
Posted: 30 Jul 2013, 06:03
Rock-paper-scissors game!
( I stole the code from the dice addon )
Credits to: Stoker , SteveĀ©
Open mchat.php
Find:
Code: Select all
$sql_ary = array(
'forum_id' => 0,
Code: Select all
$find_chars = array("/ssp");
$ssp = mt_rand(1,3);
switch ($ssp)
{
case $ssp == '1':
$ssp = '<strong>You chose scissors</strong> <img src="' . $phpbb_root_path . 'images/sschaar.png" width="42" height="41" alt="1" />';
break;
case $ssp == '2':
$ssp = '<strong>You chose rock</strong> <img src="' . $phpbb_root_path . 'images/ssteen.png" width="42" height="41" alt="1" />';
break;
case $ssp == '3':
$ssp = '<strong>You chose paper</strong> <img src="' . $phpbb_root_path . 'images/spapier.png" width="42" height="41" alt="1" />';
break;
}
$message = str_replace($find_chars, $ssp, $message);
Find:
Code: Select all
<!-- IF MCHAT_READ_ARCHIVE_BUTTON -->
Code: Select all
<input class="button2" type="button" value="Rock-paper-scissors" onclick="insert_text('/ssp');"></input>