Heres a mod i made for Lavalair ages ago that allows you to chat whilst watching videos with your friends :D (PC users only)
Lavalair TV Chat Room
Collapse
X
-
i tried something similar to this on a new lava script i was doing before i gave up on coding full stop
i used firstrowsports.eu instead of justin.tv and i was aiming for smartphone users android ios etc so people could watch like football/cricket/rugby and so on live on the go
l if i can find it i'll share it here
Comment
-
errrr
Heres the other tv/radio section (non chat room)
There is a lot of functions in it that will need replacing
it might help as it has got add urls to the tv room channels and also has got 2 javascript popup players for pc usersAttached FilesLast edited by something else; 06.03.12, 23:43.
Comment
-
Originally posted by something else View PostHeres the other tv/radio section (non chat room)
There is a lot of functions in it that will need replacing
it might help as it has got add urls to the tv room channels and also has got 2 javascript popup players for pc users
mysql_fetch_array(mysql_query("SELECT COUNT(*) FROM tv_radio WHERE type='1' AND online='0'"));
the tv_radio table appears to be missing
Comment
-
PHP Code:CREATE TABLE `tv_radio` (
`id` int(100) NOT NULL auto_increment,
`name` varchar(50) NOT NULL,
`url` varchar(255) NOT NULL default '',
`type` varchar(255) NOT NULL default '',
`image` varchar(255) NOT NULL default '',
`player` varchar(1) NOT NULL default '',
`online` varchar(1) NOT NULL default '0',
`adult` varchar(1) NOT NULL default '0',
`cat` int(2) NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=0 ;
Comment
-
Originally posted by something else View PostPHP Code:CREATE TABLE `tv_radio` (
`id` int(100) NOT NULL auto_increment,
`name` varchar(50) NOT NULL,
`url` varchar(255) NOT NULL default '',
`type` varchar(255) NOT NULL default '',
`image` varchar(255) NOT NULL default '',
`player` varchar(1) NOT NULL default '',
`online` varchar(1) NOT NULL default '0',
`adult` varchar(1) NOT NULL default '0',
`cat` int(2) NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=0 ;
lol no probs mate, thanks a lot
Comment
Comment