Code: Select all
# Header to display before showing a schedule.
set tvrage(scheduleHeader) "PRIVMSG {%%chan%%} :Schedule for \002{%%date%%}\002"
# Format of the time display for each line in a schedule listing
set tvrage(scheduleTimeFormat) "{%%time%%}: "
# Format of a show in a schedule listing
set tvrage(scheduleEpisodeFormat) "\002{%%network%%}\002 - \002{%%show%%}\002 ({%%epnum%%}) {%%scheduleShowSeparator%%} "
# Separator between episodes in a schedule listing
set tvrage(scheduleShowSeparator) "\n"
# Format of a schedule Line (should be used primarily to change from a public message, to private message, etc)
set tvrage(scheduleLine) "PRIVMSG {%%chan%%} :{%%scheduleLine%%}"
Code: Select all
set tvrage(scheduleTimeFormat) "{%%time%%}: "
Code: Select all
set tvrage(scheduleTimeFormat) "{%%time%%}: "
Code: Select all
set tvrage(scheduleTimeFormat) "{%%time%%} - "
Code: Select all
6:05 PM <@BOT> 09:30 pm - FOX - Sons of Tucson (01x02)
6:05 PM <@BOT> 10:00 pm - CBS - Cold Case (07x17)
6:05 PM <@BOT> 10:00 pm - AMC - Breaking Bad (03x01)
6:05 PM <@BOT> 10:00 pm - HBO - How to Make It in America (01x06)
6:05 PM <@BOT> 10:00 pm - A&E - Kirstie Alley's Big Life (01x01)
6:05 PM <@BOT> 10:01 pm - ABC - Food Revolution (01x01)
6:05 PM <@BOT> 10:30 pm - A&E - Kirstie Alley's Big Life (01x02)
Code: Select all
set tvrage(scheduleTimeFormat) "{%%time%%} -"
Code: Select all
set tvrage(scheduleEpisodeFormat) "{%%network%%} - \002{%%show%%}\002 ({%%epnum%%}) {%%scheduleShowSeparator%%}"
This is due to how slow tvrage has been responding lately. Increasing the http timeout in your config will resolve this.x0x wrote:There's one show by the way that does not work at all, Breaking Bad. All other shows I've tried work. EDIT: I have the same problem with Entourage.
<BOT> {%%show_name%%} ({%%premiered%%}) - {%%show_url%%}
<BOT> Last: {%%status%%}
<BOT> Next: {%%status%%}
This isn't possible with the way script groups data right now.x0x wrote: Another question, would it be possible to make a schedule like this?
Schedule for DATE
HBO: SHOW1 (1x12), SHOW2 (4x17)
ABC: SHOW1 (5x18), SHOW2 (2x1), SHOW3 (4x2)
FOX: SHOW1 (1x1)
CBS: SHOW1 (7x7), SHOW2 (2x1), SHOW3 (2x2), SHOW4 (4x1)
Thanks for the patch. Looking through it, unless I'm missing something most of the changes fix some inconsistencies in the syntax, unless I'm missing something?Pixelz wrote:I considered running this script on one of my bots, and in the process I fixed some issues with it that made me nervous, here's a patch. I hope you find it useful.