;############################################################################ ; دخول وخروج لصيد الانفايت ;############################################################################ menu channel { Cycle Channel:/cycle } ; This alias command (/cycle) is what you type in a channel window to cycle channels alias cycle { if ($version <= 5.11 || $version == $null) { echo 4 -a CYCLE.MRC can not run on any version of mIRC older then 5.3x | return } if ($chan == $null) { echo 4 -a You can only use this command within a Channel Window return } part $chan Cycling .timer -m 1 500 cycle.rejoin $chan } ; This alias command (/cycle.rejoin) is used by CYCLE.MRC and should not be typed by the user alias cycle.rejoin { if ($version <= 5.11 || $version == $null) { return } if ($1 == $null || $server == $null) { return } if ($chan($1) == $null) { join $1 return } .timer -m 1 500 cycle.rejoin $1 } ; returns the name of the addon, it's version #, the author's nick, and the homepage of the author alias thank dialog -mo thank thank dialog thank { title "Add-ons By CoteDor" size -1 -1 200 180 box "",1,5 0 190 70 text "Thank you for loading this Add-on written by CoteDor. Please visit my website for more add-ons and other IRC tools. Have fun.",2,10 12 180 50,left box "",3,5 68 190 86 text "Banned@LoveMaiL.Com",4,10 80 180 15,center edit "http://Chan-Scripts.Cjb.Net",5,33 100 130 22,center,read button "Visit",6,70 127 50 20 button "Close",7,5 158 190 20,ok } on *:dialog:thank:init:0:/did -f thank 6 on *:dialog:thank:sclick:6:/run http://chan-scripts.cjb.net on *:load:{ thank } }