########################################################################################## ## ## MOD Title: Postmessage with a Flash Sound ## MOD Version: 1.1 (phpBB 2.0.6) ## Autor: Norbert ## Support: www.forum.gsx1100g.de/ ## ## What is it: When an new PN comes in, at the top of the Messageboad you can read: ## "You have 1 new messages". With this Mod you can hear the popular Sound "You god mail" as a Flashfile. ## ## Files to work on: 2 ## language/lang_english/lang_main.php ## templates/your favorite Template/overall_header.tpl ## ## new Files: 1 ## ## post.swf ## ## ## alternative Sounds: different sounds as swf Files ## (if you don't like the mailvoice, rename one of the other *.swf in post.swf ## and copy it into the rootdirectory of your phpbb) ## ## ########################################################################################## ## ## Notice: ## ## On probably almost all of the actual webbrowsers the Macromedia Flashplugin is installed. ## We only use the SWF File as a Container for the mp3 Soundfile. ## ## Safety Notice: first safe all your Files and the Database. ## ########################################################################################## # # #-----[ OPEN ]------------------------------------------ # # language/lang_english/lang_main.php # # #-----[ FIND ]------------------------------------------ # $lang['New_pms'] = 'You have %d new messages'; // You have 2 new messages $lang['New_pm'] = 'You have %d new message'; // You have 1 new message # #-----[ CHANGE WITH]------------------------------------------ # // // PM with sound // $lang['New_pms'] = 'You have %d new messages'; // You have 2 new messages $lang['New_pm'] = 'You have %d new message'; // You have 1 new message // // end PM with sound // # #-----[ KOPIE FILE ]------------------------------------------ # post.swf into the root of the Board. Exactly in the same Directory as the index.php or login.php is in. # # #-----[ OPEN ]------------------------------------------ # # templates/yourtemplate/overall_header.tpl # # #-----[ FIND ]------------------------------------------ # # icon_mini_message.gif" width="12" height="13" border="0" alt="{PRIVATE_MESSAGE_INFO}" hspace="3" />{PRIVATE_MESSAGE_INFO} # # #-----[ REPLACE WITH]------------------------------------------ # # icon_mini_message.gif" width="12" height="13" border="0" hspace="3" />{PRIVATE_MESSAGE_INFO} # # # #-----[ SAVE AND CLOSE]------------------------------------------ # # # That's all, simple enough? # End of Mod ########################################################################################## ##########################################################################################