LegendScript
Would you like to react to this message? Create an account in a few clicks or log in to continue.

[SHOWCASE] Help Script!

Go down

[SHOWCASE] Help Script! Empty [SHOWCASE] Help Script!

Post  Rangedboyke Fri Mar 21, 2008 8:04 pm

Many users are looking for it. A script that makes using mIRC easyer for you!
Don't you like that you always need to press:
Code:
/mode #chan +m
?
I dont like it even.

So I have made a script that you only have to press: +m in the channel!
Or what about -m?

The Commands you can use:
.mutebots (mutes bot tags in the channel you are using it)
.mute NICK NICK NICK.... (Mute 1 or more users in your channel)
.unmute NICK NICK NICK... (Unmute 1 or more users in your channel)
.nick NEWNICK (Change your nickname)
.join #chan (Join the channel)
.mode mode mode mode mode (set 1 or more modes in your channel example: .mode +m +s)
+(mode) (set a mode: example: +m)
-(mode) (unset a mode: example: -m)
.ban NICK NICK NICK... (ban 1 or more users (HOSTS) from your channel)
.nban NICK NICK NICK... (ban 1 or more users (nicks) from your channel)
.unban NICK NICK NICK (unban 1 or more nicks from your channel)
.kb NICK REASON (kick ban a user from your channel with a reason)
.multikb NICK NICK NICK (kick ban more users in once, with out reason!)
.kick NICK REASON (kick a user from your channel with reason)
.multikick NICK NICK NICK (kick more users in once from your channel with out reason)
.tb NICK (TIME IN MINUTES) REASON (time ban a user from your channel)
.op NICK NICK NICK (give one ore more users operator access in your channel)
.deop NICK NICK NICK (deop one or more users from your channel)
.hop NICK NICK NICK (give one or more users help operator access in your channel)
.dehop NICK NICK NICK (Delete the "Help operator" access from the nick on your channel)
.voice NICK NICK NICK (voice users)
.devoice NICK NICK NICK (Devoice the users)
.nopower NICK NICK NICK (delete the power from a few users)
.exept NICK NICK NICK... (exept one or more users from your channel)
.botkick NICK NICK NICK.. (kick bots with the bot reason from your channel)
.globalban NICK (global ban a user from all channels you are op/help in!)
.invite NICK (invite a user to your channel)
.secureoff (turn secureops off in your channel)
.secureon (Turn secureon in your channel)

