Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.6 > vBulletin 3.6 Template Modifications
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Vbulletin Java Chat Details »»
Vbulletin Java Chat
Version: 1.00, by MentaL MentaL is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Version: 3.6.0 Rating:
Released: 08-13-2006 Last Update: Never Installs: 20
 
No support by the author.

Hi,

What this does is simply add a link which pops up in a window and connects to your specified irc server via a third party java application. We shall be using the freely distributed pjirc for this modifcation.

Installation
  • Download this file (pjirc) and extract to desktop, rename the folder to something suitable like irc and then upload to your server. (make sure to check the code in the bottom of this post for further customizations and correct dimensions)
  • Go to your admin panel and copy the following code into the header template
Code:
<SCRIPT LANGUAGE="JavaScript">
 
<!-- Begin
 
function popUp(URL) {
 
day = new Date();
 
id = day.getTime();
 
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=640,height=400,left = 256,top = 232');");
 
}
 
// End -->
 
</script>
  • Go to your navbar template and you can either do what i do and replace the calander link with the below code or add it yourself, anyways here is the code (make sure to edit the link to the address of the files you uploaded) and then save.
Code:
<A HREF="javascript:popUp('http://website.com/forum/irc/')">Java IRC</A>


woola, you intergrated a java irc client into your forum without any hassle.


your irc will require customization in order for it to fit so here is my file i named index.html so once that the link is clicked, it opens the window exactly in the perfect dimensions, your welcome to use this code, also included in the pjirc are more heavy versions of the java client but this one in my opinion is perfect, BE SURE TO EDIT THE SERVER AND NAMES TO YOUR LIKING (ONES IN RED)

Code:
<html>
 
<head>
 
<title>Vbulletin Java Chat</title>
 
</head>
 
<body leftmargin="0" topmargin="0">
 
<applet code=IRCApplet.class archive="irc.jar,pixx.jar" width=640 height=400>
 
<param name="CABINETS" value="irc.cab,securedirc.cab,pixx.cab">
 
<param name="nick" value="VBCHAT">
 
<param name="alternatenick" value="VBCHAT???">
 
<param name="fullname" value="Java User">
 
<param name="host" value="irc.deltaanime.net">
 
<param name="gui" value="pixx">
 
<param name="quitmessage" value="Get a chat room for you're own vbulletin message board, visit https://vborg.vbsupport.ru/showthread.php?p=899188#post899188">
 
<param name="asl" value="true">
 
<param name="style:bitmapsmileys" value="true">
 
<param name="style:smiley1" value=":) img/sourire.gif">
 
<param name="style:smiley2" value=":-) img/sourire.gif">
 
<param name="style:smiley3" value=":-D img/content.gif">
 
<param name="style:smiley4" value=":d img/content.gif">
 
<param name="style:smiley5" value=":-O img/OH-2.gif">
 
<param name="style:smiley6" value=":o img/OH-1.gif">
 
<param name="style:smiley7" value=":-P img/langue.gif">
 
<param name="style:smiley8" value=":p img/langue.gif">
 
<param name="style:smiley9" value=";-) img/clin-oeuil.gif">
 
<param name="style:smiley10" value=";) img/clin-oeuil.gif">
 
<param name="style:smiley11" value=":-( img/triste.gif">
 
<param name="style:smiley12" value=":( img/triste.gif">
 
<param name="style:smiley13" value=":-| img/OH-3.gif">
 
<param name="style:smiley14" value=":| img/OH-3.gif">
 
<param name="style:smiley15" value=":'( img/pleure.gif">
 
<param name="style:smiley16" value=":$ img/rouge.gif">
 
<param name="style:smiley17" value=":-$ img/rouge.gif">
 
<param name="style:smiley18" value="(H) img/cool.gif">
 
<param name="style:smiley19" value="(h) img/cool.gif">
 
<param name="style:smiley20" value=":-@ img/enerve1.gif">
 
<param name="style:smiley21" value=":@ img/enerve2.gif">
 
<param name="style:smiley22" value=":-S img/roll-eyes.gif">
 
<param name="style:smiley23" value=":s img/roll-eyes.gif">
 
<param name="style:floatingasl" value="true">
 
<param name="pixx:highlight" value="true">
 
<param name="pixx:highlightnick" value="true">
 
</applet>
 
</body>
 
</html>


MentaL


Show Your Support

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

Comments
  #2  
Old 08-14-2006, 07:40 PM
AdmiralSpock's Avatar
AdmiralSpock AdmiralSpock is offline
 
Join Date: Jul 2006
Location: Earth
Posts: 52
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks! I have this for 3.5.4 and will be installing it when I upgrade to 3.6.0.
Reply With Quote
  #3  
Old 08-14-2006, 08:33 PM
utw-Mephisto utw-Mephisto is offline
 
Join Date: Jan 2005
Posts: 648
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I don't want to hijack your release, but you should maybe mention the original release

http://forum.pjirc.com/viewtopic.php?t=3371

which still works with 3.6 ..
Reply With Quote
  #4  
Old 08-14-2006, 09:09 PM
Kaezul Kaezul is offline
 
Join Date: Mar 2005
Location: USA
Posts: 43
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This mod has been around for ages and was introduced way before this release. You should at least give the original creator credit for the work.
Reply With Quote
  #5  
Old 08-14-2006, 10:18 PM
MentaL's Avatar
MentaL MentaL is offline
 
Join Date: Jan 2003
Posts: 550
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I didnt highjack nobodys release sir



https://vborg.vbsupport.ru/showthread.php?t=107886


All i am doing is creating a popup linking to a page.
Reply With Quote
  #6  
Old 08-27-2006, 09:07 AM
Tonkan Tonkan is offline
 
Join Date: Aug 2006
Posts: 3
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

And how can i make it join one specific channel?
Reply With Quote
  #7  
Old 08-27-2006, 10:35 AM
MentaL's Avatar
MentaL MentaL is offline
 
Join Date: Jan 2003
Posts: 550
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

under

Code:
<param name="pixx:highlightnick" value="true">
add

Code:
<param name="command1" value="join #vbulletin">
replace vbulletin with one of your choice.
Reply With Quote
  #8  
Old 08-30-2006, 04:05 PM
Snake's Avatar
Snake Snake is offline
 
Join Date: Mar 2005
Location: Cleveland, OH
Posts: 3,832
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks for the hack! I'll install it right away...
Reply With Quote
  #9  
Old 08-30-2006, 10:07 PM
topsoftware topsoftware is offline
 
Join Date: Dec 2005
Posts: 39
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

very god work for vb 3.6.0 but how can i crate chanel and public for my forum
thanks
Reply With Quote
  #10  
Old 11-05-2006, 02:28 AM
Mattimus1984 Mattimus1984 is offline
 
Join Date: Sep 2006
Location: California
Posts: 35
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

How do you make it join a chanel with whatever the users's username is?
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 01:31 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.04612 seconds
  • Memory Usage 2,296KB
  • Queries Executed 23 (?)
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
  • (5)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
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (9)postbit
  • (10)postbit_onlinestatus
  • (10)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