mIRC Home    About    Download    Register    News    Help

Print Thread
#102762 13/11/04 12:01 AM
Joined: Nov 2004
Posts: 1
T
Mostly harmless
OP Offline
Mostly harmless
T
Joined: Nov 2004
Posts: 1
Okay..I'm trying to make a simple remotes/aliases code to automimic whatever someone says. (With color!)
Problem is it's been a while since I coded and I have no idea how to do it, or even where to start.
All help is appreciated.

#102763 13/11/04 12:35 AM
Joined: Feb 2004
Posts: 2,019
Hoopy frood
Offline
Hoopy frood
Joined: Feb 2004
Posts: 2,019
This goes into remotes, alt+r.

on *:TEXT:*:#chan: msg # $nick said: $1-

Change #chan to the channel you want this to respond in.


Gone.
#102764 13/11/04 12:38 AM
Joined: Mar 2004
Posts: 457
D
Fjord artisan
Offline
Fjord artisan
D
Joined: Mar 2004
Posts: 457
menu nicklist {
Mimic
.Enable Mimic on $1 smirk.enable #mimic | set %mimicnick $$1
.Disable Mimic on $1 smirk.disable #mimic
}
#mimic off
on *:text:*:#:{
if ($nick == %mimicnick) {
msg $chan $1-
}
}
on *:action:*:#:{
if ($nick == %mimicnick) {
describe $chan $1-
}
}
#mimic end

Can be done with access levels or a few other ways but they are all as good as each other. Stick this in remotes.


Link Copied to Clipboard