Top

Access Bot


mIRC Code
+ 0 likes
Please Register to submit score.
Average Score  4.0
Scores Submitted  2
Date Added  Jan 16, 2008
Last Updated  Jan 16, 2008
Tags  access  bot  deop  devoice  op  voice 
  Bookmark and Share

Introduction

1)Press: Alt + R
2)Type: /set %owner <BOTS OWNER>
3)Set the channel..
4)and use it ;)


Grab the Code

Comments

  (5)  RSS
mountaindew
Comments: 1,640
 
mIRC Snippet:  Access Bot
Posted on Jan 16, 2008 5:31 pm
Code:

  if ($nick == %owner) && ($3 == sop) { set %sop $+ $2 $2 | msg $chan $2 Has been added to 4Sop 1list! }

u should just check one if ($nick == %owner) { and then if $3 == ... under it

secondly, with the "set %var $+ $2 ..." i dont think that works :/

i'm pretty sure u have to do either "set %sop [ $+ [ $2 ] ] $2" or "set $+(%sop,$2) $2"

and with
Code:

 if ($nick == %owner) { /mode $chan +qaohv $nick $nick $nick $nick }

u can just do
Code:

 if ($nick == %owner) mode $chan +qaohv $+($str($nick,$chr(32)),5)

besides, ur tryin to set five modes and ur only putting 4 $nick's ;)

also u dont need the "else halt"

and lastly,
Code:

  if ($nick == %vop [ $+ [ $nick ] ]) { /mode $chan +v $nick $Nick }

u dont need $nick $Nick if ur only setting one mode on the nick
Get_A_Fix
Comments: 12
 
mIRC Snippet:  Access Bot
Posted on Jan 17, 2008 3:35 am
Code:

if ($nick == %owner) && ($3 == sop) { set %sop $+ $2 $2 | msg $chan $2 Has been added to 4Sop 1list! }


The above, as mountaindew said is kinda useless. It would be much better to take advantage of the userlist, adding users to levels. /help auser and/or /help guser
mountaindew
Comments: 1,640
 
mIRC Snippet:  Access Bot
Posted on Jan 17, 2008 1:55 pm
Quote:

Code:

if ($nick == %owner) && ($3 == sop) { set %sop $+ $2 $2 | msg $chan $2 Has been added to 4Sop 1list! }

The above, as mountaindew said is kinda useless. It would be much better to take advantage of the userlist, adding users to levels. /help auser and/or /help guser

i never said it was useless, i just said check if $nick == %owner once, then under it list the $3's so u dont have to check it on every line
Chat-Police
Comments: 8
 
mIRC Snippet:  Access Bot
Posted on Feb 19, 2008 9:29 pm
this is simular to a script i made to add access to a bot i had already made.

on the whole nice simple access script well done M[n]M

M[n]M
Comments: 95
 
mIRC Snippet:  Access Bot
Posted on Feb 21, 2008 1:09 pm
lol ty :)

Please Register or Login to start posting comments.
Bottom