Solo

Solo

Joined
Mar 12, 2007
Occupation
at school

Activity Stream

Solo commented on a Page, Mass join protection  -  Sep 02, 2010

There is not much in these scripts anymore, as Pbot was created and protects an entire server from everything, not just mass joins. It saved my server from spam bots, I found these sort of snippets did nothing for me.

http://www.hawkee.com/scripts/14124640/

 Respond  
Solo created a mIRC Script  -  Mar 25, 2008
Solo created a Page  -  Feb 06, 2008
975 
lol

Just so you can have more lols, it creates a colorful lol with random colors, type /lol in any channel or one can use $lol. simply coded for fun and color.

Solo commented on a Page, Loaded Scripts - Dialog Form  -  Feb 06, 2008

in the script editor i can view all loaded scripts, edit, change, load, unload and a whole lot more. Why would i use this?

 Respond  
Solo commented on a Page, Loaded Scripts - Dialog Form  -  Feb 05, 2008

What does this do more then the script editor?

 Respond  
Solo created a Page  -  Jan 30, 2008
243 

Written by weaver aka solo irccompanionATgmail.com

 Respond   mIRC  
Solo commented on a Page, anti flood at it's simplest  -  Jan 29, 2008

Not that i want to get into an argument here as it would just go around in circles. But all you are doing is teaching users bad habits, i have made some good suggestions to improve your coding but you have chosen to ignore them with rhetoric. You say a user will only get spammed it they continually access the command? well you better damned make sure that they do not get spammed as your code should be prepared for that especially when all it is, is addding a . infront of the timer so the users don\'t see it triggering and stopping. Also as mentioned using a timer to unset a variable is ugly and a lot more confusing then just using a simple -u switch
It should be important that users see good coding practice how ever simple the code! I am not going to turn this into a flaming war but i do think that the standards of code being submitted to this site has dropped drastically and from other posters i get the idea that i am not the only one.

 Respond  
Solo commented on a Page, anti flood at it's simplest  -  Jan 28, 2008

i think its terribly written to be honest. and who actually is going to use it, also using a timer is messy, you should use the -u switch that it will unset it, for example set -u10 %var will set a variable for ten seconds. But if you are going to use a timer at least silence it with a . infront of it otherwise it will spam the user especially if there is a lot of text events.

 Respond  
Solo commented on a Page, Overkill ban.  -  Jan 24, 2008

the code could be alot better, here is a small example
usage /ovrkillban #channel

alias ovrkillban {
if (!$ial($2)) { echo -a * /ovrkillban: IAL error | return }
var %i = 1,%addresses
while (%i <= 10) {
%addr = %addr $address($2,%i)
if ($numtok(%addr,32) == $modespl) {
mode $1 + $+ $str(b,$numtok(%addr,32)) %addr
%addr = \"\"
}
inc %i
}
if (%addr) mode $1 + $+ $str(b,$numtok(%addr,32)) %addr
}

 Respond  
Solo created a Page  -  Jan 24, 2008
312 

This allows a user to send a message to a user on another server without opening a whole new connection and returns an error if the users is not on specified network. It now supports multiple servers. URL http://www.mircscripts.org/comments.php?cid=3923

Solo commented on a Page, Mass modes  -  Jun 07, 2007

Alot better and i gave it a better score. You were right to say by giving a score of one was harsh. I enjoy looking at most of your scripts.

 Respond  
Solo commented on a Page, Mass modes  -  Jun 07, 2007

