Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 2.x > vBulletin 2.x Full Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
jIRC Chat Integration Details »»
jIRC Chat Integration
Version: 1.00, by FleaBag FleaBag is offline
Developer Last Online: Jun 2020 Show Printable Version Email this Page

Version: 2.3.x Rating:
Released: 09-11-2002 Last Update: Never Installs: 66
 
No support by the author.

This hack is very similar to other hacks already released, I know there are a few others out there - I made this for myself so thought I would release it just incase anyone else found it useful. This hack takes into consideration Who's On-line, is controlled by one template, and has less files to upload than a few other chat hacks. All the files you need to run IRC chat from your vBulletin are included in this distribution. This hack is configured to work with HashNet IRC [www.hashnet.org]. HashNet let's you register your username's as well as your channels, protecting it from any misuse. All the information you need for such processes can be found on the HashNet site. If you wish to use a different IRC server, or a channel name other than that of your vBulletin title, edit the '<para name' tags in your chat template [which you'll add in Step 2] of installation...

This distribution includes jIRC version 2.6.0. The original jIRC readme file is included in this zip file for copyright reasons. jIRC is Shareware [and as a result, you receive messages encouraging the admin to register when it is used] - if you like the product, and basically if you want it to work correctly you must register it.

Pricing can be found on the jIRC website [www.jpilot.com].

*Thanks to Jakeman, FireFly, TWT Commish and everyone else at vBulletin.org for the help they've given me with vBulletin hacking to date.*

Please click install if you use this hack!

Show Your Support

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

Comments
  #52  
Old 01-17-2003, 06:36 AM
dbode dbode is offline
 
Join Date: Nov 2002
Posts: 19
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hmmm, I put in the following (this is not MY license key, I just changed the numbers into xxxx)

<param name="LicenseKey" value="XXXXXXXXXX-XXXXXXXXXXXXXXXXXXXXXX-XXXXXXXXXXXXXXXXXXXXXXXXXXX-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXX">

.. but I still have this *Unregistered*Messages...
Reply With Quote
  #53  
Old 01-17-2003, 06:50 AM
lifesourcerec's Avatar
lifesourcerec lifesourcerec is offline
 
Join Date: Jan 2002
Posts: 429
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If it still says that, the key is wrong.
Reply With Quote
  #54  
Old 01-18-2003, 01:07 AM
NoAhBoDy's Avatar
NoAhBoDy NoAhBoDy is offline
 
Join Date: Jan 2002
Location: Winnipeg, MB, Canada, Eh!
Posts: 32
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

My key works and here's my main_chat template:

Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>$bbtitle - $foruminfo[title]</title>
$headinclude
</head>
<body>

<table cellpadding="2" cellspacing="0" border="0" width="95%"  align="center">
<tr>
	<td valign="top">$navbar
	<smallfont>$moderatedby$onlineusers</smallfont></td>
	<td valign="bottom" align="right"><smallfont>$newthreadlink&nbsp;</smallfont></td>
</tr>
</table>

<br>

<!-- jIRC applet -->
<table cellpadding="2" cellspacing="0" border="0" width="100%" align="center">
<tr>
<td align="center" valign="top">
<applet name="jchat" codebase="../jIRC" archive="http://mydomain.com/jirc/jirc_nss.zip" code="Chat.class" width=750 height=450>

<param name="CABBASE" value="http://mydomain.com/jirc/jirc_mss.cab">

<param name="ServerPort" value="6667">
<param name="ServerName1" value="my.ircserver.com">

<param name="Channel1" value="mychannel">
<param name="ChannelPassword" value="mychannelkey">

<param name="AllowURL" value="true">
<param name="AllowIdentd" value="true">

<param name="WelcomeMessage" value="Welcome to my private chat">
<param name="RealName" value="$bbusername">
<param name="NickName" value="$bbusername">
<param name="UserName" value="VB_$bbusername">
<param name="isLimitedServers" value="true">
<param name="isLimitedChannels" value="false">

<param name="IgnoreMOTD" value="true">

<param name="DisplayConfigNick" value="false">
<param name="DisplayConfigNickPass" value="false">
<param name="DisplayConfigChannel" value="true">
<param name="DisplayChannelPass" value="false">
<param name="DisplayConfigRealName" value="false">
<param name="DisplayConfigServer" value="false">
<param name="DisplayConfigPort" value="false">
<param name="DisplayConfigMisc" value="false">

