Untitled
By: a guest | Mar 20th, 2010 | Syntax:
None | Size: 0.97 KB | Hits: 123 | Expires: Never
alias trigger {
var %manga $?="Enter Manga Name without !", %strt $?="First Chapter Number", %last $?="Enter last chapter", %k $?="Enter First packet Number", %i = 0, %d = 0, %e = 1
%last = %last - %strt
while (%i <= %last) {
if (%strt == $null || %manga == $null || %last == $null || %k = $null) || (%strt !isnum || %last !isnum || %k !isnum || %manga isnum) {
halt
}
else {
.timer 1 %d msg = $+ $nick chtrigger %k ! $+ %manga $+ %strt
.timer 1 %e msg = $+ $nick cannounce #nerieru %k 10New Release7 ! $+ %manga $+ %strt $+ }
inc %strt
inc %i
inc %d 2
inc %k
inc %e 3
}
%chan = #nerieru
%ctopic = $chan(%chan).topic
%oldchap = $calc((%strt - 1) - %i)
%oldtrig = %manga $+ %oldchap
%newchap = $calc(%strt - 1)
%newtrig = %manga $+ %newchap
if ($wildtok(%ctopic, * $+ %oldtrig $+ *, 0, 32) > 0 ) {
%ctopic = $replace(%ctopic,%oldtrig,%newtrig)
.topic %chan %ctopic
}
}