Top
Jethro_
Comments: 434
 
mIRC Snippet:  AutoOpScript
Posted on Nov 20, 2009 3:27 pm
Just using one command to turn it on or off: /op
Code:
on !@*:JOIN:#:if (%op == on) .mode # +o $nick
alias op { set -e %op $iif(!%op,on,$iif(%op != on,on,off)) $&
    | echo -a * $iif(%op == on,AutoOp has been trned on.,AutoOp has been truned off.)
}
/me tries to act like gooshie. lol
PePpEr
Comments: 17
 
mIRC Snippet:  realname ban
Posted on Nov 20, 2009 3:07 pm
LOL!
Testor
Comments: 80
 
mIRC Snippet:  Dark Nexus Rpg
Posted on Nov 20, 2009 2:51 pm
• Why are some aliases local, and some not? You should just make them all local aliases.
• Instead of $Regex($Lower(String),Match) why not just do $Regex(String,/Match/i)? :o.
Master-Of-Death
Comments: 40
 
mIRC Snippet:  realname ban
Posted on Nov 20, 2009 2:09 pm
lmao
FordLawnmower
Comments: 411
 
mIRC Snippet:  Auto Translator
Posted on Nov 20, 2009 1:46 pm
Thanks Xpl0reR :)
Thanks Jethro_ :) You kinda lost me on the menu point though. That won't enable the group.
It's kind of a mood point anyway, because I'm changing the script so you can turn it on and off in just the channels you want it in. I should have changed it already but it's been a tough work week. By tomorrow my mind will be clear and I will make several improvements on this and post them.
Thanks for the comments everyone.
Master-Of-Death
Comments: 40
 
mIRC Snippet:  AutoOpScript
Posted on Nov 20, 2009 1:34 pm
errm why add rediculous amounts of code, one you could use the server commands and two that code is way to excessive.

this would be better:

Code:

alias opon {
.set %op on
}
alias opoff {
.unset %op
}
on *:JOIN:#:{ if (%op == on) {
.mode # +o $nick
}
}


Simple usually = better oh and does not involve stupid %var changes.
Jethro_
Comments: 434
 
mIRC Snippet:  realname ban
Posted on Nov 20, 2009 1:29 pm
Gee, gooshie, your gooshi-lization is unbeatable. lol
Jethro_
Comments: 434
 
mIRC Snippet:  Auto Translator
Posted on Nov 20, 2009 1:22 pm
FordLawnmower, about the on and off switch, why did you make it show twice? Isn't it better to just use:
Code:
menu Channel,Status { .$iif($group(#AutoTrans) == On,$style(1)) AutoTrans }
Other than that, this script is superb, and I have elevated my rating to 10.
gooshie
Comments: 63
 
mIRC Snippet:  realname ban
Posted on Nov 20, 2009 1:20 pm
Code:
alias rb hadd -m bchan $1 # | who $1
raw 352:*: {
  if $hget(bchan,$6) {
    mode $v1 +b $+(~r:,$replace($9-,$chr(32),_))
    kick $v1 $6 banned
    hfree bchan
  }
}
slub77
Comments: 44
 
mIRC Snippet:  Channel modes and change modes menu
Posted on Nov 20, 2009 1:08 pm
1.i know but i have just got so use to doing it
2.all the op's message are different cus well i felt like making it not as dull
Jethro_
Comments: 434
 
mIRC Snippet:  AutoOpScript
Posted on Nov 20, 2009 12:16 pm
Testor, I think you missed the point:
Quote:
I made this for an #MircScripting room so i didnt have to worry about adding anyone
Jethro_
Comments: 434
 
mIRC Snippet:  Moderate Chatroom
Posted on Nov 20, 2009 12:13 pm
Yes, Nep...I was gonna do that, but craig showed /mod and /unmod alias, and I thought it'd be best to keep it as original as possible.
Jethro_
Comments: 434
 
mIRC Snippet:  realname ban
Posted on Nov 20, 2009 11:25 am
cessil, you put an 'on' in front of a raw event.
Testor
Comments: 80
 
mIRC Snippet:  AutoOpScript
Posted on Nov 20, 2009 11:21 am
/Aop <Name/Address> ?
^Neptune
Comments: 598
 
mIRC Snippet:  Moderate Chatroom
Posted on Nov 20, 2009 11:06 am
Ghost-writer, most of the best scripts on here are in fact aliases which make the life of an mIRC far easier.

Anyways, why not just combine these completely?

Code:
alias mod { mode $chan $iif(m isincs $chan(#).mode,-m,+m) }
The_Almighty_Duelist
Comments: 83
 
mIRC Snippet:  S.A. Inbox Messaging System v.2.1.0.0
Posted on Nov 20, 2009 5:26 am
yeah, i went over and i've made plenty of changes, however i'm not going to release them on this site, as i want to see how many people are actually going to use this, PM me and i'll tell you where you can get the info
Ghost-writer
Comments: 250
 
mIRC Snippet:  erase
Posted on Nov 20, 2009 5:18 am
i would rate it 1 but i dont want to increase the score.
Ghost-writer
Comments: 250
 
mIRC Snippet:  AutoOpScript
Posted on Nov 20, 2009 4:43 am
woah, ever heard of levels?
Quote:

To change base levels or to give auto voice on join. you type /cs levels channel set type level Example. /cs levels #help set autovoice -1. Here is a list of levels.


autodeop autohalfop autoop autoprotectect autovoice autojoin signkick Acc-list acc-change akick set ban banme clear getkey halfop halfopme info kick kickme invite opdeop opdeopme protect protectme topic Unban Voice Voiceme memo assign badwords fantasia greet nokick say.

Just set autoop to -1.
SunnyD
Comments: 19
 
mIRC Snippet:  Ban Dialog [Version 1.2]
Posted on Nov 20, 2009 3:04 am
i like it it's very useful :) 1 few things that could be shortened:

Code:

if ($did(BanSysteem,14).seltext == Kick) { Colorban | /dialog -c BanSysteem | /timer 1 1 dialog $iif($dialog(BanSysteem),-v,-m) BanSysteem BanSysteem | halt }


could be written as

Code:
 
if ($did(14).seltext == Kick) { Colorban | /dialog -c BanSysteem | /timer 1 1 dialog $iif($dialog(BanSysteem),-v,-m) BanSysteem BanSysteem | halt }


no need to specify what dialog the command works with since you specified it in the "on *:DIALOG:bansysteem:*:*{"
functions perfectly :D just can be shortened a bit. 7/10 :)

EDIT - dont be afraid to break commands down into seperate lines rather than packing them into one line. Makes it a tad faster, and easier to locate problems in the script :)
Xpl0reR
Comments: 223
 
mIRC Snippet:  Auto Translator
Posted on Nov 20, 2009 1:41 am
i love it, it makes me understand what people are saying in help channels, like when they speak romanian, or turkish.

10/10 +likes :)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 Next
Bottom