Savage_CL

Savage_CL

Joined:
Jun 22, 2010

Activity Stream

Savage_CL commented on a Snippet, Variable reader ($vget)  -  Nov 27, 2012
@Spoof
Just letting you know that I was, in fact, right. With echo, the color comes before the switches.
 Respond  
Savage_CL commented on a Snippet, mIRC Syntax Highlighter for Notepad++  -  Nov 05, 2012
By far my favorite program for mSL scripting is mSLdev, written by Wiz126. It's a complete mSL IDE, and does very well. You can find it here:

http://msldev.zigwap.com/
 Respond  
Savage_CL commented on a Snippet, Clipboard to Pastebin  -  Oct 10, 2012
Glad you like it, chorao. I would ask, however, that you get your own API key, as leaving mine in there was a mistake.
 Respond  
Savage_CL posted a Snippet  -  Sep 29, 2012
Savage_CL posted a Snippet  -  Sep 27, 2012
Savage_CL commented on a Snippet, /BANSYNC Channel Ban Synchronization  -  Feb 01, 2012
I suggest you make use of $ibl and $modespl
 Respond  
Savage_CL commented on a mIRC Script, BlaCk List  -  Jan 30, 2012
It's a local channel ban list based on Nick, includes dialog.
 Respond  
Savage_CL commented on a mIRC Script, Chang Nick To bad Nick  -  Jan 23, 2012
I'll save everybody's time...

Code

 
 Respond  
Savage_CL commented on a Snippet, IRCop Control Panel 2  -  Dec 30, 2011
Frenetic, it would be more like this....

Code

 


EDIT:

Code

 
 Respond  
Savage_CL commented on a Snippet, Botserv Possesion version 2.1  -  Dec 30, 2011

Code

 


Adapted for a multi-network situation in which you might be in #chan on two different networks.

Good script

Cheers :)
 Respond  
Savage_CL posted a Snippet  -  Dec 27, 2011
Savage_CL posted a Snippet  -  Dec 26, 2011
Savage_CL commented on a Snippet, RuneScape Adventurer's Log Viewer  -  Dec 24, 2011
@cptpan If you don't know what an Adventurer's Log is, it's not for you >.>
 Respond  
Savage_CL commented on a Snippet, OpMe, DopMe, VMe and DevMe aliases  -  Nov 25, 2011
Jethro that wouldn't work unless you already had +a or +q or were an IRCop....
 Respond  
Savage_CL commented on a Snippet, Abc & Mod Identifiers  -  Nov 09, 2011

Code

 


just another way :)
 Respond  
Savage_CL commented on a mIRC Script, Query ison checker  -  Nov 06, 2011
The scripts section is used for those script that require many files, such as Dani_l11's chess. It needs images. Or one like mine, which includes a readme and a logo file. This is a single file that serves a simple purpose and it should be, by hawkee standards, in the snippet section.
 Respond  
Savage_CL commented on a mIRC Script, Query ison checker  -  Nov 05, 2011
Why is this not posted in the snippet section, where it is so much easier for one file scripts to be downloaded and used?
 Respond  
Savage_CL commented on a Snippet, bot type on kick  -  Oct 29, 2011
This would be a great place to explore the wonders of token identifiers. Use of $addtok, $remtok, and $istok would allow for multiple nicks to be monitored at the same time. Also, and this is just an anal thing for me, don't put your first if statement in the same line as an event. Space it out. space is your friend.

Happy Scripting :)

-Savage_CL
 Respond  
Savage_CL commented on a Snippet, User Commander  -  Oct 23, 2011
did you read the description?
 Respond  
Savage_CL posted a Snippet  -  Oct 22, 2011
Savage_CL commented on a Snippet, Invite Dialog  -  Oct 15, 2011
Ahh you are correct. Actually I forgot to change that to $null. Thank you for pointing out that rookie mistake >.<
 Respond  
Savage_CL commented on a Snippet, #Help join noticer.  -  Oct 15, 2011
I have two questions, and one goes off _Dean_'s comment. First, why are you setting %help.network to $network and then checking if they are the same within the same scope? It's redundant and just makes another global variable.
also, why would you only do the -g2 if the person was an op? Doesn't that defeat the purpose? If someone is op'd in help, it's likely they don't need help, but rather give it.

This would be better done, in my opinion, but changing it to !isop and calling it with .timer 1 1 checkhelpnick $nick
then using $1 to reference the nick in the alias, as _Dean_ said.

Happy scripting :)

-Savage_CL
 Respond  
Savage_CL posted a Snippet  -  Oct 08, 2011
Savage_CL commented on a Snippet, Info  -  Oct 03, 2011
I would expand on this a bit...

Code

 

This way if you click on any of them, it adds it to your editbox for you.
 Respond  
Savage_CL commented on an Image, Website generator design update  -  Sep 30, 2011
first tab..links box... you spelled link wrong for "lick color"
 Respond  
Savage_CL commented on a Snippet, DCX Switchbar  -  Sep 29, 2011
What does it do?
 Respond  
Savage_CL commented on a Snippet, Basic IRC command help script  -  Sep 22, 2011
the difference between if and elseif is simple.
elseif only checks if the last check was false.
this means that when the first (else)if statement rings true
the rest won't, until it hits an if again.
 Respond  
Savage_CL commented on a Snippet, [IRCart] Mudkip!  -  Sep 08, 2011
bs say?
 Respond  
Savage_CL commented on a Snippet, Basic IRC command help script  -  Sep 01, 2011
Also note that mSL is not a programming language, but a scripting language. The more events you put in a script, the more mIRC looks for with each line in each channel on each network you are connected to. This can, when you load it up too much, cause some problems with mIRC stalling or even crashing. Using one event would likely be the better option not just in terms of cleanliness but performance. Every little bit counts when you are working with a language so "slow"!

-Savage_CL
 Respond  
Savage_CL commented on a Snippet, Basic IRC command help script  -  Aug 31, 2011
no need to be hostile. I learned the same lesson with the last snippet I posted. This is a community of scripters that help eachother and learn from eachother. We are simply giving other (some may say better) ways to do it. There are downfalls to each of them. Jethro_'s being that it requires an external file and mine being.... well I don't really know to be honest. Yours would be that it puts more stress on mIRC and it's extremely redundant. I'm not saying it's wrong, and I'm not saying I wouldn't have done the same thing in the past, but I've learned from my past code through this community and several irc channels and now I know easier/better ways to do things. I attempted to show you one of those. If you don't want feedback, don't post your code on Hawkee, because that's what this site is for.
 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.