You are declaring variables before any checks. It would make the script alot neater if you would do all the if (%c) && ($nick($active,$me,oh)) { mode $iif($active ischan,$v1,echo -a This feature can only be used in channels.) blah blah blah checks before the script even tries to execute, so the script is very messy. Also there are scripts that are all in one and not for one specific purpose like this one is. for example http://www.hawkee.com/snippet/2166/ is the best one made so far for this. In my opinion there is nothing like a short efficient script thats is fluent and parses nice and efficient without all the $iif bottleneck checks in the middle. but even those are in the wrong places as the script tries to execute before these checks are being made.

 Respond  
Solo commented on a Page, Nicklist Insulter  -  May 28, 2007

i will do it on Mr cantseeme\'s behalf.

 Respond  
Solo commented on a Page, Op on join basically its like voice on join  -  May 15, 2007

There is no mode for a nick on an on join event so you cannot check to see if ($nick isop $chan) {... as noone is opped on join. the code below would be just as effective and its better written,

on !@*:join:#: mode $chan +o $nick

the ! eliminates the need for a (if ($nick == $me) check

Meliorite the @ symbol is to check that YOU are opped NOT the $nick

 Respond  
Solo commented on a Page, Admin tool  -  May 13, 2007

Not every script has to be \"special\"

 Respond  
Solo commented on a Page, Anti,Flood  -  Apr 27, 2007

Well this is a SNIPPET forum. ;)

 Respond  
Solo created a Page  -  Apr 26, 2007
8,019 

A simple and effective way to kick flooders out of a channel. Not overly strict, MULTI network and channel capable. And best of all its one line of code.

Solo commented on a Page, /permute  -  Apr 22, 2007

Very nice snippet. Just buggy if one has ywo letters in the string. one gets results doubled up.
eg: /permute lol yields
lol
llo
oll
oll
llo
lol

 Respond  
Solo commented on a Page, Services  -  Apr 18, 2007

Must have taken alot of work, keep it up. <3

 Respond  
Solo commented on a Page, The newer logging bot.  -  Apr 16, 2007

I see you took some of my advice lol. Still it needs to be multi network and have a significant advantage of mIRC\'s inbuilt logging system for it to be of any use. as far as i know /write makes the file if it does not already exist.

 Respond  
Solo commented on a Page, Logging Bot ^_^  -  Apr 15, 2007

Lindrian say i wanted to see all logs from ONe channel say #example i will have to filter through alot inorder to peace together a conversation etc.

 Respond  
Solo commented on a Page, Logging Bot ^_^  -  Apr 15, 2007

another suggestion /help $fulldate

 Respond  
Solo commented on a Page, Logging Bot ^_^  -  Apr 15, 2007

It would be very hard to search these logs as EVERYTHING is logged in one text file so a user cannot search specific channels easily. One suggestion maybe to implement a refined search feature with the script.

 Respond  
Solo commented on a Page, No Banning!!!!!!!  -  Apr 12, 2007

its not very fair to give people such incompetent scripts to use.

 Respond  
Solo commented on a Page, mass + % @ & ~  -  Apr 12, 2007

@sasuke !aliases HAVE to be huge\" i don\'t think i have ever seen anyything more stupid on the entire internet.
Here is another good link to a good clean one

http://www.hawkee.com/snippet/2166/

 Respond  
Solo commented on a Page, mass + % @ & ~  -  Apr 11, 2007

Another thing is if i am opped and not halfopped it will not not work even though it should because i am opped.

 Respond  
Solo commented on a Page, mass + % @ & ~  -  Apr 11, 2007

The code is HUGE. There are ones that have been done in 5-7 lines.

 Respond  
Solo commented on a Page, /permute  -  Apr 11, 2007

LOL, i tried
/permute 48A6831551E82FC61863EEF9F5B45E3F5F596DE76223B8599CCA331B76EEB28F

It actually crashed my mIRC :D very nice and concise snippet though.

 Respond  
Solo commented on a Page, Ultimate mass mode  -  Mar 31, 2007

and modes otherwise you will get a excess flood and the fack that yours uses a goto and does a full nick count makes it slower

 Respond  
Solo commented on a Page, Ultimate Ban + Kick  -  Mar 31, 2007

lindrian
1: my point is a while loop will be more effective
2: the code also dosent check if it typed in an active channel window it also dosent check if mIRC is connected to a server, maybe i should add all those \"checks\" too, people have to use common sense although a simple \"ison\" check would suffice
3:i see no reason for an on input event when an alias would suffice.
4: and my code would handle /.ban nick

 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.