UTUCS.com-Admin

UTUCS.com-Admin

Joined
Jan 04, 2004
Occupation
UTUCS.com (IRC)
Location
Tucson, AZ (United States)
Website
Interests
Programming

Activity Stream

UTUCS.com-Admin commented on a Page, Auto Identify  -  May 19, 2004

Some networks don\'t have you identify the same way. Most use NickServ, while some (like UnderNet & QuakeNet) use X and Q. You should use an if check to see if the nick Q is online, and check if it\'s an IRCop (raw 311 I believe). Then send your AUTH command. Otherwise, with X, you check it the same way. X should be cservice@* probably, from what I\'d guess. You also should use a %username and %password variable: var %username = MYUSERNAME | var %password = MYPASSWORD. %username will be the Q/X AUTH username.

 Respond  
UTUCS.com-Admin commented on a Page, MBan  -  May 10, 2004

You should actually use the (edit) function of this web site and edit it.

 Respond  
UTUCS.com-Admin commented on a Page, Kick/ban if bold, underlined, or color is used  -  May 02, 2004

If you want to make it easier with a non-permanent ban, use this. Note that %mins is the minutes until the ban is removed (NOT seconds): on $@:text:/||/:#:{ var %mins = 15 | var %cnt = $calc(%mins 60) | if $nick isreg $chan { hinc -m col $nick | if $hget(col,$nick) == 1 { msg # 0,1This is the first and only warning $nick $+ , do not use colours, underline or bold in this channel. Next time you will be banned. } | elseif $hget(col,$nick) == 2 { ban -u $+ %cnt $chan $nick You were warned | hdel col $nick } } }

 Respond  
UTUCS.com-Admin commented on a Page, Super Simple ON Input Remote  -  Apr 23, 2004

This works with the latest version of Anope too, right?

 Respond  
UTUCS.com-Admin commented on a Page, Remote Control Message Operating  -  Apr 16, 2004

