View Single Post
  #2  
Old 03-07-2005, 05:15 PM
Zero Tolerance's Avatar
Zero Tolerance Zero Tolerance is offline
 
Join Date: Feb 2004
Location: England
Posts: 813
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by sv1cec
Zero,

I did some mods to play a sound, when a new member enters the chat room. Basically, the mod is adding a parameter, $playsound in vBChat.php, which is then checked with an if conditional in chat_row_bot.

Here is the code I used in vBChat.php:

I first changed the bot message code, to accept a new parameter:

PHP Code:
    function BotMessage($msg "",$room 0,$foruser){
    global 
$DB_site;

    
$DB_site->query("insert into ".TABLE_PREFIX."vbchat_store (s_postby,s_message,s_postime,s_foruser,s_forroom) values (-1,'".trim(addslashes($msg))."',".time().",{$foruser},'{$room}')");
    } 
Then, when a new user gets in, I set the $foruser to -1.

PHP Code:
    unset($Rooms); // Free some memory

    // Did You Just Join This Room?
    
if(!$_GET['nojoin'] && $bbuserinfo['userid'] != ""){

    
BotMessage("{$bbuserinfo['username']} joined {$InRoom}",$bbuserinfo['vbchat_pref_in_room'], -1);
    
header("Location: vBChat.php?{$session['sessionurl']}&do=main&nojoin=1");
    } 
Then, when the bot message is created, I check if the s_foruser is -1, in which case the $playsound is set to 1, and then the s_foruser is reset to 0. In that way, only the first time the bot message is show, the sound will be played.

PHP Code:
                $playsound=0;
                if(
$ThisMSG['s_postby'] == -1)
                {
                    if (
$ThisMSG['s_foruser']=='-1')
                    {
                        
$playsound=1;
                        
$DB_site->query("update ".TABLE_PREFIX."vbchat_store set s_foruser=0 where sid=$ThisMSG[sid]");
                    }
                
$BotMsg $ThisMSG['s_message'];
                eval(
'$chat_page .= "' fetch_template('chat_row_bot') . '";');
                
$playsound=0;
                } 
The s_foruser is set to -1, whenever a new user enters, and then it is restored to 0, so that the sound does not play again and again, every time the bot message appears on the screen.

Here is my chat_row_bot template:

HTML Code:
<tr>
<td nowrap="nowrap" valign="top" colspan='2'><font size='2' color='blue'><if condition="$playsound==1"><embed src="sounds/Sound1.wav" autostart="true" loop="0" hidden="true"></embed></if><b><center>>>> {$BotMsg} at {$ThisMSG['time']} <<<</center></b>
</td>
</tr>
My problem is that :

a) the sound is not played consistently
b) when it is played, I hear it as if it is played twice

Any help on that issue? The same code works OK for me, in other areas of the forum, where a sound is played.

As you understand, this is a feature suggestion for next release, LoL

UPDATE

As a matter of fact, it looks as if it works! I have probably done the last edits in the php file, while the twins were around, and never got the chance to upload it. As for the double sound, it comes from the two browsers I had open for testing (Firefox & IE). Crazy things happen.

IF others would like that addition, and if you think the code is OK, you may of course include it in your next release.


Rgds and tnx
Well i have a certain emulation of MSN Messenger planned for v2.4, where if your "not" on the window, then it will flash like it does on windows, and play a minor sound when someone "replies".

Glad to see you got it working though

- Zero Tolerance
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01256 seconds
  • Memory Usage 1,827KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_html
  • (3)bbcode_php
  • (1)bbcode_quote
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • showpost_complete