mIRC Home    About    Download    Register    News    Help

Print Thread
#12409 22/02/03 01:31 PM
Joined: Jan 2003
Posts: 48
O
oSaYaP Offline OP
Ameglian cow
OP Offline
Ameglian cow
O
Joined: Jan 2003
Posts: 48
ok .. hi everybody ..
I would like to create an "on 1:input:"
eg: if i say "voice osayap" the remote put +v to the nick i said
but i would not want that the other people see what i wrote ..
something with "halt" maybe?
Thanks ..


-= Porque pese a todo Dios .. aún te tengo fé =-
#12410 22/02/03 01:47 PM
Joined: Jan 2003
Posts: 108
H
Vogon poet
Offline
Vogon poet
H
Joined: Jan 2003
Posts: 108
so wait, you want an on imput script that doenst print what you say...?

#12411 22/02/03 03:55 PM
Joined: Feb 2003
Posts: 15
R
Pikka bird
Offline
Pikka bird
R
Joined: Feb 2003
Posts: 15
try this idea ...

on *:input:*: { if (/voice* iswm $1) { mode $2 +v $3 } }

you need to type /voice #chan nickname
ex: /voice #chat osayap

#12412 22/02/03 03:59 PM
Joined: Dec 2002
Posts: 77
B
Babel fish
Offline
Babel fish
B
Joined: Dec 2002
Posts: 77
Code:
on *:INPUT:#: {
  if $1 == voice && $2 {
    mode $chan +v $2
    halt
  }
}

#12413 22/02/03 04:08 PM
Joined: Feb 2003
Posts: 15
R
Pikka bird
Offline
Pikka bird
R
Joined: Feb 2003
Posts: 15
sorry forgot to add halt command it would be ...

on *:input:*: { if (/voice* iswm $1) { mode $2 +v $3 | halt } }


Link Copied to Clipboard