mIRC Home    About    Download    Register    News    Help

Print Thread
#39326 02/08/03 10:02 PM
Joined: Dec 2002
Posts: 397
A
ATMA Offline OP
Fjord artisan
OP Offline
Fjord artisan
A
Joined: Dec 2002
Posts: 397
ok i am messageing chanserv and it replys with the commands then i use tokenize to make it break it all up and put it in the dialog box

so far this is all i have and i cant figur out how to do the rest could some one plz help me?
confused confused

Code:
alias srvx { dialog -m contsrvx contsrvx }
dialog contsrvx {
  title "SRVX Control Panel"
  size -1 -1 52 102
  option dbu
  list 1, 1 2 47 97, size
}
alias returninger { .msg chanserv help commands }
on *:dialog:contsrvx:init:*: {
  .tokenize 32 $returninger
  .did -a contsrvx 1 $1-
}


Need amazing web design for low price: http://www.matrixn3t.net
#39327 03/08/03 03:37 AM
Joined: Jul 2003
Posts: 655
Fjord artisan
Offline
Fjord artisan
Joined: Jul 2003
Posts: 655
on ^*:NOTICE:... on ^*:SERVERNOTICE:... depending on the way the ircd is set (but most just use ChanServ/NickServ nicknames)

/help tokens


"Allen is having a small problem and needs help adjusting his attitude" - Flutterby
#39328 03/08/03 03:45 AM
Joined: Dec 2002
Posts: 397
A
ATMA Offline OP
Fjord artisan
OP Offline
Fjord artisan
A
Joined: Dec 2002
Posts: 397
heh well i got the script to work just fine long ago i got some help from kingtomato lol

alias csrvx {
.enable #chanserv.cmds
.tokenize 32 $srvxcom
.dialog -m contsrvx contsrvx
}
dialog contsrvx {
title "SRVX Control Panel"
size -1 -1 52 102
option dbu
list 1, 1 2 47 97, size
}
alias srvxcom { .msg chanserv help commands }
#chanserv.cmds off

on 1:NOTICE:*:*: {
if ($nick == chanserv) {
.did -a contsrvx 1 $1
.did -a contsrvx 1 $2
}
.timercscmds 1 1 .disable #chanserv.cmds
}
#chanserv.cmds end


Need amazing web design for low price: http://www.matrixn3t.net
#39329 03/08/03 03:50 AM
Joined: Jul 2003
Posts: 655
Fjord artisan
Offline
Fjord artisan
Joined: Jul 2003
Posts: 655
Heh, ok kool. Btw, i should have put SNOTICE not SERVERNOTICE.
Noticed that as i responded to your other thread.


"Allen is having a small problem and needs help adjusting his attitude" - Flutterby

Link Copied to Clipboard