Top

AUTHED !cycle and !identify script


mIRC Code
+ 0 likes
Please Register to submit score.
Bookmark and Share
Average Score  1.0 (of 1 scores)
Date Added  Nov 06, 2009
Last Updated  Nov 08, 2009
Tags  cycling  irc  nick  script 

Introduction

Hi. I found this useful for when I need to cycle my bot when he is not running on my computer.
VERY simple script, I don't know if it should be authed, but yeah.
Type !cycle to cycle.
Also with !identify its useful when I forget to identify, so I can just do this from my per-say Iphone. (Yes I know I could just auto-identify, this is just for people who don't want to/cant.


EDIT: Now authed AND Made it so you may select to cycle a certain channel by typing:
!cycle ChannelToCycle


**CHANGE BOTOWNERSNICK To The owners nickname**
**CHANGE PASSWORDHERE To bots password**

Grab the Code

on *:TEXT:!cycle *:#: {
  if ($nick == BOTOWNERSNICK) { 
    cycle $2- 
  }
}
 
on *:TEXT:!identify:#: {
  if ($nick == Hero88go) { 
    /identify PASSWORDHERE 
  }
}
 
 

Comments

  (8)  RSS
Cracker200
Comments: 257
 
mIRC Snippet:  AUTHED !cycle and !identify script
Posted on Nov 6, 2009 8:55 am
Hm, why don't you do
Code:
 on *:TEXT:!identify:#: identify PASSWORDHERE


Code:
 on *:TEXT:!identify:#:{ identify $1- }

Code:
 on *:TEXT:{ !cycle:#: cycle $chan }


Dicaste
Comments: 1
 
mIRC Snippet:  AUTHED !cycle and !identify script
Posted on Nov 6, 2009 2:00 pm
"cycle $chan"

not working ...

Code:

on ^*:TEXT:.cycle:#:{
  if ( $nick isop $chan ) {
    /part $chan 15CYCLE REQUESTED
    .timercycle 1 1 /join $chan
  }
}


sunslayer
Comments: 266
 
mIRC Snippet:  AUTHED !cycle and !identify script
Posted on Nov 6, 2009 3:31 pm
cycle is a server command so it will only work if the server ur on supports it
you can also use mIRC's /hop which serves the same purpose or add an alias called cycle in your aliases tab
Code:
cycle { part $1 | join $1 }
blitzz
Comments: 122
 
mIRC Snippet:  AUTHED !cycle and !identify script
Posted on Nov 6, 2009 7:04 pm
@Cracker200:
Code:
 on *:TEXT:{ !cycle:#: cycle $chan }


I think you put the { in a wrong place..
SketchDrawer
Comments: 5
 
mIRC Snippet:  AUTHED !cycle and !identify script
Posted on Nov 7, 2009 7:36 pm
@Cracker: I dont see the need for that when mine is shorter. I guess thats just a more advanced complicated way to do it, so thanks! :)
sunslayer
Comments: 266
 
mIRC Snippet:  AUTHED !cycle and !identify script
Posted on Nov 7, 2009 9:06 pm
Code:
 on *:TEXT:!identify:#:{ identify $1- }
then the entire channel would see your pass
SketchDrawer
Comments: 5
 
mIRC Snippet:  AUTHED !cycle and !identify script
Posted on Nov 8, 2009 5:47 pm
Now AUTHED! And you can choose channel to cycle!
blitzz
Comments: 122
 
mIRC Snippet:  AUTHED !cycle and !identify script
Posted on Nov 8, 2009 7:07 pm
Everyone can use your nick even 60 sec then type !identify..maybe better msg the bot to identify..like:

Code:
on *:open:?:{
  if (passwordhere iswm $1-) {
    ns identify passwordhere 
}
  close -m
}


You also can add "&& ($nick == YourNick)" after the iswm event..


Commenting Options

Register or Login to Hawkee.com or use your Facebook or Twitter account by clicking the corresponding button below.

  
Bottom