Hello! I want to make a Nickregistartions Script that work with NickServ... I don't know how to release it! Can anyone help me? on *:TEXT:!nreg*:#test:{ set %nreg_nick $2 set %nreg_pw $3 set %nreg_email $4 .ns info %nreg_nick } on *:NOTICE:*:?:{ if (($nick == NickServ) && (is isin $3)) { /ms...
Is that right? [mIRC-Code] on *:TEXT:!no_chan*:#services:{ set %no_chan_chan $2 set %no_chanrs $3 /as security nochan add %no_chan %no_chanrs unset %no_chan_chan unset %no_chanrs } [TCL-Code] bind pub - !no_chan no_chan proc no_chan {n u h c t} { if {[string tolower $c] == "#services"} { s...
I was wondering if some one could help me translate this into tcl. on *:TEXT:!nreg*:#services:{ set %nreg_nick $2 set %nreg_pw $3 set %nreg_email $4 /timer 1 1 /qline %nreg_nick nick registering /timer 1 2 /nick %nreg_nick /timer 1 3 /ns REGISTER %nreg_pw %nreg_email /timer 1 4 /ns set protect on /t...