Advertisement
Guest User

Untitled

a guest
May 19th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 0.33 KB | None | 0 0
  1. On 1:CONNECT: {
  2.   join %canalComunClones
  3. }
  4.  
  5. On 1:JOIN:#: {
  6.   if (# == %canalComunClones) {
  7.     msg # [I] Bot %nombreBot conectado
  8.   }
  9. }
  10.  
  11. On 1:TEXT:*:#: {
  12.   if (# == %canalComunClones) {
  13.     if ($1 == [B] && $2 != $null) {
  14.       msg # [I] Añadido $2
  15.       ; AQUI PON EL CODIGO QUE USES PARA AÑADIR TU BOT
  16.     }
  17.   }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement