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
Details »»

Version: , by Christian Christian is offline
Developer Last Online: Feb 2002 Show Printable Version Email this Page

Version: Unknown Rating:
Released: 05-08-2001 Last Update: Never Installs: 22
 
No support by the author.

I could manage to implement the Messege Center from msn.com to vBulletin.
It doesn't work yet like the online indicators for Yahoo or ICQ, but that can perhaps be added by editing the VBS file.

Anyway, it offers the function to access your hotmail account, to create a new one, to download MSN Messenger, to start it and viewing the contacts in real time (without to have to refresh the page).

You can look at it here:

http://www.knowledge-emporium.com/tke/forum/index.php


I'm currently writing the instructions how to install it!


But before I release it I need to know one thing:

If someone has the MSN Messenger NOT installed, please go to our site and tell me if there is a link shown where you can download it!
I don't want to uninstall it just to see if it works!

Show Your Support

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

Comments
  #22  
Old 05-09-2001, 09:53 PM
Sarge
Guest
 
Posts: n/a
Default

This is cool,
But is there anyway that we can get the online names to appear in rows of 4 or 5 next to eachother?

If you have 30 names and all the names are under eachother it would look tore up from the floor up

Just wondering.
Cool hack
Reply With Quote
  #23  
Old 05-09-2001, 09:57 PM
Christian Christian is offline
 
Join Date: Nov 2001
Location: wuerzburg.germany.earth
Posts: 70
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

First of all 30 online contacts is very much!

I never have 30 of my ppl online the same time although I have about 70 in my list!


Then the problem with the tables is that you can't do that in the template!

You would have to edit the VBS script!
But if you find a solution you can tell me!
Reply With Quote
  #24  
Old 05-10-2001, 12:04 PM
Christian Christian is offline
 
Join Date: Nov 2001
Location: wuerzburg.germany.earth
Posts: 70
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Sarge, here is the code which list the users online:

Code:
If I_>0 Then
Dim Z_,ol,nc
Z_=""
ol=0
nc=30
Dim i
i=0
While i<I_ And ol<nc
Dim s
s=H_(i).State
If s AND 2 Then
ol=ol+1
Dim h,AB_
h=" href="""&"vbscript:op("&i&")"""
AB_=fixName(H_(i).FriendlyName,130)
Z_=Z_&"<a"&h&">"&getStateImage(s)&"</a> "&"<a"&h&" title="""
Z_=Z_&"Send an instant message to"&" "&AB_&"."
Z_=Z_&""" class=mclink>"&K_&AB_
Z_=Z_&"</font></a><br>"
End If
i=i+1
Wend
If ol>0 Then
W_="block"
What you could try is to make let this loop run until let's say 10 contacts.
Then make a new loops which runs from 11 to 20, and so on.
Give the class always a different name like mclink1, mclink2, ...
Then you can try if you can create several columns in the table row containing the online contacts in the template, by using clas mclink1 for the first comlumn, mclink2 for the second, and so on.

I think that is the only way to seperate the online users and put them in different tablerows or columns!
Reply With Quote
  #25  
Old 05-10-2001, 12:14 PM
Christian Christian is offline
 
Join Date: Nov 2001
Location: wuerzburg.germany.earth
Posts: 70
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

What I meant with the creating of the classes mclink1 and mclink2 is the following line:

Code:
Z_=Z_&""" class=mclink>"&K_&AB_
But I really can't say if this commands creates this class or calls it!

You have to ask some Visual Basic coders!

They will know what to do in your case!
Reply With Quote
  #26  
Old 05-10-2001, 02:13 PM
Wayne Luke's Avatar
Wayne Luke Wayne Luke is offline
Senior Member
 
Join Date: Jan 2002
Location: Southern California
Posts: 1,694
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I thought about doing this, the thought of redistributing Microsoft's code didn't please me. Especially when it specifically was not released for public distribution and they went to a decent amount of effort to obfuscate it to prevent it from being stolen.
Reply With Quote
  #27  
Old 05-10-2001, 02:14 PM
Johnny
Guest
 
Posts: n/a
Default

tnx a lot for the dutch installation version!

Johnny
Reply With Quote
  #28  
Old 05-10-2001, 02:51 PM
Christian Christian is offline
 
Join Date: Nov 2001
Location: wuerzburg.germany.earth
Posts: 70
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally posted by wluke
I thought about doing this, the thought of redistributing Microsoft's code didn't please me. Especially when it specifically was not released for public distribution and they went to a decent amount of effort to obfuscate it to prevent it from being stolen.
First of all they did not do any effort to prevent it from being stolen!

Second is that it is NO service that runs from their server!

The Message Center does nothing but reflecting the status of your local running program to an internet site!

It would be something different if you would get access to the MSN main server where the online status is stored so that you could display if a user is online in MSN WITHOUT having to start the program! That would be access to their services!

All it does now it showing your own contacts only to you!
Reply With Quote
  #29  
Old 05-11-2001, 10:33 PM
Sarge
Guest
 
Posts: n/a
Default

I removed this hack.

It is a good idea, but it looks like crap (to much wasted space). I will wait for a newer release
Reply With Quote
  #30  
Old 05-11-2001, 11:18 PM
Christian Christian is offline
 
Join Date: Nov 2001
Location: wuerzburg.germany.earth
Posts: 70
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

What exactly do you want to look it like?
Reply With Quote
  #31  
Old 05-12-2001, 12:03 AM
Sarge
Guest
 
Posts: n/a
Default

i dont like how all the names are undereachother.

I had 12 people on the other day and that table was huge.

It would look more sweet if the names were next to eachother and wrapped.

Also if the login boxes were next to eachother also
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:39 AM.


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.06816 seconds
  • Memory Usage 2,299KB
  • 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)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
  • (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
  • (7)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