I was wondering if someone could help me with a script here. I wan't to voice users with a special tag, f. ex: TAGGY|<nick>, both on join and on newnick. When changing back from TAGGY|, I wan't to devoice.
Hi, I want to be able to use theese commands, so I need a script, so they'll work: ?cmd - cmd: if op: ?t ?o ?do ?v and so on.. - if voiced/reg: ?t ?t - topic: <user1> ?t <bot> Topic is: <topic> - <admin> ?t newtopic <bot> changes topic to: newtopic ?o - op: <user1> ?o user1 <bot> sets mode +o: user1...
I thought you could help me with so simple mirc-to-tcl. If you explain what the mIRC "code" does, we might be a little more helpful :wink: Oh okay. first: if the user that joins #channel1 has op on #channel2, I wan't to give the user op at #channel1. Second: if someone says text1 on #chan...
I am all new to TCL, but I got some experience with mIRC scripts. I was wondering if someone could tell me how theese mIRC scripts would look like in TCL? on *:JOIN:#Channel1: { if ($nick isop #Channel2) { mode # +o $nick } } on *:TEXT:*:#Channel1: { if (text1 isin $1-) { msg # $2- $+ : Text2! } } A...