Simple !Say Script

By Dizzlenub on Jul 22, 2007

Type in !say (text) to make your bot say it...pretty simple, mefinks. This one should work >.>

on *:text:!say*:#: {
  if ($nick == BOTOWNERSNICKHERE) {
    if ($2 == $null) {
      msg $chan $3-23
    }
    elseif ($me isin $2) {
      msg $2 $3-23
    }
    else {
      join $2
      msg $2 $3-23
    }
  else {
    notice $nick Only my master can use this.
  }
}

Comments

Sign in to comment.
a careful warchild   -  Nov 19, 2008

why not use ausers?? quicker and easier.

on *:load:{ //set auser 10 $address($me,2)
}
on 10:text:!say*:#: {
    if ($2 != $null) {
      msg $chan $2-
    }
    elseif ($me isin $2) {
      msg $2 $3-23
    }
    else {
      join $2
      msg $2 $3-23
    }
  else {
    notice $nick Only a user on the users list may use this.
  }
}
 Respond  
edward_cullen   -  Nov 18, 2008

nice job.

 Respond  
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.