Size: 692
Comment: fixed some typos
|
← Revision 4 as of 2013-07-20 16:21:38 ⇥
Size: 774
Comment: minor formatting changes
|
Deletions are marked like this. | Additions are marked like this. |
Line 2: | Line 2: |
---- | |
Line 10: | Line 10: |
---- | '''TODO''': someone check if this still applies to recent mirc versions. |
Line 18: | Line 20: |
{{{ | |
Line 19: | Line 22: |
msg $chan identify *pass* | msg $chan identify *pass* |
Line 21: | Line 24: |
}}} |
mIRC Tips
Charset Problems
Everything works the same in mirc as in other clients apart the char set. mIRC uses iso8859-1 charset so sending non-english letters with default settings will not be posible.
Use this command to fix this problem.
set charset iso8859-1 |
TODO: someone check if this still applies to recent mirc versions.
Auto login script
If you want to automate your login (i.e on your own server) use this script:
- Click Alt+R to open the remote script editor
- Open a new file
- Add this to it:
on *:TEXT:Welcome to the BitlBee gateway!*:&BitlBee: { msg $chan identify *pass* }
- Change *pass* to your password (i.e: ...$chan identify foobar)
- Save
That's it!