&binvars
&Binvars Description: Binary valuables are variables that have binary contents, which means not just plain text. Advantages: Doesn’t have an inbuilt size limitation like %vars do. Isn’t limited to a certain range of characters,...
Find discussions and posts across the Forum sections you are allowed to read.
Filter by Forum, author, date, content scope and sort order without exposing restricted discussions.
&Binvars Description: Binary valuables are variables that have binary contents, which means not just plain text. Advantages: Doesn’t have an inbuilt size limitation like %vars do. Isn’t limited to a certain range of characters,...
Custom @windows Description: We’ll use a custom @window to store a list of text lines. Advantages: Has powerful sorting and search options using /filter and other premade $identifiers . Can be saved easily into .txt files for p...
Txt files Description: We’ll use a .txt file to store information in sort of list. Can use to permanently store custom @windows data. Advantages: Unlimited storage space (well, you won’t fill your HDD with this). Has powerful...
Hash Tables Description: Hash tables allow you to efficiently store large amounts of information which can be quickly referenced and retrieved later on. Advantages: Ability to store items by 2 parameters : name and item name. E...
INI Files Description: We’ll use an .ini file to store information in an organized order. It’s useful to use as a permanent storage for hash tables. Advantages: Ability to store items by 2 parameters : section and item name. ...
Tokenized lists Description: Tokenized lists are simple lists that can be used for a limited number of items. We’ll use a %variable that will contain a list of items separated by a character—C. I’ll show as an example a list sepa...
What is IRC? IRC stands for Internet Relay Chat. The global chat. The idea is just like any other chat... webchat, javachat and so on... You choose a nickname and joins a channel (room). But IRC is far more advanced then any other chat...
Common Pitfalls A Tutorial by myggan Table of Contents: * 1. The Art of Debuging * 2. The Importance of Error Checking * 3. Spotting Ambiguous Conditions * 4. Brackets and Braces * 5. Double Events * 6. Timers * 7. Input Events * 8. Matc...
on*:dialog:nicklist:init:*:{ ^when the nicklist opens dll $mdx SetMircVersion $version ^using mdx.dll set mircversion o the version dll $mdx MarkDialog $dname ^with mdx.dll Markdialog dll $mdx SetMircVersion $version dll $mdx MarkDialog...
INTRODUCTION Hash Tables is something that you find within mIRC itself. Theres a few commands that allow you to store data into a file that you can then retreive and use in whatever way you wish. In my personal opionion , hash tables...
Ok in this tutorial I will be covering:- Combos, List views Start: What you need: 1. Mdx 2. mIRC 3. Time Mdx aliases needed: alias mdx { return path-to-mdx/mdx.dll } alias ctl { return path-to-ctl/ctl_gen.mdx } alias bars { retur...
Tutorial by KingTomato What is a hash table? A dictionary in which keys are mapped to array positions by a hash function. Having more than one key map to the same position is called a collision. There are many ways to resolve collision...