2010-08-20, 18:51
Superseded by the Skin Widgets Addon post 4th Oct 2012.
Based on Nuka1195's RecentlyAdded script.
Uses -
Parameters (separated by &) -
For example -
will return 10 random, unplayed movies, episodes and songs every 30 minutes.
Labels -
Download:
XBMC EDEN: http://mirrors.xbmc.org/addons/eden-pre/...ndomitems/
Frodo Nightly Builds: https://github.com/XBMC-Addons/script.ra.../downloads
IF YOU HAVE ANY ISSUES, ALWAYS INCLUDE A FULL Debug Log WITH YOUR REPORT
Thanks to ppic and ronie for all the updates.
Based on Nuka1195's RecentlyAdded script.
Uses -
- Alternative to Recently Added items (ie Welo's 'Random Items')
- Additional to Recently Added items (ie Fusion's 'Featured Items')
Parameters (separated by &) -
PHP Code:
limit=# ; # to limit returned results (default=5)
unplayed=True ; True to return only items (not supported for albums) that have not been played (default=False)
trailer=True ; True to play the trailer (if available) (default=False)
alarm=# ; # number of minutes before running again (default=Off)
For example -
PHP Code:
XBMC.RunScript(script.randomitems,limit=10&unplayed=True&alarm=30)
will return 10 random, unplayed movies, episodes and songs every 30 minutes.
Labels -
PHP Code:
"RandomMovie.%d.Title"
"RandomMovie.%d.Rating"
"RandomMovie.%d.Year"
"RandomMovie.%d.Plot"
"RandomMovie.%d.RunningTime"
"RandomMovie.%d.Path"
"RandomMovie.%d.Trailer"
"RandomMovie.%d.Fanart"
"RandomMovie.%d.Thumb"
"RandomMovie.Count"
PHP Code:
"RandomEpisode.%d.ShowTitle"
"RandomEpisode.%d.EpisodeTitle"
"RandomEpisode.%d.EpisodeNo"
"RandomEpisode.%d.EpisodeSeason"
"RandomEpisode.%d.EpisodeNumber"
"RandomEpisode.%d.Plot"
"RandomEpisode.%d.Rating"
"RandomEpisode.%d.Path"
"RandomEpisode.%d.Fanart"
"RandomEpisode.%d.Thumb"
"RandomEpisode.Count"
PHP Code:
"RandomMusicVideo.%d.Title"
"RandomMusicVideo.%d.Year"
"RandomMusicVideo.%d.Plot"
"RandomMusicVideo.%d.RunningTime"
"RandomMusicVideo.%d.Path"
"RandomMusicVideo.%d.Artist"
"RandomMusicVideo.%d.Fanart"
"RandomMusicVideo.%d.Thumb"
"RandomMusicVideo.Count"
PHP Code:
"RandomAlbum.%d.Title"
"RandomAlbum.%d.Year"
"RandomAlbum.%d.Artist"
"RandomAlbum.%d.Path"
"RandomAlbum.%d.Fanart"
"RandomAlbum.%d.Thumb"
"RandomAlbum.%d.Rating"
"RandomAlbum.Count"
PHP Code:
"RandomSong.%d.Title"
"RandomSong.%d.Year"
"RandomSong.%d.Artist"
"RandomSong.%d.Album"
"RandomSong.%d.Path"
"RandomSong.%d.Fanart"
"RandomSong.%d.Thumb"
"RandomSong.%d.Rating"
"RandomSong.Count"
PHP Code:
"RandomAddon.%d.Name"
"RandomAddon.%d.Author"
"RandomAddon.%d.Summary"
"RandomAddon.%d.Version"
"RandomAddon.%d.Path"
"RandomAddon.%d.Type"
"RandomAddon.%d.Fanart"
"RandomAddon.%d.Thumb"
"RandomAddon.Count"
Download:
XBMC EDEN: http://mirrors.xbmc.org/addons/eden-pre/...ndomitems/
Frodo Nightly Builds: https://github.com/XBMC-Addons/script.ra.../downloads
IF YOU HAVE ANY ISSUES, ALWAYS INCLUDE A FULL Debug Log WITH YOUR REPORT
Thanks to ppic and ronie for all the updates.