Go Back   vb.org Archive > vBulletin Modifications > vBulletin 4.x Modifications > vBulletin 4.x Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
MGC Chatbox Evo Details »»
MGC Chatbox Evo
Version: 3.4.0, by VBDev VBDev is offline
Developer Last Online: Dec 2021 Show Printable Version Email this Page

Category: Chat Modifications - Version: 4.2.x Rating:
Released: 01-27-2008 Last Update: 09-01-2013 Installs: 2476
DB Changes Uses Plugins Template Edits Auto-Templates
Additional Files Translations  
No support by the author.



This mod is automatically compatible with vB3.6.x, vB3.7.x, vB3.8.x and vB4.x.x


Overview

MGC Chatbox Evo is the most ever installed chatbox for vBulletin !


It offers a new enhanced online experience to your members leading to increased time spent online of more than 25% by providing them with a new, more interactive, way to interact with each other.
  • Important number of features
  • High level of configurability to fit each users needs
  • Channels system
  • Many commands
  • Bot system
  • and more...
... makes MGC Chatbox Evo a must have for your forum !

Detailed features

Following is a non-exhaustive list:
  • Simple install
  • Ajax based with:
    • Fast and Intelligent chats retrieval through javascript calls to server files (refresh delay configurable per usergroup)
    • Edit/update by double-clicking on a chat
    • Interact on chats through menus and javascript
  • Many usergroup permissions to limit features according to usergroups
  • Full configuration of the chatbox display:
    Size, position on forum pages, editor layout (either top/bottom input or left/right textarea) and position, number of chats displayed, ...
  • Full configuration of the chats display:
    Authorized bbcodes selection, date/time options, avatar display, ...
  • Possibility to create channels (unlimited number) with multiple configuration options:
    • Warn user of new message when not active through blinking image and eventually sound notification
    • Possibility to select on which specific page each is displayed
    • Option to display the channel only for selected languages
    • Usergroup/User permissions to access the channel
  • Many commands available with usergroup/user permissions to access them:
    • /me: well known IRC command
    • /del: remove shouts (different possibilities of removal)
    • /ignore: ignore shouts from another user
    • /ban: ban user from chatbox
    • /pm: send a private chat to another user
    • /announcement: modify the announcement on top of the chatbox
    • /slap: allow user to slap another user
    • /team: chats sending between specified usergroups
    • /l33t: I33t-ify a message
    • /banchan: ban user from specific channel [PRO only]
  • Forum activity notifications system in the chatbox:
    • Different display options:
      • In the chatbox melted with chats
      • In the chatbox in a separate column
      • In the vB4 sidebar or a custom sidebar for vB3
    • Multiple notifications:
      • New thread creation
      • New post creation
      • Post thanked (Abe's)
      • New registrations (not included - separate product)
      • IBProarcade highscore (not included - separate product)
  • Bot system with set of predefined trigger chat and corresponding answers and automatic bot chats [PRO only]
  • Archive system with statistics as well as download and search capabilities
  • Possibility to display the list of users online in the chatbox
  • Force anynomous to enter a username before chatting if they can access the chatbox
  • Antiflood system
  • Private chats feature through PM in tabs
  • Optional sound notifications
  • Inactive mode feature for server load optimization
  • User statistics display in posts and profile
  • Chatbox statistics display on forumhome
  • Create thread from a chat [PRO only]
  • CMS Integration (not included - separate product)
    • vBAdvanced CMPS
    • vBulletin 4 CMS
  • Importers from other chatbox systems:
Install

Refer to the readme for the chatbox install.

Demo

Live demo on MGC Products forum

Languages
  1. French
  2. English
  3. German [Not yet updated]
  4. Serbian [Not yet updated]
Support

On my website mostly and in this thread


Int?gration

Integration in IBProarcade is described in the readme.
vBAdvanced CMPS and vBulletin 4 CMS integration are available as additional modules.


Compatibility

This hack is compatible with vB3.6.x, vB3.7.x
, vB3.8.x and vB4.x.x

Changelog

First part:

https://vborg.vbsupport.ru/showpost....&postcount=221

Second part:
https://vborg.vbsupport.ru/showpost....postcount=5429

Third part:

https://vborg.vbsupport.ru/showpost....postcount=8469

How to set the channel images


Thanks to princeedwards for this little how to : click here

PRO version and additional addons available on my website

This mod is automatically compatible with vB3.6.x, vB3.7.x, vB3.8.x and vB4.x.x

Download Now

File Type: zip [FREE]MGC_Chatbox_Evo_3.4.0.zip (1.70 MB, 3001 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #3052  
Old 11-18-2008, 10:20 AM
VBDev's Avatar
VBDev VBDev is offline
 
Join Date: Jan 2004
Location: France
Posts: 2,570
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by AWJunkies View Post
Developer please contact me about a fix working perfect for conflicting jS platforums (Prototype,YUI,MooTools).

Below is the link for you to take a look. I have your software all working perfect just wanted to let you know.

http://docs.jquery.com/Using_jQuery_...ther_Libraries

You may be able to give more incite in other places that might need this changed so let me know so I can update it on my end. I think this should by default with your software so your software never conflicts with other platforms but totally up to you.

I just changed what pages I knew I had Prototype or other platforms on so please let me know all places.

Here are instructions:
Code:
OPEN: template- mgc_cb_evo_headinclude

FIND: 
<script type="text/javascript" src="clientscript/mgc_cb_evo_add/js/jquery.blockUI.js"></script>

ADD AFTER: 
<script>var jQuery=jQuery.noConflict();</script>

OPEN: template- mgc_cb_evo

FIND: 
<if condition="!empty($autocompletion_js)">
        function mgc_cb_evo_autocomplete()
        {
            $("#mgc_cb_evo_input").autocomplete([$autocompletion_js]);
        }
        
        $(document).ready(function(){
            mgc_cb_evo_autocomplete();
        });        
</if>

REPLACE WITH:
<if condition="!empty($autocompletion_js)">
        function mgc_cb_evo_autocomplete()
        {
            jQuery("#mgc_cb_evo_input").autocomplete([$autocompletion_js]);
        }
        
        jQuery(document).ready(function(){
            mgc_cb_evo_autocomplete();
        });        
</if>

OPEN FILE: mgc_cb_evo.js

FIND ALL CASES OF:
$.

REPLACE WITH:
jQuery.

FIND ALL CASES OF:
$(

REPLACE WITH:
jQuery(
Thank you very much for this post !

I am going to add it to the todo list and will do the replacements for the next version.

The only place where there are jquery uses is in the js files and the mgc_cb_evo template.
Reply With Quote
  #3053  
Old 11-18-2008, 11:00 AM
ReCom ReCom is offline
 
Join Date: Mar 2008
Posts: 97
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The following hack adds a 5-seconds delay before the chats are loaded the first time:

In template "mgc_cb_evo", replace:
Code:
      <script type="text/javascript">
         chatbox_refresh('forced');
      </script>
with
Code:
      <script type="text/javascript">
         var chat_timer;
         var chat_first_time = true;
         var old_chatbox_refresh = chatbox_refresh;
         chatbox_refresh = function(t, s)
         {
           var cc = fetch_object('chats');
           if (!s)
           {
             if (cc && chat_first_time) {
               cc.innerHTML = '$vbphrase[mgc_cb_evo_loading]';
               chat_first_time = false;
             }
             if (chat_timer) clearTimeout(chat_timer);
             old_chatbox_refresh(t);
           }
           else {
             if (cc) {
               cc.innerHTML = '<div style="text-align:center" class="smallfont">Loading chats in '+s+' seconds.<br /><a href="#mgc_cb_evo_top" onclick="javascript:chatbox_refresh(\''+t+'\')">Click to load now</a></div>';
               s--;
             }
             chat_timer = setTimeout("chatbox_refresh('"+t+"', "+s+")",1000);
           }
         }
         chatbox_refresh('forced',5);
      </script>
Reply With Quote
  #3054  
Old 11-18-2008, 12:23 PM
BucWiLd's Avatar
BucWiLd BucWiLd is offline
 
Join Date: Jun 2008
Location: pa, usa
Posts: 265
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

i installed and it is working great. can someone tell me where is the option for daily post requirements? i have looked in all the admin panel options and cant find it. forget it i found it.. lol

what does this mean?

Warning : add a sql query for the usergroup where this value is different from 0.
Reply With Quote
  #3055  
Old 11-18-2008, 01:28 PM
aranthorn's Avatar
aranthorn aranthorn is offline
 
Join Date: Jun 2004
Location: Chicago
Posts: 137
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by VBDev View Post
I tested it and it's working perfectly. The usergroup you have problems are specific ones ? I mean not vBulletin default ones.

Can you make a screenshot of one of your command permissions page which you have problems with ?
Usergroup permissions for the "ban" command:


SS taken from a Super Moderator (canned vbulletin usergroup) :
Reply With Quote
  #3056  
Old 11-18-2008, 05:13 PM
Angel-Wings's Avatar
Angel-Wings Angel-Wings is offline
 
Join Date: Sep 2007
Posts: 206
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Do you checked your Webserver / PHP Log why these white pages appear ?
Reply With Quote
  #3057  
Old 11-18-2008, 06:25 PM
AWJunkies AWJunkies is offline
 
Join Date: Jan 2005
Location: San Diego
Posts: 947
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I have a quick question is there any way to import chats from say CYB chat system so people still have their stats? If not I will make one right now.
Reply With Quote
  #3058  
Old 11-18-2008, 06:45 PM
safakuygur's Avatar
safakuygur safakuygur is offline
 
Join Date: Sep 2007
Posts: 193
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

help help help me
BE_WRITTEN, SIDE BY SIDE, GET OUT,

IS WRITTEN SIDE BY SIDE IS GETTING OUT

I SHOWED IN THE PICTURE

HOW DO I CORRECT

ie BE_WRITTEN, GET OUT,
Attached Images
File Type: jpg 18.11.jpg (38.5 KB, 0 views)
Reply With Quote
  #3059  
Old 11-18-2008, 06:52 PM
AWJunkies AWJunkies is offline
 
Join Date: Jan 2005
Location: San Diego
Posts: 947
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by VBDev View Post
Thank you very much for this post !

I am going to add it to the todo list and will do the replacements for the next version.

The only place where there are jquery uses is in the js files and the mgc_cb_evo template.
No problem at all sorry it took so long I was so busy with own projects. I posted this issue while you where gone on vacation. Also I have another thing for you which I think is crucial which also fixes a IE issue with the new fix I posted few posts above.

Code:
OPEN PLUGIN: Product : MGC chatbox Evo->Headinclude add

FIND:
$vbulletin->templatecache['headinclude'] = str_replace($vbulletin->templatecache['headinclude'],$vbulletin->templatecache['headinclude'].fetch_template('mgc_cb_evo_headinclude'),$vbulletin->templatecache['headinclude'])
;

REPLACE WITH:
if ($vbulletin->options['mgc_cb_evo_active'] && $vbulletin->userinfo['mgc_cb_evo_show'] && can_view_mgc_cb_evo())
{$vbulletin->templatecache['headinclude'] = str_replace($vbulletin->templatecache['headinclude'],$vbulletin->templatecache['headinclude'].fetch_template('mgc_cb_evo_headinclude'),$vbulletin->templatecache['headinclude'])
;}

CHANGE: Hook Location 

FROM:
global_start

TO:
parse_templates
This is crucial to me because your loading jquery and the three other files on EVERY page of my site even though 90% of the time it is not used. This allows for a check IF the user can see it and is allowed too and the chatbox is ON it will load the js otherwise it will not appear. This also fixes the IE issue of jQuery null or not an object when you do the above fix for your mod not interfering with other js platforms.

Enjoy
Reply With Quote
  #3060  
Old 11-19-2008, 04:14 AM
AWJunkies AWJunkies is offline
 
Join Date: Jan 2005
Location: San Diego
Posts: 947
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I created an import script for chat messages from CYB Chatbox to MGC Chatbox. VBDEV contact me for it maybe you want to include it in system as well. I just imported over 440,000 messages Without a hitch. Also Not sure if you thought about this but have a stats table to record stats of user messages so you don't have to keep 2.5 million messages and can prune delete and keep the table to set time 1 month 3 months 6 months 1 year whatever and it will prune away messages but keep stats. Let me know if this makes sense all you need to do is add a field in users table to keep a global count in for messages. Have it update every message post or just have a cron that does it or whatever it is your software. It may already be in software I saw a prune thing but not sure how it works.

We used to do contests and have anti spam built in etc for who was in top10 for chats that month

Also not sure if you have this but CYB chatbox when a user was deleted in vB it would NOT delete their chat box messages. Not sure if yours does or not but please have them linked cause the manual check who I deleted whatever and delete using manual SQL can be a pain but again up to you.

Also would be cool to see a chat post limit per usergroup. Say you want to allow registered users to view it but can only post 5 times after which it either does not allow them to view chatbox all together anymore unless they donate/subscribe and or just lock them out from posting more.
Reply With Quote
  #3061  
Old 11-19-2008, 10:46 AM
pedroenf pedroenf is offline
 
Join Date: Jun 2006
Location: Portugal
Posts: 308
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by AWJunkies View Post
No problem at all sorry it took so long I was so busy with own projects. I posted this issue while you where gone on vacation. Also I have another thing for you which I think is crucial which also fixes a IE issue with the new fix I posted few posts above.

Code:
OPEN PLUGIN: Product : MGC chatbox Evo->Headinclude add

FIND:
$vbulletin->templatecache['headinclude'] = str_replace($vbulletin->templatecache['headinclude'],$vbulletin->templatecache['headinclude'].fetch_template('mgc_cb_evo_headinclude'),$vbulletin->templatecache['headinclude'])
;

REPLACE WITH:
if ($vbulletin->options['mgc_cb_evo_active'] && $vbulletin->userinfo['mgc_cb_evo_show'] && can_view_mgc_cb_evo())
{$vbulletin->templatecache['headinclude'] = str_replace($vbulletin->templatecache['headinclude'],$vbulletin->templatecache['headinclude'].fetch_template('mgc_cb_evo_headinclude'),$vbulletin->templatecache['headinclude'])
;}

CHANGE: Hook Location 

FROM:
global_start

TO:
parse_templates
This is crucial to me because your loading jquery and the three other files on EVERY page of my site even though 90% of the time it is not used. This allows for a check IF the user can see it and is allowed too and the chatbox is ON it will load the js otherwise it will not appear. This also fixes the IE issue of jQuery null or not an object when you do the above fix for your mod not interfering with other js platforms.

Enjoy
Quote:
Originally Posted by AWJunkies View Post
Developer please contact me about a fix working perfect for conflicting jS platforums (Prototype,YUI,MooTools).

Below is the link for you to take a look. I have your software all working perfect just wanted to let you know.

http://docs.jquery.com/Using_jQuery_...ther_Libraries

You may be able to give more incite in other places that might need this changed so let me know so I can update it on my end. I think this should by default with your software so your software never conflicts with other platforms but totally up to you.

I just changed what pages I knew I had Prototype or other platforms on so please let me know all places.

Here are instructions:
Code:
OPEN: template- mgc_cb_evo_headinclude

FIND: 
<script type="text/javascript" src="clientscript/mgc_cb_evo_add/js/jquery.blockUI.js"></script>

ADD AFTER: 
<script>var jQuery=jQuery.noConflict();</script>

OPEN: template- mgc_cb_evo

FIND: 
<if condition="!empty($autocompletion_js)">
        function mgc_cb_evo_autocomplete()
        {
            $("#mgc_cb_evo_input").autocomplete([$autocompletion_js]);
        }
        
        $(document).ready(function(){
            mgc_cb_evo_autocomplete();
        });        
</if>

REPLACE WITH:
<if condition="!empty($autocompletion_js)">
        function mgc_cb_evo_autocomplete()
        {
            jQuery("#mgc_cb_evo_input").autocomplete([$autocompletion_js]);
        }
        
        jQuery(document).ready(function(){
            mgc_cb_evo_autocomplete();
        });        
</if>

OPEN FILE: mgc_cb_evo.js

FIND ALL CASES OF:
$.

REPLACE WITH:
jQuery.

FIND ALL CASES OF:
$(

REPLACE WITH:
jQuery(

Did not worked for me. Keeps the IE error and the chats do not load, it remains on Loading......
However i undo only the templates and plugin edits, kept the .js changes and the chat works the same before the changes. Go figure...
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 12:56 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.07965 seconds
  • Memory Usage 2,398KB
  • Queries Executed 26 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (6)bbcode_code
  • (5)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (7)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (16)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (2)postbit_attachment
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete