Simple Inputs (to make IRC life easier)
mIRC Code
+ 0 likes
Please Register to submit score.
| Average Score | 0.0 (of 0 scores) |
| Date Added | Dec 30, 2008 |
| Last Updated | Dec 31, 2008 |
| Tags | channel code input inputs mode modes script simple snippet |
Introduction
mIRC Snippet:
Simple Inputs (to make IRC life easier)
Posted on Dec 30, 2008 6:51 pm
Posted on Dec 30, 2008 6:51 pm
Inputs ^.^
mIRC Snippet:
Simple Inputs (to make IRC life easier)
Posted on Dec 30, 2008 7:14 pm
Posted on Dec 30, 2008 7:14 pm
well. this is just a personal thing but, i like using ! more than . it just looks a little better to me.
mIRC Snippet:
Simple Inputs (to make IRC life easier)
Posted on Dec 30, 2008 8:36 pm
Posted on Dec 30, 2008 8:36 pm
I think popups are more efficient, but great job!
mIRC Snippet:
Simple Inputs (to make IRC life easier)
Posted on Dec 30, 2008 10:33 pm
Posted on Dec 30, 2008 10:33 pm
maybe add
.help
and list available commands and what they do
for those who dont script
.help
and list available commands and what they do
for those who dont script
mIRC Snippet:
Simple Inputs (to make IRC life easier)
Posted on Dec 30, 2008 10:49 pm
Posted on Dec 30, 2008 10:49 pm
yeah that is always a plus :)
mIRC Snippet:
Simple Inputs (to make IRC life easier)
Posted on Dec 31, 2008 8:07 am
Posted on Dec 31, 2008 8:07 am
| Code: |
| if ($1 == .mlock) { /cs set $chan $2- } |
You forgot to put mlock in it
Should be
| Code: |
| if ($1 == .mlock) { /cs set $chan mlock $2- } |
Also maybe add a check if $ctrlenter then to return
mIRC Snippet:
Simple Inputs (to make IRC life easier)
Posted on Dec 31, 2008 10:37 am
Posted on Dec 31, 2008 10:37 am
Updated with all your suggestions and added a topiclock option in there.
mIRC Snippet:
Simple Inputs (to make IRC life easier)
Posted on Dec 31, 2008 11:19 am
Posted on Dec 31, 2008 11:19 am
The help option has command breaks in it, so each | will initiate a new command, you will need "echo -a" before each new line.
mIRC Snippet:
Simple Inputs (to make IRC life easier)
Posted on Dec 31, 2008 11:36 am
Posted on Dec 31, 2008 11:36 am
Fix'd.
mIRC Snippet:
Simple Inputs (to make IRC life easier)
Posted on Jan 5, 2009 12:23 am
Posted on Jan 5, 2009 12:23 am
if ($1 == .h) { /mode $chan +h $2 }
if ($1 == .dh) { /mode $chan -h $2 }
if ($1 == .o) { /mode $chan +o $2 }
etc.
On all of these you can clean up the code by removing the /.
if ($1 == .h) { mode $chan +h $2 }
if ($1 == .dh) { mode $chan -h $2 }
if ($1 == .o) { mode $chan +o $2 }
if ($1 == .dh) { /mode $chan -h $2 }
if ($1 == .o) { /mode $chan +o $2 }
etc.
On all of these you can clean up the code by removing the /.
if ($1 == .h) { mode $chan +h $2 }
if ($1 == .dh) { mode $chan -h $2 }
if ($1 == .o) { mode $chan +o $2 }
mIRC Snippet:
Simple Inputs (to make IRC life easier)
Posted on Jan 5, 2009 6:31 am
Posted on Jan 5, 2009 6:31 am
I know, but I prefer using the / for some unknown reason.
mIRC Snippet:
Simple Inputs (to make IRC life easier)
Posted on Jun 15, 2009 8:12 pm
Posted on Jun 15, 2009 8:12 pm
/me despises / and {} but thats just me. good job dude. tho i like dailogs better.









