HelpServ Test Version

By FreeHuman on Oct 25, 2011

mIRC HelpServ Script Released For Test.HelpServ Bot For Help Channels.
I Say Again.That is Only Beta Version For Test.
Usage:
First You Must Have Two mIRC Program.Add That Snippet To One Of That mIRC Program.Connect To Network And Join To Your Help Channel.After Write That In This mIRC Program: /guser 3 NICKNAME 2
(Which nickname of that nickname's mirc not have this snippet)

on *:JOIN:HELP-CHANNEL-NAME-HERE: {
  if ( $ulevel >= 2 ) {
    mode $chan +o $nick
  }
  Else {
    onotice $chan $nick Has Joined To Here
    onotice $chan Write /msg $me ACCEPT $nick For Be Helper
  }
}
On *:TEXT:*:?: {
  if ( $ulevel == 0 ) {
    if ( $nick !ison HELP-CHANNEL-NAME-HERE ) {
      notice $nick You Are Not In HELP-CHANNEL-NAME-HERE.Your Message Not Accept
    }
  }
  if ( $ulevel >= 2 ) {
    if ( $1 == help ) {
      notice $nick  $me $+ 's Help Message
      notice $nick ACCEPT - Accept Be Helper Of Someone
      notice $nick END - Says You Are Helped
      notice $nick ADDHELPER - (Only Admin) Add A Helper To HelperList
      notice $nick DELHELPER - (Only Admin) Delete A Helper From HelperList
    }
    if ( $1 == accept ) {
      mode HELP-CHANNEL-NAME-HERE +v $2
      notice $2 Your Helper Is $nick
    }
    if ( $1 == end ) {
      notice $2 You Are Helped.Please /part HELP-CHANNEL-NAME-HERE
    }
    if ( $1 == ADDHELPER ) {
      if ( $ulevel < 3 ) {
        notice $nick You Dont Have Enough Privaliges For Use This Command
      }
      Else {
        set %helpers %helpers $+ , $+ $2
        guser 2 $2 2
      }
    }
    if ( $1 == DelHelper ) {
      if ( $ulevel < 3 ) {
        notice $nick You Dont Have Enough Privaliges For Use This Command
      }
      Else {
        set %helpers $remtok(%helpers, $2 ,1,44)
        ruser $2 2
      }
    }
    if ( $1 == HelperList ) {
      notice $nick Admin: 
      notice $nick ADMIN-NICK-HERE
      notice $nick Helpers:
      notice $nick %helpers
    }
  }
}

Comments

Sign in to comment.
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.