3d chat
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 988
Voodoo chat 1.0
Voc is a stream-chat engine which is designed to work on high-loaded chat-servers. more>>
Voc is a stream-chat engine which is designed to work on high-loaded chat-servers. It is written in PHP, but uses Perl or C++ for Voc-daemon -- the special program to handle multiple user-connections. With Voc you can make a chat that will serve many conversations simultanously. And its html-based, so your chatters can use it from almost any browser.
The Voc-engine includes a lot of features so it will be interested not only for a big chat owners.
Whats so special about Voc-engine?
There are 2 classes of html-chats. Classic-type, with refreshing messages-window, And stream-type.
Refresh-type is known to everybody, so lets think about streams. What is the common way to introduce such functionality? Webmasters make cgi-script (PHP-script, jsp-srcpt, e.t.c) which checks for new messages every second (2,3...) and prints something to the client. Of course, you need one instance of the script for each client. Now calculate how many data-requests you need to process every second... At least two for each client -- get messages, get users-list.
Also dont forget about memory and CPU usage. For instance, if you have PHP-scripts and PHP is compiled as an Apache-module, be ready to spend 5 Mbytes of memory and 0.1-1% of CPU for each client (only for messages-window).Multiple it to number of users online.
Do you still want to use such scripts?
Is there any solutions? I guess, yes -- try Voodoo chat. It uses Perl- or C++-daemon which processes users-requests to a messages list. And you need just one daemon for all clients. This daemon takes approx. 10 Mbytes of memory for 100 users. CPU usage is also small (of course it depends on your CPU, i.e. for 100 users online it is 0.5% of Pentium 4 2.4 Ghz). Do you see the difference now?
Main features:
- Daemon-stream type (recommended)
- Classic-type (with refreshes)
- PHP-stream script (read text above and use this type only when you have less then 20 simultaneous visitors and cannot use daemon-type)
- JavaScript stream-emulation (refreshing hidden frame which just add text to the main message-window)
- Themes-support. You can use one of exisitng designes, or easily create your own
- rooms
- private messages
- ignoring
- you can enable to use bold, italic, underlined messages
- inline images
- personal info-page with photo for registered users
- avatars
- internal mini-mail system
- status (online/offline/not available/dont disturb)
- web-indicator (see example at the left)
- nick & string highlighing for personal messages
- anti-flood
- messages and ban/unban logging
- limits for maximum number of users and maximum number of users from one ip (anti-nick-flooding)
- graphical statistic, example
- admin-zone to manage the chat
- moderator-levels for registered users, so you can give someone permissions to ban/unban users, change rooms-info, edit/delete registered users
<<lessThe Voc-engine includes a lot of features so it will be interested not only for a big chat owners.
Whats so special about Voc-engine?
There are 2 classes of html-chats. Classic-type, with refreshing messages-window, And stream-type.
Refresh-type is known to everybody, so lets think about streams. What is the common way to introduce such functionality? Webmasters make cgi-script (PHP-script, jsp-srcpt, e.t.c) which checks for new messages every second (2,3...) and prints something to the client. Of course, you need one instance of the script for each client. Now calculate how many data-requests you need to process every second... At least two for each client -- get messages, get users-list.
Also dont forget about memory and CPU usage. For instance, if you have PHP-scripts and PHP is compiled as an Apache-module, be ready to spend 5 Mbytes of memory and 0.1-1% of CPU for each client (only for messages-window).Multiple it to number of users online.
Do you still want to use such scripts?
Is there any solutions? I guess, yes -- try Voodoo chat. It uses Perl- or C++-daemon which processes users-requests to a messages list. And you need just one daemon for all clients. This daemon takes approx. 10 Mbytes of memory for 100 users. CPU usage is also small (of course it depends on your CPU, i.e. for 100 users online it is 0.5% of Pentium 4 2.4 Ghz). Do you see the difference now?
Main features:
- Daemon-stream type (recommended)
- Classic-type (with refreshes)
- PHP-stream script (read text above and use this type only when you have less then 20 simultaneous visitors and cannot use daemon-type)
- JavaScript stream-emulation (refreshing hidden frame which just add text to the main message-window)
- Themes-support. You can use one of exisitng designes, or easily create your own
- rooms
- private messages
- ignoring
- you can enable to use bold, italic, underlined messages
- inline images
- personal info-page with photo for registered users
- avatars
- internal mini-mail system
- status (online/offline/not available/dont disturb)
- web-indicator (see example at the left)
- nick & string highlighing for personal messages
- anti-flood
- messages and ban/unban logging
- limits for maximum number of users and maximum number of users from one ip (anti-nick-flooding)
- graphical statistic, example
- admin-zone to manage the chat
- moderator-levels for registered users, so you can give someone permissions to ban/unban users, change rooms-info, edit/delete registered users
Download (0.262MB)
Added: 2006-06-15 License: GPL (GNU General Public License) Price:
1479 downloads
XHR Chat 1.0
XHR Chat is a demonstration type chat script I wrote when experimenting with xmlHttpRequest. more>>
XHR Chat is a demonstration type chat script I wrote when experimenting with xmlHttpRequest. It never refreshes, keeps an infinite post log, and checks for new posts once a second.
XHR Chat will degrade gracefully if the browser doesnt support xmlHttpRequest, just so long it still has javascript enabled.
<<lessXHR Chat will degrade gracefully if the browser doesnt support xmlHttpRequest, just so long it still has javascript enabled.
Download (0.003MB)
Added: 2006-03-20 License: GPL (GNU General Public License) Price:
1326 downloads
Perl Chat 0.1.1
http://perlchat.sourceforge.net more>>
Perl Chat is a project that consists of a client and a server, both written in perl.
The goal of this project is to create a chat server that can be used on smaller networks such as a college campus or a business network.
Both the client and the server are written in Perl, and the client uses the Tk module to generate its GUI.
Installation:
First of all you need a working version of Perl. Preferably 5.6 but 5.005X should also work fine. For versions of Perl Chat < 0.1.0 you will need to compile Perl with Threads. (Keep in mind that Threads are still experimental) I designed this program with Perl 5.6.0 which can be found HERE.
You will need to read the installation instructions to compile it with Threads. I advise anyone who is doing this to install this new version of perl into /usr/local/ so as to not overwrite your old perl. Then by changing the first line of the script you can toggle between the different installs of perl.
<<lessThe goal of this project is to create a chat server that can be used on smaller networks such as a college campus or a business network.
Both the client and the server are written in Perl, and the client uses the Tk module to generate its GUI.
Installation:
First of all you need a working version of Perl. Preferably 5.6 but 5.005X should also work fine. For versions of Perl Chat < 0.1.0 you will need to compile Perl with Threads. (Keep in mind that Threads are still experimental) I designed this program with Perl 5.6.0 which can be found HERE.
You will need to read the installation instructions to compile it with Threads. I advise anyone who is doing this to install this new version of perl into /usr/local/ so as to not overwrite your old perl. Then by changing the first line of the script you can toggle between the different installs of perl.
Download (0.036MB)
Added: 2006-09-19 License: GPL (GNU General Public License) Price:
1135 downloads
Claros Chat 1.0
Claros Chat is a web based (fully Ajax) instant messaging client which is capable of talking with the Jabber protocol. more>>
Claros Chat is finally ready. It is a web based (fully Ajax) instant messaging client which is capable of talking with the Jabber protocol. Claros Chat is well tested with Google Talk and it supports all major browsers such as Internet Explorer, Firefox, Safari, Mozilla.
The project has a minimalistic and an elegant user interface which looks much like a desktop application. Anyone interested in the application can test drive it at http://www.claros.org/chat.
Main features:
- Works with any Jabber server, including Google Talk.
- No setup needed on the client machine, works 100% within the browser, no plugins required.
- It is a 100% Ajax application, with a clean and nice user interface.
- Supports all major browsers.
- It can display user avatars including your own.
- Supports many of the emotions with MSN like smileys.
- All features such as changing status, changing status text, loading buddy list, adding/removing new buddy are all implemented.
- Can chat with as many users as you like.
- Users can set auto away at the preferences screen.
- Much words are useless, youve got to see it yourself, "it is one of the best looking and usefull open source instant messaging applications(or simply the best) in the world". See and believe for yourself. Just try the demo to see.(Login with your own Google username/password)
- You can start your own corporate chat network. Download a Jabber server from http://www.jabber.org and use Claros Chat to chat with your collegues.
- You can connect and chat with MSN, AOL, ICQ, Yahoo chat networks providing that you have your own Jabber server with a suitable gateway installed.
- It is open source and completely free software.
<<lessThe project has a minimalistic and an elegant user interface which looks much like a desktop application. Anyone interested in the application can test drive it at http://www.claros.org/chat.
Main features:
- Works with any Jabber server, including Google Talk.
- No setup needed on the client machine, works 100% within the browser, no plugins required.
- It is a 100% Ajax application, with a clean and nice user interface.
- Supports all major browsers.
- It can display user avatars including your own.
- Supports many of the emotions with MSN like smileys.
- All features such as changing status, changing status text, loading buddy list, adding/removing new buddy are all implemented.
- Can chat with as many users as you like.
- Users can set auto away at the preferences screen.
- Much words are useless, youve got to see it yourself, "it is one of the best looking and usefull open source instant messaging applications(or simply the best) in the world". See and believe for yourself. Just try the demo to see.(Login with your own Google username/password)
- You can start your own corporate chat network. Download a Jabber server from http://www.jabber.org and use Claros Chat to chat with your collegues.
- You can connect and chat with MSN, AOL, ICQ, Yahoo chat networks providing that you have your own Jabber server with a suitable gateway installed.
- It is open source and completely free software.
Download (3.6MB)
Added: 2006-11-21 License: GPL (GNU General Public License) Price:
1139 downloads
Naken Chat 2.12
Naken Chat is a public chat server written in C (originally in Java). more>>
Naken Chat is a public chat server written in C (originally in Java). Naken Chat project allows multiple people to connect to it and talk simultaneously to each other or in private messages.
The goal of Naken Chat is to be as small and fast as possible using the least amount of your computers memory with the most amount of features. The current size of the Naken Chat binary on a Linux box is about 38k after being "stripped".
Ive fully tested this program on FreeBSD, Linux, Solaris, Windows 98 and XP, and MacOSX.
The Naken Chat server can be connected to through many different client programs including telnet, a Java applet, Windows clients, and J2ME Naken Chat Client for mobile phones.
Main features:
- Private channels created by anyone (with channel-ops)
- Channel locking to not allow unwanted visitors in
- Channel squelching to make annoying people in your channel shut up
- Gagging to make annoying users not be able to write to you
- Private messages
- User levels
- Idle users can be knocked offline after an idle period
- Channels are now optional
- Username/Password file so only known people can log in
- Beeps for when someone gets a private messages
- Private message highlighting
- Special Channels
- Main: The main channel.. can also be called channel 0
- Hidden caves: if you go to a channel that has a number and the number is between 1000 and 1999, the channel wont be listed when people type .w to see whos online. This feature is no longer compiled in by default.
- Site Banning
- Sysop (special power) functions
- Cross channel yelling so users in one channel can send a message to people in all the channels
- Hushing Yells so a user wont see any messages that were yelled
- If user types too much too fast they are bumped offline
- Internationalization (so Swedish/Norweigan/Hebrew/Arabic/etc. chars work)
- If you type: .w it will give you only that line number or .w would filter for that string
- Chat Logging
- Ability to hide IPs (for security)
- Sysop hiding
- Time stamping
- Many more features I cant remember at this time.
<<lessThe goal of Naken Chat is to be as small and fast as possible using the least amount of your computers memory with the most amount of features. The current size of the Naken Chat binary on a Linux box is about 38k after being "stripped".
Ive fully tested this program on FreeBSD, Linux, Solaris, Windows 98 and XP, and MacOSX.
The Naken Chat server can be connected to through many different client programs including telnet, a Java applet, Windows clients, and J2ME Naken Chat Client for mobile phones.
Main features:
- Private channels created by anyone (with channel-ops)
- Channel locking to not allow unwanted visitors in
- Channel squelching to make annoying people in your channel shut up
- Gagging to make annoying users not be able to write to you
- Private messages
- User levels
- Idle users can be knocked offline after an idle period
- Channels are now optional
- Username/Password file so only known people can log in
- Beeps for when someone gets a private messages
- Private message highlighting
- Special Channels
- Main: The main channel.. can also be called channel 0
- Hidden caves: if you go to a channel that has a number and the number is between 1000 and 1999, the channel wont be listed when people type .w to see whos online. This feature is no longer compiled in by default.
- Site Banning
- Sysop (special power) functions
- Cross channel yelling so users in one channel can send a message to people in all the channels
- Hushing Yells so a user wont see any messages that were yelled
- If user types too much too fast they are bumped offline
- Internationalization (so Swedish/Norweigan/Hebrew/Arabic/etc. chars work)
- If you type: .w it will give you only that line number or .w would filter for that string
- Chat Logging
- Ability to hide IPs (for security)
- Sysop hiding
- Time stamping
- Many more features I cant remember at this time.
Download (0.026MB)
Added: 2007-06-28 License: Free To Use But Restricted Price:
857 downloads
B-Chat 0.13
B-Chat is a small application which allows you to chat on Battle.net. more>>
B-Chat is a small application which allows you to chat on Battle.net.
It has no fancy GUI interface (yet :-), but I have plans for making it Gnome compliant.
However, at the moment it works pretty much like the regular UNIX telnet client, with the lines that are being sent and received mixed into eachother.
It can make it hard to read at times, but it serves my purpose.
I started work on this client because I wanted a way to chat with my friends on Battle.net while I was on Linux.
I really didnt feel like rebooting to Windows just to run TopazChat or ScumBot (I dont like Wine either :-), so I decided to code my own chat client.
The client is still in its early stages, so its very rough and may be hard to use. You have to supply the name o the Battle.net server that you are going to be connecting to. This will change in the future.
<<lessIt has no fancy GUI interface (yet :-), but I have plans for making it Gnome compliant.
However, at the moment it works pretty much like the regular UNIX telnet client, with the lines that are being sent and received mixed into eachother.
It can make it hard to read at times, but it serves my purpose.
I started work on this client because I wanted a way to chat with my friends on Battle.net while I was on Linux.
I really didnt feel like rebooting to Windows just to run TopazChat or ScumBot (I dont like Wine either :-), so I decided to code my own chat client.
The client is still in its early stages, so its very rough and may be hard to use. You have to supply the name o the Battle.net server that you are going to be connecting to. This will change in the future.
Download (0.006MB)
Added: 2006-09-20 License: GPL (GNU General Public License) Price:
1143 downloads
RobChat 0.4
RobChat is an XML/HTTP chat script. more>>
RobChat is an XML/HTTP chat script. It features multiple users, automatic updates without reloading, IE and Mozilla support, and a "whos online" window.
RobChat has the look and feel of a client-side chat client, but is written entirely in XML/HTTP, Javascript, and PHP.
<<lessRobChat has the look and feel of a client-side chat client, but is written entirely in XML/HTTP, Javascript, and PHP.
Download (0.002MB)
Added: 2005-11-23 License: GPL (GNU General Public License) Price:
1430 downloads
ChaNT 1.0.1
ChaNT is a flexible, powerful, cross-browser and easy to use open source web-based chat system written in PHP and JavaScript. more>>
ChaNT is a flexible, powerful, cross-browser and easy to use open source web-based chat system written in PHP and JavaScript. Support for BBCode, 3D Animated Smileys with a IM like toolbar for formatting your chat messages. This project does not require any browser plugins like Java or Flash. Also it not requires MySQL, all data stored in ordinary files.
ChaNT included privacy features such as traffic encryption(client-server-client) and client side password hashing. It have powerful admin control panel and can integrated with many forums and CMS. ChaNT supports all major browsers such as Internet Explorer, Firefox, Opera, Safari and Mozilla. It has a minimalistic and an elegant user interface which looks and feels a lot like a IM desktop application, since it uses AJAX. ChaNT is very fast, light weight and makes chatting more fun.
You can bookmark this page and return at any time to find the latest ChaNT updates as they`re released.
How does it work?
The ChaNT client side functioning on JavaScript XMLHttpRequest object to asynchronously communicate with the server-side. Server response parsed and used to update the chat window content. By generating the HTML locally within the browser, and only bringing down JavaScript calls and the actual data, AJAX web pages can appear to load relatively quickly since the payload coming down is much smaller in size.
<<lessChaNT included privacy features such as traffic encryption(client-server-client) and client side password hashing. It have powerful admin control panel and can integrated with many forums and CMS. ChaNT supports all major browsers such as Internet Explorer, Firefox, Opera, Safari and Mozilla. It has a minimalistic and an elegant user interface which looks and feels a lot like a IM desktop application, since it uses AJAX. ChaNT is very fast, light weight and makes chatting more fun.
You can bookmark this page and return at any time to find the latest ChaNT updates as they`re released.
How does it work?
The ChaNT client side functioning on JavaScript XMLHttpRequest object to asynchronously communicate with the server-side. Server response parsed and used to update the chat window content. By generating the HTML locally within the browser, and only bringing down JavaScript calls and the actual data, AJAX web pages can appear to load relatively quickly since the payload coming down is much smaller in size.
Download (1.3MB)
Added: 2007-05-01 License: GPL (GNU General Public License) Price:
907 downloads
MOHA Chat 0.1b10
MOHA Chat is a chat solution which comes with a intuitive Web client and can run on most shared hosts. more>>
MOHA Chat is a chat solution which comes with a intuitive Web client and can run on most shared hosts. MOHA Chat consumes fewer resources on the server side and is fast on the client side.
The project uses AJAX to retrieve the chat messages and user status. The client polls the server at regular intervals. It currently supports only one-to-one chatting with the Web client. The Web client encrypts messages using a key unique to the client when sending a message to the server and vice versa.
<<lessThe project uses AJAX to retrieve the chat messages and user status. The client polls the server at regular intervals. It currently supports only one-to-one chatting with the Web client. The Web client encrypts messages using a key unique to the client when sending a message to the server and vice versa.
Download (1.9MB)
Added: 2007-03-07 License: GPL (GNU General Public License) Price:
970 downloads
Other version of MOHA Chat
License:GPL (GNU General Public License)
GtkChat 0.60
GtkChat is GTK+ based Vypress Chat TM clone which uses gtk2-perl bindings. more>>
GtkChat is GTK+ based Vypress Chat TM clone. It uses GTK 2 and its Perl bindings. I tried to make UI simple and clean while maintaining same look as Vypress Chat.
<<less Download (0.049MB)
Added: 2005-07-27 License: GPL (GNU General Public License) Price:
1550 downloads
IoChatto 0.1
IoChatto is a chat client which you can use in the JXTA platform. more>>
IoChatto is a chat client which you can use in the JXTA platform.
Its interface is similar to many IRC chat clients, but you can have presence information for every channel, and its design is fully decentralized.
<<lessIts interface is similar to many IRC chat clients, but you can have presence information for every channel, and its design is fully decentralized.
Download (3.4MB)
Added: 2006-09-19 License: BSD License Price:
1130 downloads
AjaxChat 1.2
AjaxChat is a simple, fast, and customizable chat server that uses Ajax. more>>
AjaxChat is a simple, fast, and customizable chat server that uses Ajax to smoothly refresh and display the chat zone and the nickname zone.
AjaxChat project supports customized CSS stylesheets and plugins.
Online chat is a generic term for what are now mostly known as instant messaging applications-computer programs that enable two-way typing to connect users to each other.
However, there are net dating systems and other online services that do not use these applications to provide chat facilities, e.g., Delphi, often relying on HTTP-based protocols instead. Sometimes these are called a chat room or chat extending the physical metaphors of sites and magazines which many web services exploit.
Today there are many chat rooms, some incorporating instant messaging features without having to install additional chat software. These chatrooms often have friend finders built in.
Some of these systems also provide telephone voice mail access. These are usually known generically as just chat systems.
A chat log is a record of a chat. Sometimes this is put on the web.
The earliest online chat system widely used was probably the Unix talk facility. The earliest one in general use was likely the French Minitel. During the 1980s, online chat was made available on CompuServe and DDial servers, and later on GEnie. In 1988, Internet Relay Chat (IRC) protocol, an instant messaging tool, was developed and became the de-facto standard for online chat.
Enhancements:
- An optimized chat weight, a simplified initialization process, and simplified theme creation.
<<lessAjaxChat project supports customized CSS stylesheets and plugins.
Online chat is a generic term for what are now mostly known as instant messaging applications-computer programs that enable two-way typing to connect users to each other.
However, there are net dating systems and other online services that do not use these applications to provide chat facilities, e.g., Delphi, often relying on HTTP-based protocols instead. Sometimes these are called a chat room or chat extending the physical metaphors of sites and magazines which many web services exploit.
Today there are many chat rooms, some incorporating instant messaging features without having to install additional chat software. These chatrooms often have friend finders built in.
Some of these systems also provide telephone voice mail access. These are usually known generically as just chat systems.
A chat log is a record of a chat. Sometimes this is put on the web.
The earliest online chat system widely used was probably the Unix talk facility. The earliest one in general use was likely the French Minitel. During the 1980s, online chat was made available on CompuServe and DDial servers, and later on GEnie. In 1988, Internet Relay Chat (IRC) protocol, an instant messaging tool, was developed and became the de-facto standard for online chat.
Enhancements:
- An optimized chat weight, a simplified initialization process, and simplified theme creation.
Download (0.22MB)
Added: 2006-10-06 License: BSD License Price:
1115 downloads
Peekko Chat 0.2.9
Peekko Chat is a new Firefox extension that makes every web page a location where people can congregate. more>>
Peekko Chat is a new Firefox extension that makes every web page a location where people can congregate.
Peekko Chat adds a toolbar to Firefox that shows how many people are in that pages chat room and allows you to instantly connect with them.
Installation:
- Install the extension by clicking on the following link using Firefox 1.5.
- Click on the "Options" button in the toolbar and select a set of nicknames to give yourself. If your nickname is taken, it will use one of your alternate nicknames. Note: If you skip this step, you might be given an unfavorable nickname from the nickname generator like "kurblatz18".
- To see how many people are at a given page, click "Connect."
<<lessPeekko Chat adds a toolbar to Firefox that shows how many people are in that pages chat room and allows you to instantly connect with them.
Installation:
- Install the extension by clicking on the following link using Firefox 1.5.
- Click on the "Options" button in the toolbar and select a set of nicknames to give yourself. If your nickname is taken, it will use one of your alternate nicknames. Note: If you skip this step, you might be given an unfavorable nickname from the nickname generator like "kurblatz18".
- To see how many people are at a given page, click "Connect."
Download (0.11MB)
Added: 2006-02-10 License: LGPL (GNU Lesser General Public License) Price:
1355 downloads
ICMP-Chat 0.6
ICMP-Chat is a simple console-based chat that uses ICMP packets for communication. more>>
ICMP-Chat is a simple console-based chat that uses ICMP packets for communication. All the data is encrypted with Rijndael-256 algorithm.
Installation:
Type: make && make install
For solaris type: make solaris && make install
Usage:
Usage: icmpchat [OPTIONS] < host > < nick >
< host > = Host to chat with
< nick > = Your nickname
OPTIONS:
-t < type > = specify icmp type (default ECHO_REPLY)
Example: icmpchat 192.168.1.2 foo
ICMP codes:
[0] Echo Reply
[5] Redirect
[8] Echo Request
[9] Router advertisement
[10] Router solicitation
[13] Timestamp request
[14] Timestamp reply
[15] Information request
[16] Information reply
[17] Adressmask request
[18] Adressmask reply
Enhancements:
- Rewrote from scratch
- Implemented optimized rijndael algorithm
- Implemented sha256 for password hashing
- Implemented ncurses frontend (again)
- Fixed getuid problem so that setting suid flag works now (thanks John)
<<lessInstallation:
Type: make && make install
For solaris type: make solaris && make install
Usage:
Usage: icmpchat [OPTIONS] < host > < nick >
< host > = Host to chat with
< nick > = Your nickname
OPTIONS:
-t < type > = specify icmp type (default ECHO_REPLY)
Example: icmpchat 192.168.1.2 foo
ICMP codes:
[0] Echo Reply
[5] Redirect
[8] Echo Request
[9] Router advertisement
[10] Router solicitation
[13] Timestamp request
[14] Timestamp reply
[15] Information request
[16] Information reply
[17] Adressmask request
[18] Adressmask reply
Enhancements:
- Rewrote from scratch
- Implemented optimized rijndael algorithm
- Implemented sha256 for password hashing
- Implemented ncurses frontend (again)
- Fixed getuid problem so that setting suid flag works now (thanks John)
Download (0.037MB)
Added: 2006-06-16 License: GPL (GNU General Public License) Price:
1229 downloads
XChatOSD 5.19
XChatOSD is a Perl script for X-Chat. more>>
XChatOSD is a Perl script for X-Chat which displays the messages recieved by X-Chat through the xosd library.
Enhancements:
- Added DCC chat messages support
- Added CTCP support
- Added automatic codepage chooser. Codepage setting is now deprecated.
<<lessEnhancements:
- Added DCC chat messages support
- Added CTCP support
- Added automatic codepage chooser. Codepage setting is now deprecated.
Download (0.011MB)
Added: 2005-06-28 License: GPL (GNU General Public License) Price:
1581 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above 3d chat search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed