Xchat

Author: h | 2025-04-24

★★★★☆ (4.6 / 914 reviews)

mindfreaks downloader

Download xchat-common packages for Ubuntu. xchat-common latest versions: 2.8.8. xchat-common architectures: all. xchat-common linux packages: deb tirain - XChat - Google Sites XChat

Download decent freespace

XChat - basic information, download XChat - fileinfo.co

About Xchat Xchat is where you can make a home for your communities and friends. Xchat is where you can make a home for your communities and friends. You can stay close and have fun over text, voice, and video chat.✨Features you might like…💎 Video Chat ◾Up to 1080P high quality and extreme low-latency video chatting.◾ Find Hot Stars listing and pick your favorite one and live talk with them anywhere at any time!💎 Intelligent Recommendation◾We know your preference! Now we can recommend the users you may like based on the users you like or have video calls with.💎 Instant Translation & Break the Language Barriers◾You can meet global people without worrying about language problem.◾Just turn on the translate button to get rid of the language barrier between you and your foreign friends.💎A diversity of gifts◾We have animated gifts, festival gifts and gifts for specific events to show your adoration!Install Xchat now and open your heart to meet new people!You can contact us via [email protected] anytime you like. We are always here for you. Additional APP Information Latest Version 1.0.2 Requires Android Android 5.0+ What's New in the Latest Version 1.0.2 Last updated on Aug 29, 2023 A new sociel app, Xchat is here for you! Xchat Screenshots Download xchat-common packages for Ubuntu. xchat-common latest versions: 2.8.8. xchat-common architectures: all. xchat-common linux packages: deb tirain - XChat - Google Sites XChat Text quicky, etc. Source code is C++ (with MS visual studio project / makefile for xchat) and a 150k mirc script. Supports CBC mode encryption. XChat plugin version runs on a wide variety of unix / linux / macosx machines ( You can browse the online help pages for the mircryption addon: here. The mircryption discussion form is: here. Main DownloadsAddons and ExtrasCompatible Clients and CodeHistory and Change LogComics and HumorRelated PagesCBC Encryption AlgorihmCreditsMain DownloadsAddons and ExtrasCompatible Clients and CodeHistory and Change LogComics and HumorRelated PagesCBC Encryption AlgorihmCreditsMain Downloads Starting with version 1.20.01 mircryption is now released as two zip files, a core package and an extras package. You only need the core package, and you should unpack it into your documents or %APPDATA% directory and load the scripts into mirc; see the readme.txt file in the packages. If you plan to compile the source code yourself (for example for linux use), grab the Extras zip as well: Mircryption Core Zip v1.20.01 - Mar 7, 2011 - The core mircryption script and dll (mIrc users need only this). Mircryption Extras Zip v1.20.01 - Mar 7, 2011 - Includes source code and extra scripts and optional stuff. Mircryption XChat2 Addon - Github source code repository (maintained by Gregor Jehle).

Comments

User4810

About Xchat Xchat is where you can make a home for your communities and friends. Xchat is where you can make a home for your communities and friends. You can stay close and have fun over text, voice, and video chat.✨Features you might like…💎 Video Chat ◾Up to 1080P high quality and extreme low-latency video chatting.◾ Find Hot Stars listing and pick your favorite one and live talk with them anywhere at any time!💎 Intelligent Recommendation◾We know your preference! Now we can recommend the users you may like based on the users you like or have video calls with.💎 Instant Translation & Break the Language Barriers◾You can meet global people without worrying about language problem.◾Just turn on the translate button to get rid of the language barrier between you and your foreign friends.💎A diversity of gifts◾We have animated gifts, festival gifts and gifts for specific events to show your adoration!Install Xchat now and open your heart to meet new people!You can contact us via [email protected] anytime you like. We are always here for you. Additional APP Information Latest Version 1.0.2 Requires Android Android 5.0+ What's New in the Latest Version 1.0.2 Last updated on Aug 29, 2023 A new sociel app, Xchat is here for you! Xchat Screenshots

2025-03-31
User9228