Also, use a wildcard. The user may have a different access level. And also why not use $istok() to make it unlimited nicks: on :text:!say :*: { var %nicks = nick1,nick2,nick3 | if ($istok(%nicks,$nick,44)) { msg #bravofleet $2- } }

 Respond  
UTUCS.com-Admin commented on a Page, Remote Control Message Operating  -  Apr 16, 2004

Yes. That is an extra else. Since you do not need it, it is totally useless. mIRC will just halt. You don\'t even need else { halt } if you were going to put else there. Taking out the else { } will work fine, and will not make any modification to the script. This looks like a good script, except with when you used the 30 words. $2- will contain the whole thing. And $2- is much easier than putting $2 $3 $4 $5 $6 $7 $8 $9 $10 $11 $12 $13 $14 $15 $16 $17 $18 $19 $20 $21 $22 $23 $24 $25 $26 $27 $28 $29 $30. It is a waste of time to put that many. I\'d rather put $2- when you can have unlimited words, as you updated it. That is probably what you did, $2 $3 $4 $5 $6 $7 $8 $9 $10 $11 $12 $13 $14 $15 $16 $17 $18 $19 $20 $21 $22 $23 $24 $25 $26 $27 $28 $29 $30, right?

 Respond  
UTUCS.com-Admin commented on a mIRC Addon, SB-FTP v1.01  -  Apr 16, 2004

And I guess that was another long comment.

 Respond  
UTUCS.com-Admin commented on a mIRC Addon, SB-FTP v1.01  -  Apr 16, 2004

This is a great script. I\'d recommend this rather than any old FTP client. You can use this when you don\'t want to open your FTP client. Like me, sometimes I don\'t want to open my FTP client, WS_FTP. This is a great client for when you\'re on a dial-up and can\'t get an FTP application. I highly recommend it as one of Hawkee.com\'s top scripts. There probably wouldn\'t be a better FTP client made out of mIRC. I may be wrong, but this is probably the first FTP client out of mIRC. Great knowledge of UNIX if you are able to make an FTP client. At least I run this every day, so I\'m able to remember the Linux/shell commands, since our server runs on Red Hat Linux 9, soon Red Hat Enterprise Linux 3.0 AS. I must say, though, that this is a must-have script for portable computers like laptops.

 Respond  
UTUCS.com-Admin commented on a Page, /halt Demonstration  -  Apr 13, 2004

X-FILE [banned]

 Respond  
UTUCS.com-Admin commented on a Page, /halt Demonstration  -  Apr 07, 2004

I just searched for \"halt\" on the snippets page, and only found this. Point me to the URL of another /halt demonstration.

 Respond  
UTUCS.com-Admin commented on a Page, /halt Demonstration  -  Apr 07, 2004

I never saw anything that\'s a /halt demonstration, ever.

 Respond  
UTUCS.com-Admin created a Page  -  Apr 05, 2004
251 

This snippet is a short alias that shows you a little about /halt. I have tested it, with just /haltdem, and no action. It doesn't use an else statement, which most of you will probably do.

UTUCS.com-Admin commented on a Page, Nick Check  -  Mar 16, 2004

Mistake fixed, please disregard the previous message.

 Respond  
UTUCS.com-Admin commented on a Page, Bot !mass* commands for ops  -  Mar 16, 2004

I really like this script, great script! I don\'t even know how to do this. You sure are smarter than me when it comes to mIRC scripting!

 Respond  
UTUCS.com-Admin commented on a Page, !8ball  -  Mar 14, 2004

Shouldn\'t ON :TEST:!8ball:#: { be ON :TEXT:!8ball:#: {?

 Respond  
UTUCS.com-Admin commented on a Page, Very Simple Away System  -  Mar 08, 2004

| /set %away3 %away2 | /set %away2 %away1 | <- What\'s the point of those?

 Respond  
UTUCS.com-Admin commented on a Page, Auto join if kicked  -  Mar 07, 2004

You can do this in the mIRC options (Alt+O).

 Respond  
UTUCS.com-Admin commented on a mIRC Script, Onotice Window  -  Mar 06, 2004

/notice @#help = /onotice, right? /notice +#help = voice notice, right?

 Respond  
UTUCS.com-Admin commented on a Page, Time  -  Feb 28, 2004

}

 Respond  
UTUCS.com-Admin commented on a Page, Time  -  Feb 28, 2004

else {

 Respond  
UTUCS.com-Admin commented on a Page, auto ident  -  Feb 28, 2004

else {

 Respond  
UTUCS.com-Admin commented on a Page, Time  -  Feb 28, 2004

ON :TEXT:!time::%country = United States | %place = Tucson, Arizona | /msg $chan Time in %country ( $+ %place $+ ) is: $asctime <- Easier one to configure

 Respond  
UTUCS.com-Admin commented on a mIRC Script, ZappaScript  -  Feb 28, 2004

This is awful. It has a thing that says the real words (which I\'m not putting them) of F*** You.

 Respond  
UTUCS.com-Admin commented on a Page, Alias Warn v2.0  -  Feb 28, 2004

Make sure you have remote on (/remote on). If that doesn\'t work, I don\'t know what to tell you.

 Respond  
UTUCS.com-Admin commented on a Page, Time Dialog  -  Feb 27, 2004

Are you trying to mess it up? ok is what it is supposed to say, not okay!

 Respond  
UTUCS.com-Admin commented on a Page, Clone scanner and kicker  -  Feb 24, 2004

Also, you could\'ve put ON @*:JOIN:#:, instead of that extra if ($me isop $chan) check.

 Respond  
UTUCS.com-Admin created a Page  -  Feb 24, 2004
375 

This is a time dialog. Use /time to load it up, and to get to TimeGet right away, type /timeget. To see a time of yours in a future version, just ask me in the comments system! Tested to work with mIRC v6.03.

UTUCS.com-Admin commented on a Page, On Devoice  -  Feb 24, 2004

Yes, it should be ON *:DEOP:#: {. You did not test this at all.

 Respond  
UTUCS.com-Admin created a Page  -  Feb 24, 2004
231 
UTUCS.com-Admin commented on a Page, Alias Warn  -  Feb 24, 2004

I\'ll actually submit an updated version of this, because it hasn\'t been updated.

 Respond  
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.