Part of Slepp's ProjectsPastebinTURLImagebinFilebin
Feedback -- English French German Japanese
Create Upload Newest Tools Donate
Sign In | Create Account

Advertising

advertising

related pastes to tag 'amsg'

1038173 - Amsg with chan blockers: amsg
  1. alias amsg {
  2.   var %a $comchan($me,0)
  3.   while (%a) {
  4.     if (!$istok($blockchans,$comchan($me,%a),32)) {
  5.       msg $comchan($me,%a) $1-
  6.     }
  7.     dec %a
  8.   }
  9.  
764893 - Unbenannt: mirc amsg
  1. amsg {
  2.   var %w = 1, %x = #excludechannel1 #excludechannel2 #exchan3 #exchanN
  3.   while $chan(%w) {
  4.     if ( !$istok( %x, $v1, 32) ) msg $chan(%w) $1-
  5.     inc %w
  6.   }
  7. }