Text quicky, etc. Source code is C++ (with MS visual studio project / makefile for xchat) and a 150k mirc script. Supports CBC mode encryption. XChat plugin version runs on a wide variety of unix / linux / macosx machines ( You can browse the online help pages for the mircryption addon: here. The mircryption discussion form is: here. Main DownloadsAddons and ExtrasCompatible Clients and CodeHistory and Change LogComics and HumorRelated PagesCBC Encryption AlgorihmCreditsMain DownloadsAddons and ExtrasCompatible Clients and CodeHistory and Change LogComics and HumorRelated PagesCBC Encryption AlgorihmCreditsMain Downloads Starting with version 1.20.01 mircryption is now released as two zip files, a core package and an extras package. You only need the core package, and you should unpack it into your documents or %APPDATA% directory and load the scripts into mirc; see the readme.txt file in the packages. If you plan to compile the source code yourself (for example for linux use), grab the Extras zip as well: Mircryption Core Zip v1.20.01 - Mar 7, 2011 - The core mircryption script and dll (mIrc users need only this). Mircryption Extras Zip v1.20.01 - Mar 7, 2011 - Includes source code and extra scripts and optional stuff. Mircryption XChat2 Addon - Github source code repository (maintained by Gregor Jehle).

2025-04-19
User2538

Specific to mIRC. I've tried multiple complete window creation code examples taken from various different tutorials and tried them all to create standalone Windows applications. They worked perfectly. When I use the same code in an mIRC DLL, mIRC crashes. Now I can't say the same thing about what I posted earlier because I didn't test that as a standalone application, so I'll try it out first to confirm that it's not the problem (I'll reply to this thread when I've done this).Threading + mIRC == bad. Instead of spawning a thread you should hook into mIRC's windowproc and do your processing from there to run mIRC's runloop along. Check MSDN on how to either subclass a window or hook into a windowproc.Thanks, I made a quick look-up for 'wndproc hook' and google returned lots of promising results. I suppose I'll find enough information/examples on the subject. Looks like threading is a bit of trouble when mixed with IRC clients. I've had similar problems with Xchat. Hopefully hooking into mIRC's WndProc will save me the trouble.Using "reinterpret_cast" smells fishy in general. Is this your code, or was it copied? You should probably stick to straight C.Why are you passing a string literal as your thread parameter? Seems pointless... reinterpret_cast was part of the copied code. Likewise, the CreateThread() call was copied as is. I guess the author of the code preferred to set the title of the window by passing it to CreateThread().Joined: Oct 2003Posts: 3,918Hoopy froodHoopy froodJoined: Oct 2003Posts: 3,918Thanks, I made a quick look-up for 'wndproc hook' and google returned lots of promising results. I suppose I'll find enough information/examples on the subject. Looks like threading is a bit of trouble when mixed with IRC clients. I've had similar problems with Xchat. Hopefully hooking into mIRC's WndProc will save me the trouble.Note that Tcl4mIRC does this. The source is available in the download, if you want to see how it's done. Beware: Tcl4mIRC also uses threads, but this is for specific threading functionality-- most of the code is run through a single threaded message loop. So ignore the CreateThread call if you do happen to look at the source.- argv[0] on EFnet #mIRC- "Life is a pointer to an integer without a cast"Joined: Mar 2008Posts: 27Ameglian cowAmeglian cowJoined: Mar 2008Posts: 27i was going into similar problem, i used to create the window and then it froze, then i realized it was a threading issue, anyway here is how it worked for me#include #include #include #include #define WinClass _T("UrWinClass")LRESULT WINAPI WinParser(HWND handle, UINT message, WPARAM wParam, LPARAM parameters) { switch (message) { default: return DefWindowProc(handle, message, wParam, parameters); case WM_COMMAND: break; case WM_PAINT: break; case WM_DESTROY: break; case WM_COPYDATA:

2025-03-29
User7049

Your processing from there to run mIRC's runloop along. Check MSDN on how to either subclass a window or hook into a windowproc.Thanks, I made a quick look-up for 'wndproc hook' and google returned lots of promising results. I suppose I'll find enough information/examples on the subject. Looks like threading is a bit of trouble when mixed with IRC clients. I've had similar problems with Xchat. Hopefully hooking into mIRC's WndProc will save me the trouble.Using "reinterpret_cast" smells fishy in general. Is this your code, or was it copied? You should probably stick to straight C.Why are you passing a string literal as your thread parameter? Seems pointless... reinterpret_cast was part of the copied code. Likewise, the CreateThread() call was copied as is. I guess the author of the code preferred to set the title of the window by passing it to CreateThread().Joined: Oct 2003Posts: 3,641Hoopy froodHoopy froodJoined: Oct 2003Posts: 3,641Thanks, I made a quick look-up for 'wndproc hook' and google returned lots of promising results. I suppose I'll find enough information/examples on the subject. Looks like threading is a bit of trouble when mixed with IRC clients. I've had similar problems with Xchat. Hopefully hooking into mIRC's WndProc will save me the trouble.Note that Tcl4mIRC does this. The source is available in the download, if you want to see how it's done. Beware: Tcl4mIRC also uses threads, but this is for specific threading functionality-- most of the code is run through a single threaded message loop. So ignore the CreateThread call if you do happen to look at the source.- argv[0] on EFnet #mIRC- "Life is a pointer to an integer without a cast"Joined: Mar 2008Posts: 27Ameglian cowAmeglian cowJoined: Mar 2008Posts: 27i was going into similar problem, i used to create the window and then it froze, then i realized it was a threading issue, anyway here is how it worked for me#include #include #include #include #define WinClass _T("UrWinClass")LRESULT WINAPI WinParser(HWND handle, UINT message, WPARAM wParam, LPARAM parameters) { switch (message) { default: return DefWindowProc(handle, message, wParam, parameters); case WM_COMMAND: break; case WM_PAINT: break; case WM_DESTROY: break; case WM_COPYDATA: break; } return 0;}class Win : public CWinThread {public: Win() {}; ~Win() {};private: HACCEL Table;public: virtual int Run() { MSG Msg; while (GetMessage(&Msg, NULL, 0, 0)) { if (!TranslateAccelerator(Msg.hwnd, Table, &Msg)) { TranslateMessage(&Msg); DispatchMessage(&Msg); } } return 0; }; virtual BOOL InitInstance() { WNDCLASSEX WinC; WinC.hInstance = NULL; WinC.lpszClassName = WinClass; WinC.lpfnWndProc = WinParser; WinC.style = CS_HREDRAW | CS_VREDRAW; WinC.hIcon = LoadIcon(NULL, IDI_APPLICATION); WinC.hIconSm = LoadIcon(NULL, IDI_APPLICATION); WinC.hCursor = LoadCursor(NULL, IDC_ARROW); WinC.lpszMenuName = NULL; WinC.cbClsExtra = 0; WinC.cbWndExtra = 0; WinC.hbrBackground = (HBRUSH)COLOR_BACKGROUND; WinC.cbSize = sizeof(WNDCLASSEX); RegisterClassEx(&WinC); HWND Handle = CreateWindow(WinClass, _T(""), WS_DISABLED, CW_USEDEFAULT, 0, CW_USEDEFAULT, 0, NULL, NULL, NULL, NULL); if (Handle) { UpdateWindow(Handle); Table = LoadAccelerators(NULL, WinClass); return true; } return false; };};#include "Win.h"Win* x;EXTERN_C int WINAPI UnloadDll(int TimeOut) { //x->ExitInstance(); //delete x; return mIRC->Unload(TimeOut);}EXTERN_C void WINAPI LoadDll(LoadInfo *Load) { Load->Keep = 1; // stay loaded mIRC = new Dll; mIRC->Load(Load->Handle); x = new Win; x->InitInstance();}Func(Start) { x->CreateThread(CREATE_SUSPENDED)

2025-04-04
User4997

Try Out 10 Free Productivity Apps at Donation CoderFree software site Donation Coder challenged its code-savvy users in November to write small, simple programs that help users better manage their time and tasks. The results are in, they're free, and some of them look really darn useful. IMPORTANT: This is a legacy page. It has been preserved on our website for historical reasons, even though it may contain old or outdated information and links. Mircryption is a security addon for a variety of irc clients (primarily mIRC) that encrypts your conversations for secure private communication. It is an open source project that was first hosted in December 2001 on the SourceForge website (original SourceForge webpage is still online here). While mircryption originally began as a single .dll (written in C++) and mIRC script, it now consists of a suite of tools that supports several other clients (including xchat), as well as the psybnc irc bouncer and the eggdrop irc bot program, and provides a wide range of functions. Features: Channel text, Private query windows, DCC Chats, Actions, Topics can all be encrypted. No need to modify the way you work - text is encrypted and decrypted automatically; encryption status of conversations is clear but unobtrusive. All crypto-related algorithms used are taken from published, common, trusted sources. Encryption algorithm is Blowfish (no known vulnerabilities); encryption keys are themselves stored in encrypted form. User-friendly key management routines; menu driven and easy to temporarily disable & re-enable encryption on a channel, send plain

2025-04-20
User3335

HydraIRCFree3.8(10 votes)Free Download for WindowsFree and easy-to-use IRC clientSocial & CommunicationChat & Instant MessagingWindowsWindowsLicense:FreeAllFreeNoNameScript3.9FreemIRC script for those who demand moreDownloadAlternatives to NoNameScriptIs this a good alternative for HydraIRC? Thanks for voting!script for windowsscript freegame chatscript for windows freescriptMiranda IM4.1FreeAdd multiple messaging clients in one simple interfaceDownloadAlternatives to Miranda IMIs this a good alternative for HydraIRC? Thanks for voting!instant messagingim chatmsnmsn for windowsHexChat4.4FreeIt is like a free version of XChat for WindowsDownloadAlternatives to HexChatIs this a good alternative for HydraIRC? Thanks for voting!instant messaging for windows 10IRcap3.9FreeOne of the best scripts for mIRCDownloadAlternatives to IRcapIs this a good alternative for HydraIRC? Thanks for voting!ReddPlanet5FreeReddit client for Windows 10DownloadAlternatives to ReddPlanetIs this a good alternative for HydraIRC? Thanks for voting!redditHome Security Camera5FreeSocial & CommunicationDownloadAlternatives to Home Security CameraIs this a good alternative for HydraIRC? Thanks for voting!security camerahome camerasecurity freecamera for windowsIP Messenger4.2FreeFree LAN messengerDownloadAlternatives to IP MessengerIs this a good alternative for HydraIRC? Thanks for voting!Messenger Free For Windowsmessenger for windows 10communication for windows freesocial for windowscommunication for windowsIP Cam Soft Basic3.3FreeIP Cam Soft Basic software allows you to remotely view and control your IP cameras, DVRs or Network Video Recorders.DownloadAlternatives to IP Cam Soft BasicIs this a good alternative for HydraIRC? Thanks for voting!Video Camera For WindowsRecorder For Windows 10social for windows freecamPidgin4FreeMulti-protocol instant messaging for everyoneDownloadAlternatives to PidginIs this a good alternative for HydraIRC? Thanks for voting!yahoo for windows 7voice call for windowsfile transfer for windowsmsn for windowsMicrosoft Teams3.8FreeManages a remote work team.DownloadAlternatives to Microsoft TeamsIs this a good alternative for HydraIRC? Thanks for voting!video chat for windows 10meeting for android freeinstant messaging for windows 10microsoft office for windows 10messagingZoom Meetings4.3FreeA massively popular video conferencing applicationDownloadAlternatives to Zoom MeetingsIs this a good alternative for HydraIRC? Thanks for voting!video chat for windows 7messaging app for windows 7productivity freecollaboration for androidSpark3.4FreeFree Streamlined Email Application for Personal ComputersDownloadAlternatives to SparkIs this a good alternative for HydraIRC? Thanks for voting!Free Mailcommunicationim chatcommunication freeemailTelegram4.3FreeTelegram for Windows: A powerful, highly functional chatting applicationDownloadAlternatives to TelegramIs this a good alternative for HydraIRC? Thanks for voting!privacy for androidsnapchatgroup messaging for iphoneprivacyHangouts Notificator4.3FreeFor a Convenient HangoutDownloadAlternatives to Hangouts

2025-04-13

Add Comment