MIRCX IRC Network
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Search
 
 

Display results as :
 


Rechercher Advanced Search

Web Applications
install Joomla Wordpress Phpbb Drupal FluxBB PunBB osCommerce simple-machines MYBB moodle vBulletin Dolphin-v.7.1.1 PHPNUKE XOOPS
Services
install BorkNet Services X3 Services Anope Atheme Services Srvx IRC Srervices
IRCD
install Snircd IRCU INSPIRCD UNREAL Nefarious Bircd Bahamut Asuka Charybdis
TCL SCRIPT
TCL SCRIPT FOR EGGDROP Allprotection4.7 Antiproxy
Bots
Bots install FishBot bobot++ Eggdrop janus Omega Security Services Botnix Bopm SupyBot PyLink Hopm
Latest topics
» מדריך גירסה INSPIRCD V4
mp3 Script EmptySat Aug 05, 2023 2:09 am by Chief

» mIRCx IRC Network Config
mp3 Script EmptySat Jul 15, 2023 9:51 pm by Chief

» ircu2.10.12-pk with dnsbl
mp3 Script EmptyFri Mar 10, 2023 2:22 pm by Admin

» Guide install PyLink on New version FreeBSD
mp3 Script EmptyThu Dec 15, 2022 9:39 pm by Chief

» מדריך התקנה PBot על מערכת הפעלה FreeBsd-12
mp3 Script EmptyMon Dec 05, 2022 5:44 am by Chief

» install Nefarious2 && X3 IRC Services in FreeBsd
mp3 Script EmptySat Nov 12, 2022 3:12 pm by Chief

» help problem with adduser in Freebsd 12
mp3 Script EmptyFri Nov 11, 2022 9:06 pm by Chief

» מדריך פקודות והתקנה בסרביס X3
mp3 Script EmptyFri Oct 28, 2022 1:43 pm by Chief

» מדריך הגדרות WebIRC in Nefarious2
mp3 Script EmptyThu Apr 07, 2022 4:45 am by Chief

April 2024
MonTueWedThuFriSatSun
1234567
891011121314
15161718192021
22232425262728
2930     

Calendar Calendar

Affiliates
free forum

Affiliates
free forum


mp3 Script

Go down

mp3 Script Empty mp3 Script

Post  Admin Thu Apr 12, 2012 2:42 pm

Code:

dialog mp3player {
  title "Mp3-Player [/mp3]"
  size 33 -1 137 118
  option dbu
  list 1, 0 28 137 70, sort size hsbar
  button "Play", 2, 58 16 21 12
  button ">|", 3, 110 16 26 12
  button "|<", 4, 1 16 26 12
  button "Stop", 6, 82 16 26 12
  edit "Nothing is played", 7, 28 1 109 14, read autohs center
  edit "00:00", 8, 0 1 28 14, read center
  edit "", 9, 0 98 137 10, read
  check "Pause", 5, 29 16 26 12, push
  edit "", 16, 0 108 137 10, read
  menu "Menu", 10
  item "Set Directory", 11, 10
  menu "Options", 12
  item "Spam options", 13, 12
  item break, 14, 12
  item "Volume control", 15, 12
  item "ID3 viewer", 17, 12
}

on *:dialog:mp3player:menu:15 {
  if (!$dialog(vol)) { dialog -md vol vol }
  else { dialog -v vol vol }
}
dialog id3viewer {
  title "IDv3"
  size -1 -1 79 73
  option dbu
  edit "", 1, 26 2 50 10, read autohs
  text "Artist", 2, -2 3 25 9, center
  text "Title", 3, -2 14 25 9, center
  edit "", 4, 26 13 50 10, read autohs
  text "Album", 5, -2 26 25 9, center
  edit "", 6, 26 25 50 10, read autohs
  text "Genre", 7, -2 38 25 9, center
  edit "", 8, 26 37 50 10, read autohs
  text "Channel", 9, -2 50 25 9, center
  edit "", 10, 26 49 50 10, read autohs
  text "Bitrate", 11, -2 62 25 9, center
  edit "", 12, 26 61 50 10, read autohs
}
dialog spamopt {
  title "Spam options"
  size -1 -1 142 98
  option dbu
  box "Spam to", 1, 3 0 138 34
  radio "", 2, 8 20 9 10
  radio "", 3, 8 8 8 10
  edit "#channel1,#channel2", 4, 64 20 72 10, autohs
  box "Spam Message", 9, 3 34 138 51
  edit "", 10, 11 42 122 10, autohs
  text "Available identfiers : <title> , <artist> , <album> , <genre> , <mode> , <bitrate> , <year> , <length> ", 11, 6 64 133 18
  button "Clear", 5, 55 52 37 8
  button "Preview", 12, 95 52 37 8
  button "Restore default", 13, 11 52 41 8
  button "Save", 14, 107 87 33 9
  check "", 15, 3 86 8 10
  text "Enable spamming", 16, 12 87 48 8
  text "All channels", 17, 17 9 49 8
  text "Some channels", 18, 17 21 41 8
}
on *:dialog:spamopt:sclick:5 {
  if ($did(10)) { .did -r spamopt 10 }
}
on *:dialog:spamopt:sclick:12 {
  if ($did(10)) { echo -a $did(10) }
}
dialog vol {
  title "Volume"
  size -1 -1 78 34
  option dbu
  button "+", 1, 1 1 37 12
  button "-", 2, 40 1 37 12
  edit "", 3, 0 14 76 10, read center
  text "Mute", 4, 9 25 25 8
  check "Check Box", 5, 0 24 8 10
}
on *:dialog:vol:sclick:5 {
  if ($did(5).state) {
    /vol -pu1
  }
  else { vol -pu2 }
}
on *:dialog:vol:sclick:1 {
  vol -p $calc($vol($insong.fname) + 3000)
  did -ra vol 3 $vol($insong.fname)
}
on *:dialog:vol:sclick:2 {
  vol -p $calc($vol($insong.fname) - 3000)
  did -ra vol 3 $vol($insong.fname)
}
on *:dialog:vol:init:*:/did -ra vol 3 $vol($insong.fname)