The script:
(Put the next code in your REMOTE (ALT + R) (Only useble in mIRC)
Code:

on *:input:#: {
  if ($nick == $me) {
    if ($1 == .mutebots) {
      mode $chan +b ~q:*bot*
      mode $chan +b ~q:*script*
      mode $chan +b ~q:*bot*
      mode $chan +b ~q:*bots*
      mode $chan +b ~q:[??]*
      mode $chan +b ~q:*[??]
    }
    if ($1 == .mute) {
      mode $chan +b ~q: $+ $2
      mode $chan +b ~q: $+ $3
      mode $chan +b ~q: $+ $4
      mode $chan +b ~q: $+ $5
      mode $chan +b ~q: $+ $6
    }
    if ($1 == .unmute) {
      mode $chan -b ~q: $+ $2
      mode $chan -b ~q: $+ $3
      mode $chan -b ~q: $+ $4
      mode $chan -b ~q: $+ $5
      mode $chan -b ~q: $+ $6
    }
    if ($1 == .nick) {
      /nick $2
    }
    if ($1 == .join) {
      /join $2
    }
    if ($1 == .mode) {
      mode $chan $2
      mode $chan $3
      mode $chan $4
      mode $chan $5
      mode $chan $6
    }
    if (+* iswm $1) {
      mode $chan $1-
    }
    if (-* iswm $1) {
      mode $chan $1-
    }
    if ($1 == .ban) {
      mode $chan +b $address($2,2)
      mode $chan +b $address($3,2)
      mode $chan +b $address($4,2)
      mode $chan +b $address($5,2)
      mode $chan +b $address($6,2)
    }
    if ($1 == .nban) {
      mode $chan +b $2
      mode $chan +b $3
      mode $chan +b $4
      mode $chan +b $5
      mode $chan +b $6
    }
    if ($1 == .unban) {
      mode $chan -b $address($2,5) | mode $chan -b $2
      mode $chan -b $address($3,5) | mode $chan -b $3
      mode $chan -b $address($4,5) | mode $chan -b $4
      mode $chan -b $address($5,5) | mode $chan -b $5
      mode $chan -b $address($6,5) | mode $chan -b $6
    }
    if ($1 == .kb) {
      inc %pwnznubs
      mode $chan +b $address($2,2) | kick $chan $2 12 $+ $3- 12Noobs owned by Rangedboyke:4 %pwnznubs
    }
    if ($1 == .multikb) {
      inc %pwnznubs
      mode $chan +b $address($2,2) | kick $chan $2 12Noobs owned by $me $+ :4 %pwnznubs
      mode $chan +b $address($3,2) | kick $chan $3 12Noobs owned by $me $+ :4 %pwnznubs
      mode $chan +b $address($4,2) | kick $chan $4 12Noobs owned by $me $+ :4 %pwnznubs
      mode $chan +b $address($5,2) | kick $chan $5 12Noobs owned by $me $+ :4 %pwnznubs
      mode $chan +b $address($6,2) | kick $chan $6 12Noobs owned by $me $+ :4 %pwnznubs
    }
    if ($1 == .kick) {
      inc %pwnznubs
      kick $chan $2 12reason:4 $3- 12Noobs owned by $me $+ :4 %pwnznubs
    }
    if ($1 == .multikick) {
      inc %pwnznubs
      kick $chan $2 12Noobs owned by $me $+ :4 %pwnznubs
      kick $chan $3 12Noobs owned by $me $+ :4 %pwnznubs
      kick $chan $4 12Noobs owned by $me $+ :4 %pwnznubs
      kick $chan $5 12Noobs owned by $me $+ :4 %pwnznubs
      kick $chan $6 12Noobs owned by $me $+ :4 %pwnznubs
      kick $chan $7 12Noobs owned by $me $+ :4 %pwnznubs
    }
    if ($1 == .tb) {
      ban -ku $+ $calc($3 * 60) $chan $2 Time banned REASON: $+ $4-
    }
    if ($1 == .op) {
      if ($2 == $null) { mode $chan +o $me | halt }
      if ($2 == $me) { mode $chan +o $me | halt }
      mode $chan +o $2
      mode $chan +o $3
      mode $chan +o $4
      mode $chan +o $5
      mode $chan +o $6
      mode $chan +o $7
    }
    if ($1 == .deop) {
      if ($2 == $null) { mode $chan -o $me | halt }
      if ($2 == $me) { mode $chan -o $me | halt }
      mode $chan -o $2
      mode $chan -o $3
      mode $chan -o $4
      mode $chan -o $5
      mode $chan -o $6
      mode $chan -o $7
    }
    if ($1 == .hop) || ($1 == .halfop) {     
      if ($2 == $null) { mode $chan +h $me | halt }
      if ($2 == $me) { mode $chan +h $me | halt }
      mode $chan +h $2
      mode $chan +h $3
      mode $chan +h $4
      mode $chan +h $5
      mode $chan +h $6
      mode $chan +h $7
    }
    if ($1 == .dehop) || ($1 == .dehalfop) {     
      if ($2 == $null) { mode $chan -h $me | halt }
      if ($2 == $me) { mode $chan -h $me | halt }
      mode $chan -h $2
      mode $chan -h $3
      mode $chan -h $4
      mode $chan -h $5
      mode $chan -h $6
      mode $chan -h $7
    }
    if ($1 == .voice) {
      if ($2 == $null) { mode $chan +v $me | halt }
      if ($2 == $me) { mode $chan +v $me | halt }
      mode $chan +v $2
      mode $chan +v $3
      mode $chan +v $4
      mode $chan +v $5
      mode $chan +v $6
      mode $chan +v $7
    }
    if ($1 == .devoice) {
      if ($2 == $null) { mode $chan -v $me | halt }
      if ($2 == $me) { mode $chan -v $me | halt }
      mode $chan -v $2
      mode $chan -v $3
      mode $chan -v $4
      mode $chan -v $5
      mode $chan -v $6
      mode $chan -v $7
    }
    if ($1 == .nopower) {
      mode $chan -o $2
      mode $chan -h $2
      mode $chan -v $2
      mode $chan -o $3
      mode $chan -h $3
      mode $chan -v $3
      mode $chan -o $4
      mode $chan -h $4
      mode $chan -v $4
      mode $chan -o $5
      mode $chan -h $5
      mode $chan -v $5
    }
    if ($1 == .exept) {
      if ($2 == $null) { mode $chan +e $address($me,2) | halt }
      if ($2 == $ne) { mode $chan +e $address($me,2) | halt }
      mode $chan +e $address($2,2)
      mode $chan +e $address($3,2)
      mode $chan +e $address($4,2)
      mode $chan +e $address($5,2)
      mode $chan +e $address($6,2)
    }
    if ($1 == .botkick) {
      inc %pwnznubs
      mode $chan +b $2 | kick $chan $2 4NO BOTS IN THIS CHANNEL! 12Noobs owned by $me $+ :4 %pwnznubs
      mode $chan +b $3 | kick $chan $3 4NO BOTS IN THIS CHANNEL! 12Noobs owned by $me $+ :4 %pwnznubs
      mode $chan +b $4 | kick $chan $4 4NO BOTS IN THIS CHANNEL! 12Noobs owned by $me $+ :4 %pwnznubs
      mode $chan +b $5 | kick $chan $5 4NO BOTS IN THIS CHANNEL! 12Noobs owned by $me $+ :4 %pwnznubs
      mode $chan +b $6 | kick $chan $6 4NO BOTS IN THIS CHANNEL! 12Noobs owned by $me $+ :4 %pwnznubs
    }
    if ($1 == .globalban) {
      //var %c 1 | while ($chan(%c)) { mode $v1 +b $2 | inc %c }
      amsg 12[4GLOBAL BAN12] 12I have global banned:4 $2 12for the reason:4 $3- 12I friendly ask you to ban this user from your channel when I dont have access!
    }
    if ($1 == .invite) {
      invite $2 $chan
    }
    if ($1 == .secureoff) {
      /cs set $chan secureops off
    }
    if ($1 == .secureon) {
      /cs set $chan secureops on
    }
  }
}

Rangedboyke
Admin

Number of posts : 151
Age : 32
Registration date : 2008-03-16

http://www.legendscript.darkbb.com

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum