Jump to content

List in one package of all the DLL's Required

28 files

  1. This is DCX version 3.1+ & requires mIRC v7.45+

    Dialog Control eXtensions for mIRC
    Support forum: None... Pre-Built dll's: https://github.com/twig/dcxdll/releases
    This is DCX version 3.1+ & requires mIRC v7.45+
    How to compile
    1: Install Microsoft Visual Studio 2022, make sure you install the latest SDK as well as all the C++ desktop stuff
    2: Clone the git for dcxdll
    3: Clone the git for Detours link
    4: Clone the git for GSL link
    5: Install mIRC somewhere for debugging the dll, this should be a special install just for debugging.
    6: Install PHP NTS build link this is only needed to build the docs.
    7: Edit dcx.props & change
    <mIRCDir> - to point to the previously mentioned mIRC install <PHPDir> - to point to the PHP install <DetoursDir> - to point to the Detours dir <GSLDir> - to point to the GSL dir
    8: Compile Detours libs
    9: Compile DCX

    0 downloads

       (0 reviews)

    0 comments

    Submitted

  2. JavaScript4mIRC

    JS4mIRC is the minimalist's interpreter language binding. It gives the scripter the ability to load Javascript code as well as embed it directly into mIRC script files. It uses the same JavaScript engine used by Firefox, written in C, and is not only fast but very lightweight-- the entire JS4mIRC interpreter and binding package is less than 1MB. The language may not be fully loaded like Python, Ruby or Tcl, but it's great for fast XML or text processing. This makes it great when you want the speed boost of a bytecode compiled language without the extra memory footprint of a full standard library or installed dependencies.

    0 downloads

       (0 reviews)

    0 comments

    Submitted

  3. mIRC.ini Unleashed

    An HTML formatted explanation of all the options stored in mirc.ini.

    0 downloads

       (0 reviews)

    0 comments

    Submitted

  4. Popups.dll

    Dll used to create custom popup menus in mirc. Includes help file.

    0 downloads

       (0 reviews)

    0 comments

    Submitted

  5. Color Selector

    Color Selector is a text color editor for mIRC. You can use the RGB editor to edit the colors the way you want, or select a color from the quick color picker located to the right of the dialog. You can also use this when making addons to easily pick the color you desire, and quickly clipboard its RGB value to paste into your addon.

    0 downloads

       (0 reviews)

    0 comments

    Submitted

  6. mSONG

    This is another msn personal message changer (msn song).
    Support msn icons such as music/office/game
    written on c, so easy to use .

    0 downloads

       (0 reviews)

    0 comments

    Submitted

  7. No Instant Crash DLL

    What is No Instant Crash?

    Instant crash is basically a DLL that prevents mIRC from crashing instantly.

    How is this done?

    When mIRC first loads the DLL, we inject our exception filter at the top level thread, which of course replaces mIRC's exception filter as well. When a crash is triggered our exception filter is triggered, and thus we now have full control of mIRC's message UI. And so we run it like mIRC would.

    Usage:
    1) Place the DLL(s) in your $mIRCdir
    2) load -rs NoInstaCrash.mrc

    That's all there is to it. You are free to grab the contents of the .mrc script and put them in your own script, or modify them.

    There are two DLLs. NoInstantCrash.dll, and CrashMe.dll. CrashMe.dll is a DLL that crashes mIRC when you load it, so it's provided as a means to test NoInstantCrash.

    0 downloads

       (0 reviews)

    0 comments

    Submitted

  8. Stealth (mIRC Version Canceler) DLL

    This DLL will cancel mIRC's CTCP Version reply, so the scripter can replace it with is or her own. It does not use sockets, so it will work with SSL and Non-SSL connections. The DLL does not need to be loaded 24/7, it only needs to be called on start and it will be unloaded afterwards.

    0 downloads

       (0 reviews)

    0 comments

    Submitted

  9. super small screenshot dll

    Allows you to take a screenshot of the desktop in varying quality

    0 downloads

       (0 reviews)

    0 comments

    Submitted

  10. GetWebFile.dll

    This is much faster and more efficient than using mIRC sockets.

    Use:


    * Extract the zip file to your mircdir ( //echo -a $mircdir )
    * Type /load -rs GetWebFile.mrc
    * Try one of the examples
    * /getmycarddeck (Will download card images)
    * /getmyjokes (Will echo a Joke)



    Example Scripts:

    Example 1 Demonstrates how you can quickly download all the pictures needed for a script by downloading the images for a deck of cards.

    Example 2 Demonstrates how you can use this dll instead of sockets to copy a web page to a file and parse the information.

    Syntax $GetWebFile(http://full/path/to/filefilename.ext,Xestinationdirectoryincludingfilename.ext)
    ;**Note** that this dll will not create the destination directory for you.
    ;If the directory doesn't exist the transfer will fail!
    alias GetWebFile {
    if ($dll($GWFLocation,GetWebFile,$1 $2)) return 1
    else return 0
    }
    ;Syntax $GetWebHeader( http://full/path/to/filefilename.ext,Xestinationdirectoryincludingfilename.ext)
    alias GetWebHeader {
    if ($dll($GWFLocation,GetWebHeader,$1 $2)) return 1
    else return 0
    }
    ;*
    ;Edit this alias to reflect the location of GetWebFile.dll
    alias GWFLocation return $qt($+($mircdir,GetWebFile.dll))

    0 downloads

       (0 reviews)

    0 comments

    Submitted

  11. Spaces.dll for mirc 7.*

    It's a known fact that the way mIRC handles spaces in scripts is not exactly perfect; double consecutive spaces get lost when calling commands and tokenizing text strings. This has its good sides, but definitely also its bad sides: in order to echo a string with multiple consecutive spaces, one has to use chr(160) as fake space (which is not in all fonts), or use for example pairs of bold characters - did you know that if you put bold characters between the spaces, mIRC has to print the spaces to the screen one by one? I won't even get into the amount of ugliness you have to use in order to send commands to the server without loss of spaces, or get the unmodified text from an editbox in "on INPUT" events.

    This DLL offers a somewhat neater solution to these problems. It allows you to echo text to the screen, send commands to the IRC server and DCC Chat windows, and get the original text in "on INPUT" events - all while preserving double consecutive spaces. It could be used by people who want to give mIRC their own look (think theme scripts!) or simply align text properly. Along with mIRC's own $rawmsg identifier and regex support, this DLL should allow you to do pretty much everything related to text input and output with a script, without the disadvantage of losing spaces just because you're using a script.

    0 downloads

       (0 reviews)

    0 comments

    Updated

  12. hDock.dll

    dock dlgs and @windows in toolbar/switchbar/treebar and $tip()
    mirc 7+

    0 downloads

       (0 reviews)

    0 comments

    Submitted

  13. rcyf.dll

    DLL that pops up the mIRC popup menu at specified coordinates.

    0 downloads

       (0 reviews)

    0 comments

    Submitted

  14. DCX.dll mirc v6-

    This DLL lets you add new controls to mIRC dialogs as well as change other features like the visual style, position etc. For use with mIRC v6.35

    Help file located at http://dcx.tg007.net

    0 downloads

       (0 reviews)

    0 comments

    Submitted

  15. DCX.dll mIRC v7+ Build 1111

    Latest dcx dev build 18

    [general]
    added check for directx sdk version when compiling with directx enabled.



    added /xdid -z [NAME] [ID] command that updates the horizontal scrollbar
    should only be called after all items are added & isn't needed after a call to /xdid -A

    [webctrl]
    fixed some bugs around the use of TCHAR strings instead of BSTR ones. (no more RPC exceptions)
    changed the object destructor to call WebBrowser2->Quit() before Release()
    added $xdid().statusbar which returns $true if the statusbar is enabled or $false otherwise.
    added $xdid().statustext which gets the statusbars contents.
    added /xdid -m [DNAME] [ID] [+FLAGS] [+MASK] (URL) this does the same as /xdid -n but allows setting some flags too.
    [+FLAGS] can be any combination of
    h - Disable adding url to history
    r - Disables reading url from cache.
    w - Disables adding this url to cache.
    a - Enabled Auto Search when url fails.
    e - Forces url to be opened in the Restricted Zone.
    m - Enabled Popup Manager.
    u - Disabled downloads.
    x - Enable ActiveX Installing (You will still be prompted for allow/disallow)
    b - toggle address bar on/off
    f - toggle fullscreen on/off
    s - toggle statusbar on/off
    [+MASK] is used to set the flags on or off /xdid -m dialog +bf +b will turn the address bar on, & disable fullscreen.
    (URL) is optional, if not supplied then you can use the command to just set flags.

    [listview]
    changed /xdid -Z to work on any view not just report (needs testing)

    For use with mIRC v7 +

    Help file located @ http://dcx.tg007.net

    0 downloads

       (0 reviews)

    0 comments

    Submitted

  16. DCX.dll mIRC v7+ Build 1086

    For people having trouble with the latest DCX building. If you are having problems with black statusbar or icon issues, you should use this version.

    0 downloads

       (0 reviews)

    0 comments

    Submitted

  17. mSLDev

    mSLDev is a free, state-of-the-art, integrated development environment for mSL specifically designed for mSL scripters.


    mSLDev was designed from the ground up to provide mSL scripters all the utilities they need to efficiently build error-free and well-designed code. mSLDev comes with powerful features like real-time syntax checking and error detection, syntax highlighting, auto-complete, GUI designer, and much more.

    Core Features

    Live Syncing
    Syntax Coloring
    Auto-Complete & Calltips
    Real-Time Error Detection
    Code folding

    0 downloads

       (0 reviews)

    0 comments

    Submitted

  18. imgmirc.dll v0.29 beta

    This dll ads emoticons to mirc. This version is a beta version built for mirc 7+

    0 downloads

       (0 reviews)

    0 comments

    Submitted

  19. mIRC SSL

    openssl dll's needed by mIRC to connect to irc via ssl. These are version 1.0.1g so not affected by the heartbleed bug. Compiled using Visual Studio 2012 on Windows 7.

    0 downloads

       (0 reviews)

    0 comments

    Submitted

  20. Dll_Package

    this is just some mirc dlls with the aliases already coded to them making this easier on coders for all networks who don't want to take the time to manually code each aliases so nothing over fantastic this time but every little helps i hope you enjoy this and i hope it helps you

    0 downloads

       (0 reviews)

    0 comments

    Submitted

  21. msn-ppupdater-final.mrc

    This passport updater is the final MSN Chat passport updater to be released.

    It still works as expected, and is much quicker than it used to be

    It CAN grab PassportTicket and PassportProfile (although Windows Live ID no longer contains a PassportProfile).
    It can't grab your MSNRegCookie, SubscriberInfo, or UserRole as the relevant servers are no longer available.

    Please note: the PassportTicket and PassportProfile will only work at chat.msn.com!
    IRC7 has full GateKeeperPassport support, but requires a different set of tickets, due to the way that Windows Live ID now works.

    Good luck
    ~JD

    0 downloads

       (0 reviews)

    0 comments

    Submitted

  22. mirc_ss.dll

    mIRC DLL used to create screenshots

    use: dll mirc_ss.dll takess 099 filenamehere

    099 is quality. up to 100

    *Note does not work with mIRC version 7.64

    0 downloads

       (0 reviews)

    0 comments

    Submitted

  23. spotifydll

    Returns the currently playing song in Spotify, and more

    0 downloads

       (0 reviews)

    0 comments

    Updated

  24. imgmirc.dll v0.29 beta

    This dll ads emoticons to mirc. This version is a beta version built for mirc 7+

    0 downloads

       (0 reviews)

    0 comments

    Updated

  25. DCX.dll mIRC v7+ Build 1120

    This is not the lates build (the latest build 2.0.151 has several bugs), but is the last optimal and non-bugs build.

    Changes since 1117

    [general]
    moved the include for map's to defines.h
    bumped dev ver to 23

    [dialog][control][window]
    moved the parseCursorFlags() & parseCursorType() functions to the window class from control & dialog.

    [stacker]
    added C++11 version of clearImageList()

    [misc]
    fixed issue with TGetWindowText() dropping the last char.

    [dialog]
    changed getDialogByName() to not use a const_cast any more.

    [listview]
    changed CreatePbar() to not use a const_cast any more.

    [tstring]
    changed i_remove() to only use one loop.
    removed some commented code.
    changed m_savedtotaltoks,m_savedpos, & m_savedcurrenttok & m_pWString vars to be mutable, const_cast's are no longer needed.
    changed left() to simply call mid(0,n)

    0 downloads

       (0 reviews)

    0 comments

    Updated


×
×
  • Create New...