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

Reply
 
Thread Tools
Online Status for ICQ, MSN, AIM & Yahoo Details »»
Online Status for ICQ, MSN, AIM & Yahoo
Version: 1.00, by Beermonster Beermonster is offline
Developer Last Online: Sep 2023 Show Printable Version Email this Page

Version: 3.0.3 Rating:
Released: 09-23-2004 Last Update: Never Installs: 63
Supported
 

Quick hack to display your members online status for ICQ, MSN, AIM and Yahoo in their postbit, of cause your members have to fill in their profile for the icon to display.

Time to install: 30 secs

Template edit: Postbit/postbit_legacy

If you use it please click install


Update: I've attached an updated file thanks to COBRAws @ vbhacks.us for making the changes, now you can send the user a message by clicking on their icon.

Replace everything between <! -- Online Status Start --- !> & <! -- Online Status End --- !> with the new code


UPDATE: v3 This update will give you the option in AdminCP/vbulletin options/Display Thread Options (showthread) to quickly change your server address. Thanks to PitchouneN64ngc for the additional code

A list of servers can be found @ www.onlinestatus.org

Show Your Support

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

Comments
  #12  
Old 09-27-2004, 07:28 AM
Beermonster Beermonster is offline
 
Join Date: Dec 2003
Location: England
Posts: 362
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I've attached an updated file thanks to COBRAws @ vbhacks.us for making the changes, now you can send the user a message by clicking on their icon.
Reply With Quote
  #13  
Old 09-27-2004, 10:04 PM
Polo's Avatar
Polo Polo is offline
 
Join Date: Jun 2004
Posts: 893
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Nice, will definely install this one
Reply With Quote
  #14  
Old 10-02-2004, 10:15 AM
mcyates mcyates is offline
 
Join Date: Jan 2003
Location: Middlesbrough, Cleveland
Posts: 798
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Having 4 columns for the online/offline status is too long when users enter all 4 of the instant messages programs. I have tried changing it to 2 columns and two rows but it keeps buggering up the display of the forum, would someone be able to change this code so it will have 2 columns and 2 rows please.

Code:
<! --- Online Status --- !>
<! --- by Beermonster - Edited by COBRAws --- !>
<!--- http://www.onlinestatus.org/ -->
<table width="100%" border="0">
  <tr>
    <if condition="$post['icqicon']">
<td><a href="#" onclick="return imwindow('icq', '$userinfo[userid]', 500, 450)">
<img border=0 src="http://www.foxinus.cz:8085/icq/$post[icq]" alt="<phrase 1="$userinfo[username]">$vbphrase[send_message_via_icq_to_x]</phrase>" border="0" /></a>
</td></if>
    <if condition="$post['msnicon']">
<td><a href="#" onclick="return imwindow('msn', '$userinfo[userid]', 400, 200)">
<img border=0 src="http://www.foxinus.cz:8085/msn/$post[msn]" alt="<phrase 1="$userinfo[username]">$vbphrase[send_message_via_msn_to_x]</phrase>" border="0" /></a>
</if></td>
    <if condition="$post['yahooicon']">
<td><a href="#" onclick="return imwindow('yahoo', '$userinfo[userid]', 400, 200)">
<img border=0 src="http://www.foxinus.cz:8085/yahoo/$post[yahoo]" alt="<phrase 1="$userinfo[username]">$vbphrase[send_message_via_yahoo_to_x]</phrase>" border="0" /></a>
</if></td>
    <if condition="$post['aimicon']">
<td><a href="#" onclick="return imwindow('aim', '$userinfo[userid]', 400, 200)">
<img border=0 src="http://www.foxinus.cz:8085/aim/$post[aim]" alt="<phrase 1="$userinfo[username]">$vbphrase[send_message_via_aim_to_x]</phrase>" border="0" /></a>
</if></td>
  </tr>
</table>
<! --- / Online Status --- !>
Thanks
Reply With Quote
  #15  
Old 10-02-2004, 10:28 AM
hodur hodur is offline
 
Join Date: Jun 2004
Posts: 3
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by mcyates
Having 4 columns for the online/offline status is too long when users enter all 4 of the instant messages programs. I have tried changing it to 2 columns and two rows but it keeps buggering up the display of the forum, would someone be able to change this code so it will have 2 columns and 2 rows please.

Code:
<! --- Online Status --- !>
<! --- by Beermonster - Edited by COBRAws --- !>
<!--- http://www.onlinestatus.org/ -->
<table width="100%" border="0">
  <tr>
    <if condition="$post['icqicon']">
<td><a href="#" onclick="return imwindow('icq', '$userinfo[userid]', 500, 450)">
<img border=0 src="http://www.foxinus.cz:8085/icq/$post[icq]" alt="<phrase 1="$userinfo[username]">$vbphrase[send_message_via_icq_to_x]</phrase>" border="0" /></a>
</td></if>
    <if condition="$post['msnicon']">
<td><a href="#" onclick="return imwindow('msn', '$userinfo[userid]', 400, 200)">
<img border=0 src="http://www.foxinus.cz:8085/msn/$post[msn]" alt="<phrase 1="$userinfo[username]">$vbphrase[send_message_via_msn_to_x]</phrase>" border="0" /></a>
</if></td>
    <if condition="$post['yahooicon']">
