SA-MP Forums Archive
[FilterScript] KaPlaylist[2.0] - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Filterscripts (https://sampforum.blast.hk/forumdisplay.php?fid=17)
+--- Thread: [FilterScript] KaPlaylist[2.0] (/showthread.php?tid=333481)



KaPlaylist[2.0] - kadaradam - 11.04.2012

Description:
I know there are lots of playlist script are there,but this is different.
You can add music in your website,or your database.
You dont have to restart your server,when you add new song to the playlist,the song will be automatically avilable.

You can search music in your database,and you can play it.

The script is avilable in 2 languages:
-English
-Hungarian(Magyar)

Video:

[ame]www.youtube.com/watch?v=PiozBvh4YLs[/ame]

Commands:

/playlist
/searchsong

Download:
Script
Mysql plugin

Mysql table:
Код:
CREATE TABLE IF NOT EXISTS `playlist` (
  `music` varchar(200) NOT NULL,
  `url` varchar(250) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
Install
You need a MySql database to use this.

1.Create the MySQL table in your database.
2.Change the mysql connect configuration(host,user,password,database) in the pawn script,and in the php script.
3.Upload your music and the php script to your webhost.
4.So you have a music link.Go to your webpage,and you will see 2 inputs.
Insert the music name and the music's link.

OR

Insert the music link to your database.
5.Done.


Re: KaPlaylist[2.0] - Deanx - 11.04.2012

Nice !


Re : KaPlaylist[2.0] - TGameR - 11.04.2012

GOOD SYSTEM 10/10 +1REP


Re: Re : KaPlaylist[2.0] - kadaradam - 11.04.2012

Quote:
Originally Posted by TGameR
Посмотреть сообщение
GOOD SYSTEM 10/10 +1REP
Thanks.
Quote:
Originally Posted by Deanx
Посмотреть сообщение
Nice !
Thank you.


Re: KaPlaylist[2.0] - Hanger - 11.04.2012

Add some flood protection mate. Lots of trolls nowadays


Re: KaPlaylist[2.0] - Juninho_Oakley - 11.04.2012

Nice


Re: KaPlaylist[2.0] - Armyw0w - 11.04.2012

Good work xD


Re: KaPlaylist[2.0] - SublimESmokeR420 - 11.04.2012

I got Goose Bumps at how awesome this is. One question... I have a KILLER Dubstep playlist, and i wanted to know... If i can put that music in this, so players can listen to it. 10/10 mate.


Re: KaPlaylist[2.0] - SublimESmokeR420 - 11.04.2012

Aw.... I am a noob :/ Don't know how to use it, put it in... Add music... stuff like that.


Re: KaPlaylist[2.0] - kadaradam - 12.04.2012

Quote:
Originally Posted by SublimESmokeR420
Посмотреть сообщение
Aw.... I am a noob :/ Don't know how to use it, put it in... Add music... stuff like that.
Quote:
Originally Posted by SublimESmokeR420
Посмотреть сообщение
I got Goose Bumps at how awesome this is. One question... I have a KILLER Dubstep playlist, and i wanted to know... If i can put that music in this, so players can listen to it. 10/10 mate.
Do you have MySQL database?
If you have,create a mysql table.
Код:
CREATE TABLE IF NOT EXISTS `playlist` (
  `music` varchar(200) NOT NULL,
  `url` varchar(250) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
Now,upload you music to your web host,example 000webhost.com.
So you have a music link,insert the music link and the music name to the database.
(Top-->"Insert" function)

OR

Upload a php file to your web host,change the mysql connect configuration(host,user,password,database) in the php script.