Advertisement
JuanJito

xcfgfzdsfzdfg

Jun 7th, 2025
936
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 2.83 KB | Source Code | 0 0
  1. if ($strip($gettok(%tmp,3,32)) == %canaldjs) {
  2.   if ($buscaradmin(%nu) == OK) || (%nu == %rootbots) || ($buscardj(%nu) == OK) {
  3.     if ($strip($gettok(%tmp,4,32)) == :!help) {
  4.       %mc :Te envío la lista de comandos al privado %nu
  5.       set %help.count 1
  6.       .timermsghelp 0 800 ayuda_linea %nu
  7.     }
  8.   }
  9. }
  10.  
  11. alias ayuda_linea {
  12.   var %nu = $1
  13.   if (%help.count == 1) msg %nu 4Comandos disponibles en el canal:
  14.   if (%help.count == 2) msg %nu 1
  15.   if (%help.count == 3) msg %nu 12!emitir/!autodj sirve para emitir o poner el AutoDJ.
  16.   if (%help.count == 4) msg %nu 12!peticiones <on/off> sirve para activar/desactivar las peticiones.
  17.   if (%help.count == 5) msg %nu 12!lista sirve para ver las peticiones pendientes.
  18.   if (%help.count == 6) msg %nu 12!hora.add <hora> sirve para elegir una hora de la 12!parrilla
  19.   if (%help.count == 7) msg %nu 12!hora.del <hora> sirve para eliminar una hora de la 12!parrilla
  20.   if (%help.count == 8) msg %nu 1
  21.   if (%help.count == 9) msg %nu 4NOTA: Los Administradores pueden eliminar cualquier hora de la parrilla.
  22.  
  23.   if ($buscaradmin(%nu) == OK) || (%nu == %rootbots) {
  24.     if (%help.count == 10) msg %nu 1
  25.     if (%help.count == 11) msg %nu 4Comandos de administración:
  26.     if (%help.count == 12) msg %nu 1
  27.     if (%help.count == 13) msg %nu 12!add.dj <nick> sirve para agregar un DJ.
  28.     if (%help.count == 14) msg %nu 12!del.dj <nick> sirve para eliminar un DJ.
  29.     if (%help.count == 15) msg %nu 12!list.dj sirve para ver la lista de DJs.
  30.     if (%help.count == 16) msg %nu 12!add.fan <nick> sirve para agregar un Fan.
  31.     if (%help.count == 17) msg %nu 12!del.fan <nick> sirve para eliminar un Fan.
  32.     if (%help.count == 18) msg %nu 12!list.fan sirve para ver la lista de Fans.
  33.     if (%help.count == 19) msg %nu 12!add.canal <#canal> sirve para agregar un Canal.
  34.     if (%help.count == 20) msg %nu 12!del.canal <#canal> sirve para eliminar un Canal.
  35.     if (%help.count == 21) msg %nu 12!list.canal sirve para ver la lista de Canales.
  36.     if (%help.count == 22) msg %nu 12!reset sirve para resetear la parrilla entera.
  37.     if (%help.count == 23) msg %nu 12!global <mensaje> sirve para enviar un mensaje global a todos los canales.
  38.     if (%help.count == 24) msg %nu 12!soporte <mensaje> sirve para enviar un mensaje al Soporte.
  39.     if (%help.count == 25) msg %nu 12!start/!auto/!stop activa/desactiva el anuncio de la radio.
  40.     if (%help.count == 26) msg %nu 12!solicitudes.del <nick>/<#canal> elimina solicitudes de DJs o Canales.
  41.     if (%help.count == 27) msg %nu 12!solicitudes.list muestra las solicitudes pendientes.
  42.     if (%help.count == 28) msg %nu 12!solicitudes.reset elimina todas las solicitudes pendientes.
  43.     if (%help.count >= 29) .timermsghelp off
  44.   }
  45.   else {
  46.     if (%help.count >= 10) .timermsghelp off
  47.   }
  48.   inc %help.count
  49. }
  50.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement