Mchat Rock-paper-scissors addon

Modifications for phpBB3.
Try the Mods here and share Your own Mods
Forum rules
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support

Mchat Rock-paper-scissors addon

Post by Solidjeuh »

Image

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,
Before add:

Code: Select all

$find_chars = array("/ssp");
            $ssp = mt_rand(1,3);
           
            switch ($ssp)
            {
                case $ssp == '1':
                    $ssp = '<strong>You chose scissors</strong> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src="' . $phpbb_root_path . 'images/sschaar.png" width="42" height="41" alt="1" />';
                break;
				
                case $ssp == '2':
                    $ssp = '<strong>You chose rock</strong> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src="' . $phpbb_root_path . 'images/ssteen.png" width="42" height="41" alt="1" />';
                break;	

                case $ssp == '3':
                    $ssp = '<strong>You chose paper</strong> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src="' . $phpbb_root_path . 'images/spapier.png" width="42" height="41" alt="1" />';
                break;				
            }
          $message = str_replace($find_chars, $ssp, $message);	
Open: mchat_body.html
Find:

Code: Select all

<!-- IF MCHAT_READ_ARCHIVE_BUTTON -->
Before add:

Code: Select all

<input class="button2" type="button" value="Rock-paper-scissors" onclick="insert_text('/ssp');"></input>
ssp.zip
You do not have the required permissions to view the files attached to this post.
Last edited by Solidjeuh on 30 Jul 2013, 15:09, edited 1 time in total.

Mchat Rock-paper-scissors addon

Post by martin123456 »

Might want to pass some credit steves way too lol.

Mchat Rock-paper-scissors addon

Post by Blackwolf »

Yes...a few people helped in the original dice mod ;)

Thanks for sharing 8-)
rock.png
You do not have the required permissions to view the files attached to this post.

Mchat Rock-paper-scissors addon

Post by Solidjeuh »

Blackwolf wrote:Yes...a few people helped in the original dice mod ;)

Thanks for sharing 8-)
martin123456 wrote:Might want to pass some credit steves way too lol.

Done! 8-)

Mchat Rock-paper-scissors addon

Post by Tigerman75 »

Fantastic. ;) :thumb:

Thanks for sharing. :idea:

Mchat Rock-paper-scissors addon

Post by Blackwolf »

How to hide when logged out? :?
rock.png
You do not have the required permissions to view the files attached to this post.

Mchat Rock-paper-scissors addon

Post by Solidjeuh »

Replace with this

Code: Select all

<!-- IF S_USER_LOGGED_IN and not S_IS_BOT -->
<input class="button2" type="button" value="Rock-paper-scissors" onclick="insert_text('/ssp');"></input>
<!-- ENDIF -->

Mchat Rock-paper-scissors addon

Post by Blackwolf »

:thumb: Cheers big ears!