auto perform
Posted by Technique
Saturday, November 11, 2006
Description:
Didn't do it in Dialogs but I am planning on creating 1 tonight some time, But I made this 1 with basic alias and while loops lol. Got bored so.
Didn't do it in Dialogs but I am planning on creating 1 tonight some time, But I made this 1 with basic alias and while loops lol. Got bored so.
on *:CONNECT:{
timeraper 1 20 chanperform
}
alias chanperform {
%x = 1
while (%x <= $lines(mybot.txt)) {
%y = $read(mybot.txt,%x)
join %y
inc %x
}
}
alias addchan {
write mybot.txt $1
echo -a Added $1
}
alias delchan {
rem mybot.txt $1
echo -a Deleted $1
}