Top

Remote adding to access list


mIRC Code
+ 0 likes
Please Register to submit score.
Bookmark and Share
Average Score  0.0 (of 0 scores)
Date Added  Sep 06, 2008
Last Updated  Sep 06, 2008
Tags  access  adding  list  remote 

Introduction

Well, I decided to make a remote script to add to the access list remotly, then i realised the flaws, of people adding themselvs and finding a way to get high access, Well, i fastly fixed that, And now its all flawless, Thats right, iv accualy made a non-flawd script for once! ^.^

Credit to my bro for the idea & iBill for teaching me all i know!

SYNTAX: .add <access amount> <nick to be added>

Grab the Code

on *:text:.Add*:#: {
  if ($3 == $nick) halt
  if ($nick isop $chan) {
    if ($me isop $chan) {
      set %add $nick
      set %access on
      set %achan $chan
      set %access2 $2
      set %anick $3
      cs access # list
    }
  }
}
 
on *:notice:*:?: {
  if (%access == on) {
    if (%add isin $2-) {
      if ($2 > %access2) {
        cs access %achan add %anick %access2
        notice %anick You now have %access2 access on %achan
        notice @ $+ %achan Access for %anick has just been changed to %access2
        set %access off
      }
    }
  }
}
 

Comments

  (5)  RSS
T_Nick_T
Comments: 7
 
mIRC Snippet:  Remote adding to access list
Posted on Oct 6, 2008 10:17 pm
Nice very nice but for some reason this doesn't want to work for me :(
napa182
Comments: 1,455
 
mIRC Snippet:  Remote adding to access list
Posted on Oct 7, 2008 12:20 am
well you need to make sure what ever mirc you are runing this on that you have access to give chan lvl's...

you can just do
Code:
on *:text:.Add*:#: {
  if ($nick != $3 && $nick isop # && $me isop # && $3 ison # && $2 isnum 3-10) {
    .cs access # add $3 $2
    .notice $3 You Just Got Access to # at lvl $2 from $nick
  } 
}



oh and
Mudkipz said:
Quote:
And now its all flawless, Thats right, iv accualy made a non-flawd script for once! ^.^


um nothing is flawless
T_Nick_T
Comments: 7
 
mIRC Snippet:  Remote adding to access list
Posted on Oct 7, 2008 9:07 am
So that's all I have to add or what cause it still doesn't seem to be working for me.
napa182
Comments: 1,455
 
mIRC Snippet:  Remote adding to access list
Posted on Oct 7, 2008 8:55 pm
are you typing .add lvl_number nick
Mudkipz
Comments: 25
 
mIRC Snippet:  Remote adding to access list
Posted on Nov 5, 2008 9:34 am
T_Nick_T, you do realise it is a remote, Dont you? =p Just a mistake you can make if you forget that you cant use your own remote's on your own irc

Commenting Options

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

  
Bottom