# MP3Tool Default Channel Send Style. Created by Cruise Nov 03, 1998.
#
# To create new styles, just create a new file in the styles directory
# in your MP3Tool plugin directory. YOU SHOULD NOT CHANGE THIS DEFAULT
# STYLE! CREATE A NEW ONE! The default syle is a fallback, If there were
# errors in the style you created, and this file also had errors. your
# program would stop working!
#
# You can have as many styles as you like!
#
# This file is sourced so you can execute TCL code in here.
# for instance, 
#
# if {$thisvar} {set thatvar "some text"} else {set thatvar "some other text"}
# 
# BECAUSE TCL CODE CAN BE EXECUTED IN THE STYLE FILES, BE CAREFUL ABOUT
# WHO YOU ACCEPT NEW STYLES FROM. ALWAYS CHECK A STYLE YOU DOWNLOADED ON
# THE NET FOR POSSIBLE MALICIOUS CODE!
#
# The variables you have access to include (but are not limited to)....
#
# $sendlist(#mp3tool(lastoffer))	- The song scheduled to play next.
# $mp3tool(totalfiles)		- The total number of files in your list.
# $nick				- Your current nickname.
# $mp3tool(sendmax)		- Max number of send slots.
# $mp3tool(quemax)		- Total number of slots.
# $mp3tool(usedslots)		- Total number of send slots in use
# $sends(FIND)			- Do you respond to @find and @findctcp (1=yes 0=no)
# $totfin			- The total number of finds responded to.
# $uservar()			- array is numbered 0 - 20 and all items
#                                 are initalized to 0 when the program
#                                 starts. The included cycle style uses
#                                 uservar(0) as an example.
#
# There are always two versions of a send style. The colorized and
# noncolorized version. The first element of the style array is the
# total number of elements in the array. Do not set these too long or you
# might flood yourself offline. 
#
# HOW TO DO COLOR!
# The first character of an mIRC color sequence is a Ctrl C (odd!)
# This is followed by a foreground color or a background, foreground
# combination. To represent the CTL-C we need to insert the escaped
# hex code for it which is 03. This is done by putting "\003" wherever
# a ctrl-c is needed. BE CAREFUL WITH NUMBERS!!! you cannot do "\003x" you
# must do "\003 x" (where x is the number your representing.

set nocolor(lines) 3
set nocolor(1) "Now Playing $sendlist($mp3tool(lastoffer))"
set nocolor(2) "(MP3Tool) To get my list of $mp3tool(totalfiles) files, type @$nick"
set nocolor(3) "GetCmd !$nick $sendlist($mp3tool(lastoffer))"

set color(lines) 3
set color(1) "\0031,1\0034Now Playing \0033$sendlist($mp3tool(lastoffer))"
set color(2) "\0031,1\0038(\00313M\0033P3\0038T\00313o\0033o\00310l\0038) \0033To get my list of\0034 $mp3tool(totalfiles) \0033files, type \0034@$nick"
set color(3) "\0031,1\0034GetCmd \0033!$nick $sendlist($mp3tool(lastoffer))"

