Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Mar 20th, 2010 | Syntax: None | Size: 0.97 KB | Hits: 123 | Expires: Never
Copy text to clipboard
  1. alias trigger {
  2.   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
  3.   %last = %last - %strt
  4.  
  5.   while (%i <= %last) {
  6.     if (%strt == $null || %manga == $null || %last == $null || %k = $null) || (%strt !isnum || %last !isnum || %k !isnum || %manga isnum) {
  7.       halt
  8.     }
  9.     else {
  10.       .timer 1 %d msg = $+ $nick chtrigger %k ! $+ %manga $+ %strt
  11.     .timer 1 %e msg = $+ $nick cannounce #nerieru %k 10New Release7 ! $+ %manga $+ %strt $+    }
  12.     inc %strt
  13.     inc %i
  14.     inc %d 2
  15.     inc %k
  16.     inc %e 3
  17.   }
  18.  
  19.   %chan = #nerieru
  20.  
  21.   %ctopic = $chan(%chan).topic
  22.  
  23.   %oldchap = $calc((%strt - 1) - %i)
  24.  
  25.   %oldtrig = %manga $+ %oldchap
  26.  
  27.   %newchap = $calc(%strt - 1)
  28.  
  29.   %newtrig = %manga $+ %newchap
  30.  
  31.   if ($wildtok(%ctopic, * $+ %oldtrig $+ *, 0, 32) > 0 ) {
  32.     %ctopic = $replace(%ctopic,%oldtrig,%newtrig)
  33.     .topic %chan %ctopic
  34.   }
  35. }