on *:dialog:spamopt:sclick:13 {
  did -ra spamopt 10 14Pla15Y14ing 15?4[14<artist> 4- 14<title>4]15?4[7A14lbum: 14<album>4]15?4[7B14it7R14ate:<bitrate> kbps4]15?4[7L14ength: <length>4]15 ?-2G£4X2 Mp04315-?
}
on *:dialog:spamopt:sclick:14 {
  if ($did(10)) { hadd -m mp3.player spam.message $did(10) }
  if ($did(2).state) { hadd -m mp3.player spam.channels $did(4) | hadd -m mp3.player spam.mode some }
  if ($did(3).state) { hdel mp3.player spam.mode }
  if ($did(15).state) { hadd -m mp3.player spam.option 1 }
  else { hdel mp3.player spam.option }
  dialog -x spamopt spamopt
}
on *:dialog:mp3player:menu:13 {
  if (!$dialog(spamopt)) { dialog -md spamopt spamopt }
}


on *:dialog:spamopt:init:* {
  if ($hget(mp3.player,spam.mode) == some) { did -c spamopt 2 }
  else { did -c spamopt 3 }
  if ($hget(mp3.player,spam.option)) { did -c spamopt 15 }
  if ($hget(mp3.player,spam.message)) { did -a spamopt 10 $hget(mp3.player,spam.message) }
  else { did -a spamopt 10 14Pla15Y14ing 15?4[14<artist> 4- 14<title>4]15?4[7A14lbum: 14<album>4]15?4[7B14it7R14ate:<bitrate> kbps4]15?4[7L14ength: <length>4]15 ?-2G£4X2 Mp04315-? }
  if ($hget(mp3.player,spam.channels)) { did -ra spamopt 4 $hget(mp3.player,spam.channels) }
}
alias mp3player { dialog -md mp3player mp3player }
on *:dialog:mp3player:init:* {

  var %rt $findfile($hget(mp3.player,directory),*.mp3,0,did -a mp3player 1 $nopath($1-))
  unset %rt

}
on *:dialog:mp3player:menu:17 {
  dialog -md id3viewer id3viewer
}
on *:dialog:id3viewer:init:* {


  if ($sound($insong.fname).artist) { did -a id3viewer 1 $sound($insong.fname).artist }
  else { did -a id3viewer 1 NA }
  if ($sound($insong.fname).title) { did -a id3viewer 4 $sound($insong.fname).title }
  else { did -a id3viewer 4 NA }
  if ($sound($insong.fname).album) { did -a id3viewer 6 $sound($insong.fname).album }
  else { did -a id3viewer 6 NA }
  if ($sound($insong.fname).genre) { did -a id3viewer 8 $sound($insong.fname).genre }
  else { did -a id3viewer 8 NA }
  if ($sound($insong.fname).mode) { did -a id3viewer 10 $sound($insong.fname).mode }
  else { did -a id3viewer 10 NA }
  if ($sound($insong.fname).bitrate) { did -a id3viewer 12 $sound($insong.fname).bitrate KBPS }
  else { did -a id3viewer 12 NA }
}

