Sorasyn commented on a Page, Services Dialog  -  Sep 10, 2009

instead of having a new dialog per command

on *:DIALOG:rsd1:sclick:1:{ /chanserv set $did(55) founder $did(3) }
on *:DIALOG:rsd1:sclick:4:{ /chanserv set $did(55) successor $did(5) }
on *:DIALOG:rsd1:sclick:6:{ /chanserv set $did(55) password $did(7) }
on *:DIALOG:rsd1:sclick:8:{ /chanserv set $did(55) desc $did(9) }

you could string em together with

on *:dialog:rsdl:sclick:*:{
if ($did = 1) /chanserv set $did(55) founder $did(3)
if ($did = 4) /chanserv set $did(55) successor $did(5)
if ($did = 6) /chanserv set $did(55) password $did(7)
if ($did = 8) /chanserv set $did(55) desc $did(9)
}

but very nice none-the-less :DDDD 8/10

am actually making one of these myself :P but its a slow n painful process lol

 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.