Teh Maestro

Teh Maestro

Joined
Mar 08, 2007
Website

Activity Stream

Teh Maestro created a Page  -  Mar 21, 2007
293 

What it does: This script converts an RGB triplet (the red, blue, and green values of a color, and example would be 43,126,230) into a hex triplet (such as 2b7ee6.) I do acknowledge the fact that using $base($rgb($3,$2,$1),10,16) would have allowed me to cut 8 lines from the script, but I didn't want to use that.

 Respond   mIRC  
Teh Maestro commented on a Page, !Bomb Script  -  Mar 21, 2007

To use it, just paste it into a new remote file and type !bomb [NICK]. To change some settings, check the Commands menu, or you can do it remotely with various !bomb set commands. Type !bomb set to see the list of them.

 Respond  
Teh Maestro commented on a Page, !Bomb Script  -  Mar 20, 2007

Rhino, what?

 Respond  
Teh Maestro created a Page  -  Mar 19, 2007
4,464 

This is based off of the same premise of my other rainbow script.

Teh Maestro commented on a Page, Scrolling Rainbow Nicklist  -  Mar 18, 2007

To add to that post, keep in mind that I had to use a sequence of colors in a certain order, so I couldn\'t just use $rand for the numbers needed.

 Respond  
Teh Maestro commented on a Page, Scrolling Rainbow Nicklist  -  Mar 18, 2007

Yeah, I know that most of the coding could be done simpler, but it still works just as well.

 Respond  
Teh Maestro created a Page  -  Mar 18, 2007
935 

To use: Paste in a fresh remote and type /rainnick to initiate. Type /rainoff to stop it.

Teh Maestro commented on a Page, Random Songs On Start  -  Mar 18, 2007

Yeah pretty much, though I think it\'s be better to use /run [mp3], since that would open it with the users preferred program.

 Respond  
Teh Maestro commented on a Page, Random Songs On Start  -  Mar 18, 2007

A good way that would allow for someone to use even a list of a hundred .MP3s to choose from would be to name them in sequence like song1.mp3, song2.mp3, etc., and then doing something like:

on *:START:{
var %rander = $rand(1,100)
splay $+(song,%rander,.,mp3)
}

 Respond  
Teh Maestro commented on a Page, Encoded Messeges  -  Mar 17, 2007

Korvin, he speaks the truth.

 Respond  
Teh Maestro commented on a Page, Encoded Messeges  -  Mar 17, 2007

The notification of new messages and the reading of messages.

 Respond  
Teh Maestro commented on a Page, Encoded Messeges  -  Mar 17, 2007

I\'ve got two gripes: 1) the $replace identifiers could all be combined into one and 2) the script doesn\'t work.

 Respond  
Teh Maestro commented on a Page, Devoice On Talk  -  Mar 16, 2007

Well my line of thinking was that since non-voiced people cannot talk in a moderated channel, checking if they\'re voiced is unnecessary. I check if they\'re oped because 1) devoicing and op has no effect, and 2) it\'s assumed that the ops are well-known frequenters of the channel, and thus won\'t cause need for this script, whereas normal voiced people will.

 Respond  
Teh Maestro commented on a Page, Devoice On Talk  -  Mar 16, 2007

No_body21, no, if they aren\'t voiced they couldn\'t talk in the first place (since this is obviously for moderated channels), and if they\'re oped I assume they wouldn\'t be spamming.

 Respond  
Teh Maestro created a Page  -  Mar 15, 2007
653 

Just a simple I made that automatically devoices any non-op when they talk while it's enabled and re-voices them when you disable the script.

Teh Maestro commented on a Page, !Bomb Script  -  Mar 15, 2007

Added yet another update, this one is quite large.

(sorry for all the double- and triple-posts.)

 Respond  
Teh Maestro commented on a Page, !Bomb Script  -  Mar 14, 2007

Updated the script again to fix an error that would cause it not to work. I also added a vowel parser of sorts.

 Respond  
Teh Maestro commented on a Page, !Bomb Script  -  Mar 12, 2007

Backoff, you must admit to yourself that this is nothing like your script except for a few minor parts.

Also, I added some more updates.

 Respond  
Teh Maestro commented on a Page, Color frames by XxX[[805]]XxX  -  Mar 11, 2007

Ok, I tried them and they all work except #9 (the one with a solid dark blue background).

 Respond  
Teh Maestro commented on a Page, Color frames by XxX[[805]]XxX  -  Mar 11, 2007

Very well done, great effect. Just one thing, perhaps you should make the @window close after you chose one of the styles, and include an English translation next to the Spanish.

 Respond  
Teh Maestro commented on a Page, !Bomb Script  -  Mar 11, 2007

Made various other modifications, read the update in the Author\'s Notes.

 Respond  
Teh Maestro commented on a Page, !Bomb Script  -  Mar 11, 2007

Made a modification to the script so that if someone were to use !bomb [NICK] [TEXT], the kick message for cutting the wrong wire or the timer running out will include [TEXT], so you can taunt/insult them or whatever reasons you can think of.

 Respond  
Teh Maestro commented on a Page, Lists nicks in a chan  -  Mar 10, 2007

You should use var %i = 1 and a while loop instead of a goto loop, it\'s shorter, easier, and leaves less room for error.

var %i = 1
while (%i <= 20) {
var %nick = $nick(#,%i)
if (%nick isop #) notice $nick 4,13 $+ %nick is an Op!
if (%nick ishop #) notice $nick 7,13 $+ %nick is a Halfop!
if (%nick isvoice #) notice $nick 11,13 $+ %nick is Voice!
if (%nick isreg #) notice $nick 9,13 $+ %nick is a regualar...
inc %i
}
}

 Respond  
Teh Maestro commented on a Page, Make Fun Of  -  Mar 10, 2007

Well, the closing angled bracket after the name isn\'t white like it should be, you should fix that. I also suggest you don\'t color the text since I, for one, use a black background and it is unreadable. The default would be more acceptable. Other than that, well, it works I suppose. Not much of a use though.

 Respond  
Teh Maestro commented on a Page, !Bomb Script  -  Mar 09, 2007

Backoff, ideas are ideas, you don\'t \'own\' this idea so it cannot be stolen. Sure there are similarities, but it\'s a script about defusing a bomb, how different can they be?

 Respond  
Teh Maestro created a Page  -  Mar 08, 2007
6,991 

Somewhat unoriginal, but I haven't messed with mIRC's scripting system in some time so this was a bit of practice.

Teh Maestro commented on a Page, Cool nick copier  -  Mar 08, 2007

Some comments: \'set %nickchange $$1-\' should be \'set %nickchange $$?1\'
\'%nickchange = $replace(%nickchange,a,4)
%nickchange = $replace(%nickchange,b,8)
etc...\'

Could be collapsed into on $replace() by using $replace(%nickchange,a,4,b,8,c,[,...)

 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.