on *:dialog:mp3player:sclick:4 {
  did -c mp3player 1 $didwm(mp3player,1,$gettok($nopath($insong.fname),1,46))
  if ($did(1).sel > 1) {
    did -c mp3player 1 $calc($did(1).sel - 1)
    playsong
  }
  else {
    did -c mp3player 1 $did(1).lines
    playsong
  }
}
on *:dialog:mp3player:menu:11 {
  hadd -m mp3.player directory $sdir($iif($hget(mp3.player,directory),$v1,$scriptdir),Choose your mp3 directory)
  did -r mp3player 1
  var %xa $findfile($hget(mp3.player,directory),*.mp3,0,did -a mp3player 1 $nopath($1-))
  unset %xa
}
alias playsong {
  splay -p " $+ $findfile($hget(mp3.player,directory),$did(mp3player,1).seltext,1) $+ "
  hadd -m mp3.player being.played.number $didwm(mp3player,1,$gettok($nopath($insong.fname),1,46))
  did -ra mp3player 7 $sound($insong.fname).artist - $sound($insong.fname).title
  did -ra mp3player 9 FileSize : $mid($calc($file($insong.fname).size / 1000000),1,4) MB / Duration : $asctime($round($calc(($insong.length) / 1000),0),nn:ss),none)
  did -ra mp3player 16 Status : you are playing the $did(mp3player,1).sel $+ th File Out of $did(mp3player,1).lines Files
  if ($uptime(server)) {
    if ($hget(mp3.player,spam.option)) {
      if ($hget(mp3.player,spam.mode) != some) { amsg $replace($hget(mp3.player,spam.message),<title>,$sound($insong.fname).title,<artist>,$sound($insong.fname).artist,<album>,$sound($insong.fname).album,<genre>,$sound($insong.fname).genre,<mode>,$sound($insong.fname).mode,<bitrate>,$sound($insong.fname).bitrate,<year>,$sound($insong.fname).year,<length>,$asctime($calc($insong.length / 1000),nn:ss)) }
      else {
        var %x 1
        while (%x <= $numtok($hget(mp3.player,spam.channels),44)) {
          if ($chan($gettok($hget(mp3.player,spam.channels),%x,44))) {
            msg $gettok($hget(mp3.player,spam.channels),%x,44) $replace($hget(mp3.player,spam.message),<title>,$sound($insong.fname).title,<artist>,$sound($insong.fname).artist,<album>,$sound($insong.fname).album,<genre>,$sound($insong.fname).genre,<mode>,$sound($insong.fname).mode,<bitrate>,$sound($insong.fname).bitrate,<year>,$sound($insong.fname).year,<length>,$asctime($calc($insong.length / 1000),nn:ss))

          }
          inc %x
        }
      }
    }
  }
  .hsave -o mp3.player " $+ $scriptdir $+ mp5.hsh $+ "
  .timermp3 0 0 filler
}
alias filler {
  did -ra mp3player 8 $asctime($round($calc(($insong.length - $insong.pos) / 1000),0),nn:ss),none)
}
on *:dialog:mp3player:dclick:1 {
  playsong
}
on *:dialog:mp3player:sclick:2 {
  if ($did(1).seltext) {
    playsong
  }
  else { echo -a 2G£4X2 Mp043 7»« 2Make a selection }

}
alias playnextsong {
  if ($did(mp3player,1).sel < $did(mp3player,1).lines) {
    var %x $calc($did(mp3player,1).sel + 1)
    did -c mp3player 1 %x
    playsong
  }
  else { restartplay }
}
on *:dialog:mp3player:sclick:3 {

  did -c mp3player 1 $didwm(mp3player,1,$gettok($nopath($insong.fname),1,46))
  playnextsong

}
alias restartplay {
  did -c mp3player 1 1
  playsong
}
on *:mp3end {
  did -c mp3player 1 $hget(mp3.player,being.played.number)
  playnextsong
}
on *:dialog:mp3player:sclick:5 {
  if (!$did(5).state) {
    splay resume
  }
  else {
    splay pause
  }
}
on *:dialog:mp3player:sclick:6 {
  splay stop
}
on *:dialog:mp3player:close:* {
  .timermp3 off
  splay stop
}
on *:load {
  hadd -m mp3.player directory $sdir($iif($hget(mp3.player,directory),$v1,$scriptdir),Choose your mp3 directory)
}
on *:start {
  if $exists($scriptdir $+ mp5.hsh) {
    .hmake mp3.player 5
    hload mp3.player " $+ $scriptdir $+ mp5.hsh $+ "
  }
}
alias mp3 { mp3player }
for run mp3 you need write in mirc /mp3
Admin
Admin
Admin

מספר הודעות : 269
Join date : 2009-09-12
Age : 43
מיקום : mIRCX IRC Network

https://mircx.forumotion.net

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum