Top

AUTHED Join And Part Channel Script For Bot


mIRC Code
+ 0 likes
Please Register to submit score.
Bookmark and Share
Average Score  0.0 (of 0 scores)
Date Added  Nov 08, 2009
Last Updated  Nov 08, 2009
Tags  authed  join  ownage  part 

Description

This script allows you to say "!join channel" and your bot will join it.

The best part is - It only does it for YOUR nick!

You can add more nicks by just re pasting the script and changing the name.

**Change BOTOWNERSNICKHERE To the bot owners nickname or whoever you want to add to control it**

Enjoy Greatly!


Commands:
!join channel
!part channel

Grab the Code

on *:TEXT:!join *:#: {
  if ($nick == BOTOWNERSNICKHERE) { 
    join $2- 
  }
}
 
on *:TEXT:!part *:#: {
  if ($nick == BOTOWNERSNICKHERE) { 
    part $2- 
  }
}
 

Comments

  (2)  RSS
Testor
Comments: 103
 
mIRC Snippet:  AUTHED Join And Part Channel Script For Bot
Posted on Nov 9, 2009 1:48 pm
Code:

on *:Text:!*:#: {
if ($Nick = BOTOWNER) {
if ($Strip($1) == !Join) { .Join $Replace($2-,$Chr(32),$Chr(44)) }
if ($Strip($1) == !Part) { .Part $iif(!$2,$Chan,$Replace($2-,$Chr(32),$Chr(44))) }
}
}
Another way of doing it? o.O
SketchDrawer
Comments: 5
 
mIRC Snippet:  AUTHED Join And Part Channel Script For Bot
Posted on Nov 9, 2009 5:22 pm
I guess. Never really tried that.

Commenting Options

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

  

Bottom