Ailecommented on mIRC Snippet: Insults
-
Oct 21, 2009
Lol ghost, when i first started scripting, i did what he did for an "Age Test" 100 lines long, didnt know about $r(1,100) that could be placed in the script xD such nooby times lol
remini rules.ini $chan $3- Added By $nick <-- that line you only need remini rules.ini $chan, and in order to have this removed from anychannel, simpley do this, remini rules.ini # $+ $2 ; It will still read it as $chan because its looking to whats in it, so if you know the name, it will delete as well.
Ailecommented on mIRC Snippet: Insults
-
Jul 18, 2007
Hehe Your scripts are good but hey use examples on what i showed ya Mate and you'll get better. At least your trying =)
Ailecommented on mIRC Snippet: Jokes.....
-
Jul 18, 2007
/me sighs Again with the long scripts mate ;o long scripts dont make you look good :p its how conpact you can make em :p
again;
on $*:text:/^[!@]joke/Si:#:{ var %x $iif($Left($1,1) ==@, msg $chan, .notice $nick) | %x $read(jokes.txt) }
Just try to make scripts like this :p
Ailecommented on mIRC Snippet: YoMama
-
Jul 18, 2007
Sigh, Same thing i said with the other script :P use .txt
put them in a .txt file, load it into ur mirc file and use;
on $*:text:/^[!@]yomama/Si:#:{ var %x $iif($left($1,1) == @, msg $chan, .notice $nick) | %x $read(yomama.txt) }
Oo nice long script, i suggest that you use a .txt file
on $*:text:/^[!@](confunicus)/si:#:{ var %x $iif($left($1,1) == @,msg $chan,.notice $nick) | %x $read(confusius.txt) }
Just make the .txt file (Note pad) put all the sayings there, and it saves Variables from being stored in the varibale tab :P have fun.
Ailecommented on mIRC Snippet: Botoff
-
May 31, 2007
Hmm that could be handy.. but once remotes are off the person cant turn them back on lol.. I suggest using a var on every script you have such as;
on *:text:!bot off:#:{
if ($nick == NICK) || ($nick == NICK1) || ($nick == NICK2) {
set %off enabled
}
}
on *:text:!bot on:#:{
if ($nick == NICK) || ($nick == NICK1) || ($nick == NICK2) {
unset %off
}
}
And place this in all scripts;
if (%off == enabled) { halt }
elseif { your script here
}
Just a thought this requires more work tho :)
Hey, im new to hawkee, and for your script you could change " amsg Bah Why must they invite me. " to " amsg Bah Why must $nick invite me to $chan. " This way, it shows the channels that your on who invited you, and to what channel :P