<td><a href="#" onclick="return imwindow('yahoo', '$userinfo[userid]', 400, 200)">
<img border=0 src="http://www.foxinus.cz:8085/yahoo/$post[yahoo]" alt="<phrase 1="$userinfo[username]">$vbphrase[send_message_via_yahoo_to_x]</phrase>" border="0" /></a>
</if></td>
    <if condition="$post['aimicon']">
<td><a href="#" onclick="return imwindow('aim', '$userinfo[userid]', 400, 200)">
<img border=0 src="http://www.foxinus.cz:8085/aim/$post[aim]" alt="<phrase 1="$userinfo[username]">$vbphrase[send_message_via_aim_to_x]</phrase>" border="0" /></a>
</if></td>
  </tr>
</table>
<! --- / Online Status --- !>
Thanks
Great Hack, thanks.
[high]* hodur click install[/high]
Reply With Quote
  #16  
Old 10-02-2004, 02:46 PM
Beermonster Beermonster is offline
 
Join Date: Dec 2003
Location: England
Posts: 362
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by mcyates
Having 4 columns for the online/offline status is too long when users enter all 4 of the instant messages programs. I have tried changing it to 2 columns and two rows but it keeps buggering up the display of the forum, would someone be able to change this code so it will have 2 columns and 2 rows please.

Thanks
You could always put it in your posts, I find it a lot neater, see attached picture.

In postbit/postbit_legacy find

Code:
				<if condition="$post['title']"><strong>$post[title]</strong></if>
			</div>

And below add

Code:
<! --- Online Status --- !>
<! --- by Beermonster - Edited by COBRAws --- !>
<!--- http://www.onlinestatus.org/ -->
<table align="right" border="0">
<div valign="top">

  <tr>
    <if condition="$post['icqicon']">
<td><a href="#" onclick="return imwindow('icq', '$userinfo[userid]', 500, 450)">
<img border=0 src="http://mightymichelob.tcworks.net:8080/icq/$post[icq]" alt="<phrase 1="$userinfo[username]">$vbphrase[send_message_via_icq_to_x]</phrase>" border="0" /></a>
</td></if>
    <if condition="$post['msnicon']">
<td><a href="#" onclick="return imwindow('msn', '$userinfo[userid]', 400, 200)">
<img border=0 src="http://mightymichelob.tcworks.net:8080/msn/$post[msn]" alt="<phrase 1="$userinfo[username]">$vbphrase[send_message_via_msn_to_x]</phrase>" border="0" /></a>
</if></td>
    <if condition="$post['yahooicon']">
<td><a href="#" onclick="return imwindow('yahoo', '$userinfo[userid]', 400, 200)">
<img border=0 src="http://mightymichelob.tcworks.net:8080/yahoo/$post[yahoo]" alt="<phrase 1="$userinfo[username]">$vbphrase[send_message_via_yahoo_to_x]</phrase>" border="0" /></a>
</if></td>
    <if condition="$post['aimicon']">
<td><a href="#" onclick="return imwindow('aim', '$userinfo[userid]', 400, 200)">
<img border=0 src="http://mightymichelob.tcworks.net:8080/aim/$post[aim]" alt="<phrase 1="$userinfo[username]">$vbphrase[send_message_via_aim_to_x]</phrase>" border="0" /></a>
</if></td>
  </tr>
</table>
<! --- / Online Status --- !>
I'm also using a different server in the above code and the icons are smaller, but if you want to use the others just change the url back to the original
Reply With Quote
  #17  
Old 10-04-2004, 06:35 PM
shadiguy1 shadiguy1 is offline
 
Join Date: Jul 2004
Location: Delco,Pa
Posts: 146
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

someone Please Let us in on setting up are own STATUS server .
Reply With Quote
  #18  
Old 10-04-2004, 06:37 PM
Beermonster Beermonster is offline
 
Join Date: Dec 2003
Location: England
Posts: 362
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by shadiguy1
someone Please Let us in on setting up are own STATUS server .
Check out www.onlinestatus.org you can get all the info you need
Reply With Quote
  #19  
Old 10-06-2004, 12:22 AM
GamerJunk.net's Avatar
GamerJunk.net GamerJunk.net is offline
 
Join Date: Jan 2004
Posts: 457
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The images just stopped working
Reply With Quote
  #20  
Old 10-06-2004, 03:10 AM
h75's Avatar
h75 h75 is offline
 
Join Date: Sep 2004
Posts: 52
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

what is this?? www.foxinus.cz

Quote:
http://www.foxinus.cz:8085/icq/$post[icq]
Reply With Quote
  #21  
Old 10-06-2004, 05:37 AM
Beermonster Beermonster is offline
 
Join Date: Dec 2003
Location: England
Posts: 362
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by h75
what is this?? www.foxinus.cz
That is the online status server, you can create your own
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 11:47 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05170 seconds
  • Memory Usage 2,319KB
  • 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
  • (4)bbcode_code
  • (5)bbcode_quote
  • (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
  • (3)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