AutoVoice 1.0

By Opasna-Bagra on Jan 20, 2007

I make this snippet for people who have to give auto voice on users who join on any channel , and i think its nice...

;----------------------------------------------------------
; Auto Voice System v1.0                                  |
; By OpasnaBagra                                          |
; Copyrighted, All rights reserved                        |
;----------------------------------------------------------

on 1:load:{
  echo -a 9S14ucessfully 9L14oad 9C14omplite 9A14uto9V14oice
  echo -a 9C14reated 9O14n 9S14aturday 7, 9J14anuary 9 20 7,14 2007  
  echo -a 9A14uthor7: 9Opasna14Bagra    
  echo -a 9R14eport 9Y14our 9B14ugs7/9C14omments7/9S14uggestions 

9M14ail 9M14e 9T14o 7(9Opasna14Bagra8@9yahoo9.14com
}
on 1:JOIN:#: {
  if(%autovoice == on) { goto auto }
  if(%autovoice == off) { goto end }
  :auto
  if($me == isop) { goto give }
  else { goto end }
  :give
  /mode # +v $nick
  :end
}

alias techo {
  if (%scriptstamp == 1) { echo -at %s $1- }
  else { echo -a %s $1- }
}
menu menubar,nicklist,channel {
-
Autovoice ( $+ %autovoice $+ )
.On:/set %autovoice on | /techo Autovoice is now ON
.-
.Off:/set %autovoice off | /techo Autovoice is now OFF
.-
.Unload:/unload -rs autovoice.mrc | /echo -a Unloaded successfully...
} 

Comments

Sign in to comment.
youngblood   -  Jan 22, 2008

on 1:JOIN:#: {
if(%autovoice == on) { goto auto }both of these
if(%autovoice == off) { goto end }space the if and (
:auto
if($me == isop) { goto give }delete this
else { goto end }delete this
:give
/mode # +v $nick
:end
}

for it to work it

 Respond  
youngblood   -  Jan 22, 2008

on 1:JOIN:#: {
if (%autovoice == on) { goto auto }
if (%autovoice == off) { goto end }
:auto
:give
/mode # +v $nick
:end
}

ok i deleted the parts that needed it to work just change this to the one u have for it to work i did try the way u had it and it was saying error so i tweeked it now it works

 Respond  
Lindrian   -  Jan 26, 2007

as i forgot to say in my previous post, the alias in your script doest do anything, which proves thats its a part cut out from another script.

 Respond  
Lindrian   -  Jan 26, 2007

Opsana, you should be banned for ripping like this. Its not even realistic.

 Respond  
Opasna-Bagra   -  Jan 21, 2007

now i remove load 2

 Respond  
DarthReven   -  Jan 21, 2007

Ok couple of things here: A) you have 2 Load events where you only need 1 B) what is the techo alias for? C) The goto loops in the JOIN event aren\'t needed in this case.

 Respond  
Opasna-Bagra   -  Jan 20, 2007

on my script this auto voice work good

 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.