<param name="InitCommands" value="/me says Hola!!">

<param name="BackgroundColor" value="99,132,181">
<param name="TextColor" value="black">
<param name="TextScreenColor" value="white">
<param name="ListTextColor" value="blue">

<param name="TextFontName" value="Arial">
<param name="TextFontSize" value="12">

<param name="LogoBgColor" value="white">
<param name="BorderVsp" value="5">
<param name="DirectStart" value="true">

<param name="FGColor" value="black">

<param name="InputTextColor" value="black">
<param name="InputScreenColor" value="white">
<param name="TitleBackgroundColor" value="black">
<param name="TitleForegroundColor" value="white">

<param name="AliasList" value="/nick=/echo Nick command disabled">

<param name="IgnoreServerMsg" value="true">
<param name="IgnoreModeMsg" value="false">
<param name="AcceptCommands" value="true">

<param name="FieldNameChannel" value="Choose a room:">
<param name="FieldNameConnectNow" value="Connect">
<param name="FieldNameTitleTopic" value="">
<param name="FieldNameConfig" value="Change room">
<param name="DisplayAbout" value="false">

<param name="LicenseKey" value="My license key">

</applet>
</td>
</tr>
</table>
<!-- /jIRC applet -->

</body>
</html>
....hope this helps..
Reply With Quote
  #55  
Old 01-21-2003, 04:32 AM
Grunt Grunt is offline
 
Join Date: Aug 2002
Location: TN
Posts: 118
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

got this working fine..however..
I have it set so that before launching, the users can select their nick. Great, works fine.

But, If a user wants to change their nick while in the channel using /nick..it returns ***echo UNKNOWN COMMAND.

??
Reply With Quote
  #56  
Old 01-21-2003, 04:41 AM
NoAhBoDy's Avatar
NoAhBoDy NoAhBoDy is offline
 
Join Date: Jan 2002
Location: Winnipeg, MB, Canada, Eh!
Posts: 32
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

if you copied my template, remove the following:
Code:
<param name="AliasList" value="/nick=/echo Nick command disabled">
Reply With Quote
  #57  
Old 01-21-2003, 04:52 AM
Grunt Grunt is offline
 
Join Date: Aug 2002
Location: TN
Posts: 118
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thanks!
Reply With Quote
  #58  
Old 03-06-2003, 11:22 PM
Cyricx Cyricx is offline
 
Join Date: Aug 2002
Location: Missouri
Posts: 1,144
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Loaded this up, chat and everything works great, just got a problem in the header area, shows this above the chat.

Warning: Unknown(../vbp_includes.php): failed to create stream: No such file or directory in /home/gof/public_html/global.php(313) : eval()'d code on line 11

Warning: Unknown(): Failed opening '../vbp_includes.php' for inclusion (include_path='.:/usr/lib/php') in /home/gof/public_html/global.php(313) : eval()'d code on line 11

Warning: Unknown(vbs_counter.php): failed to create stream: No such file or directory in /home/gof/public_html/global.php(313) : eval()'d code on line 28

Warning: Unknown(): Failed opening 'vbs_counter.php' for inclusion (include_path='.:/usr/lib/php') in /home/gof/public_html/global.php(313) : eval()'d code on line 28

Any ideas? :ermm:
Reply With Quote
  #59  
Old 03-07-2003, 03:21 AM
FleaBag's Avatar
FleaBag FleaBag is offline
 
Join Date: Dec 2001
Posts: 1,674
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Do you use vBPortal?
Reply With Quote
  #60  
Old 03-07-2003, 06:31 PM
Cyricx Cyricx is offline
 
Join Date: Aug 2002
Location: Missouri
Posts: 1,144
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Aye, I do. Guessing that's a lovely vbportal problem too eh?

[high]* Cyricx heads off to vbportal forums.[/high]
Reply With Quote
  #61  
Old 03-11-2003, 03:48 PM
Cyricx Cyricx is offline
 
Join Date: Aug 2002
Location: Missouri
Posts: 1,144
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Welp, didn't get a peep of help over there lol.

Any ideas on how I can fix that?
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 09:32 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.04664 seconds
  • Memory Usage 2,315KB
  • Queries Executed 25 (?)
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
  • (2)bbcode_code
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (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
  • 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
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete