mIRC Home    About    Download    Register    News    Help

Print Thread
#158669 07/09/06 07:13 PM
Joined: Aug 2006
Posts: 24
A
Ameglian cow
OP Offline
Ameglian cow
A
Joined: Aug 2006
Posts: 24
Code:
dialog voice {
  title "Voice system"
  size -1 -1 103 102
  option dbu notheme
  edit "", 5, 56 6 43 10
  text " Nick", 1, 7 6 45 8
  button "Add", 2, 61 17 32 12, flat
  edit "List", 4, 4 20 54 32
  button "OK", 6, 6 54 23 12, ok flat
  button "Cancel", 3, 31 54 23 12, cancel flat
  button "OFF", 7, 61 46 32 12, flat
  button "ON", 8, 61 31 32 12, flat
  box "", 9, 3 70 61 14
}

I need script when i write text into box "Nick", i push Add and script added /auser voice nickname.
Thx

#158670 07/09/06 07:37 PM
Joined: Mar 2005
Posts: 420
X
Fjord artisan
Offline
Fjord artisan
X
Joined: Mar 2005
Posts: 420
Code:
 On *:DIALOG:voice:sclick:2:  if ( $did(5) ) auser voice $v1 


If you have a plastic floor runner over your tiles, then you're one Hella Pinoy!
#158671 07/09/06 08:09 PM
Joined: Aug 2006
Posts: 24
A
Ameglian cow
OP Offline
Ameglian cow
A
Joined: Aug 2006
Posts: 24
dont work

#158672 07/09/06 10:24 PM
Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
It works fine on my test...what are you seeing or not seeing that indicates to you that it's not working?

#158673 08/09/06 09:56 AM
Joined: Aug 2006
Posts: 24
A
Ameglian cow
OP Offline
Ameglian cow
A
Joined: Aug 2006
Posts: 24
script dont give user

#158674 08/09/06 10:01 AM
Joined: Aug 2006
Posts: 24
A
Ameglian cow
OP Offline
Ameglian cow
A
Joined: Aug 2006
Posts: 24
sry it works

#158675 08/09/06 10:04 AM
Joined: Aug 2006
Posts: 24
A
Ameglian cow
OP Offline
Ameglian cow
A
Joined: Aug 2006
Posts: 24
I need script when i add user into users list the nickname must be into box List

#158676 08/09/06 11:14 PM
Joined: Dec 2005
Posts: 58
S
Babel fish
Offline
Babel fish
S
Joined: Dec 2005
Posts: 58
Code:
on *:dialog:voice:sclick:2:$iif($did(4) == List,did -r $dname 4) | .did -a $dname 4 $did(5) $+ $crlf


add multiline quality to dialog id 4

like this ;
Code:
  edit "List", 4, 4 20 54 32, multi


i like that

Link Copied to Clipboard