radio stations fixed, duplicate maps removed
This commit is contained in:
parent
9453ebe2aa
commit
26189aca7c
@ -1557,19 +1557,19 @@ new
|
||||
// { CATEGORY_GLASSES, 64, "Armani Aviator Orange", 19027, 840, 2 },
|
||||
// { CATEGORY_GLASSES, 65, "Armani Aviator Yellow", 19028, 840, 2 },
|
||||
// { CATEGORY_GLASSES, 65, "Armani Aviator Green", 19029, 840, 2 },
|
||||
{ CATEGORY_GLASSES, 66, "Gucci Techno Yellow" , 19017, 650, 2 },
|
||||
{ CATEGORY_GLASSES, 67, "Gucci Techno Salmon" , 19018, 650, 2 },
|
||||
// { CATEGORY_GLASSES, 66, "Gucci Techno Yellow" , 19017, 650, 2 },
|
||||
// { CATEGORY_GLASSES, 67, "Gucci Techno Salmon" , 19018, 650, 2 },
|
||||
{ CATEGORY_GLASSES, 68, "Gucci Techno Red" , 19019, 650, 2 },
|
||||
{ CATEGORY_GLASSES, 69, "Gucci Techno Blue" , 19020, 650, 2 },
|
||||
{ CATEGORY_GLASSES, 70, "Gucci Techno Green" , 19021, 650, 2 },
|
||||
{ CATEGORY_GLASSES, 71, "Versace Vintage", 19033, 520, 2 },
|
||||
{ CATEGORY_GLASSES, 72, "Versace Havana Wrap", 19030, 490, 2 },
|
||||
// { CATEGORY_GLASSES, 71, "Versace Vintage", 19033, 520, 2 },
|
||||
// { CATEGORY_GLASSES, 72, "Versace Havana Wrap", 19030, 490, 2 },
|
||||
{ CATEGORY_GLASSES, 73, "Oakley Whisker", 19008, 400, 2 },
|
||||
{ CATEGORY_GLASSES, 74, "Oakley Wiretap", 19009, 400, 2 },
|
||||
{ CATEGORY_GLASSES, 75, "Versace Brown Square", 19031, 360, 2 },
|
||||
// { CATEGORY_GLASSES, 74, "Oakley Wiretap", 19009, 400, 2 },
|
||||
// { CATEGORY_GLASSES, 75, "Versace Brown Square", 19031, 360, 2 },
|
||||
{ CATEGORY_GLASSES, 76, "Versace Marble Square", 19035, 380, 2 },
|
||||
{ CATEGORY_GLASSES, 77, "Oakley Valve", 19010, 300, 2 },
|
||||
{ CATEGORY_GLASSES, 78, "Oakley Crankshaft", 19007, 260, 2 },
|
||||
// { CATEGORY_GLASSES, 77, "Oakley Valve", 19010, 300, 2 },
|
||||
// { CATEGORY_GLASSES, 78, "Oakley Crankshaft", 19007, 260, 2 },
|
||||
|
||||
// HANDHELD
|
||||
{ CATEGORY_HANDHELD, 100, "Antique Sword", 19590, 15000, 6 },
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -19,27 +19,23 @@
|
||||
/* ** Variables ** */
|
||||
enum E_RADIO_DATA
|
||||
{
|
||||
E_NAME [ 20 ],
|
||||
E_NAME [ 16 ],
|
||||
E_URL [ 60 ]
|
||||
};
|
||||
|
||||
new
|
||||
g_RadioData[ ] [ E_RADIO_DATA ] =
|
||||
{
|
||||
{ "Country", "http://yp.shoutcast.com/sbin/tunein-station.pls?id=446371" },
|
||||
{ "Drum n' Bass", "http://yp.shoutcast.com/sbin/tunein-station.pls?id=114517" },
|
||||
{ "Electronic", "http://yp.shoutcast.com/sbin/tunein-station.pls?id=201767" },
|
||||
{ "Metal", "http://yp.shoutcast.com/sbin/tunein-station.pls?id=558051" },
|
||||
{ "Hip Hop", "http://yp.shoutcast.com/sbin/tunein-station.pls?id=366480" },
|
||||
{ "Pop", "http://yp.shoutcast.com/sbin/tunein-station.pls?id=8318" },
|
||||
{ "Reggae", "http://yp.shoutcast.com/sbin/tunein-station.pls?id=580756" },
|
||||
{ "Rock", "http://yp.shoutcast.com/sbin/tunein-station.pls?id=37586" },
|
||||
{ "Trance", "http://yp.shoutcast.com/sbin/tunein-station.pls?id=83468" },
|
||||
{ "Techno", "http://yp.shoutcast.com/sbin/tunein-station.pls?id=702264" },
|
||||
{ "House", "http://yp.shoutcast.com/sbin/tunein-station.pls?id=99194448" },
|
||||
{ "SKY.FM Hits", "http://yp.shoutcast.com/sbin/tunein-station.pls?id=595424" },
|
||||
{ "Party 181.FM", "http://yp.shoutcast.com/sbin/tunein-station.pls?id=508962" },
|
||||
{ "Top 40 181.FM", "http://yp.shoutcast.com/sbin/tunein-station.pls?id=872" },
|
||||
{ "Country", "http://sc3c-sjc.1.fm:7806" },
|
||||
{ "Electronic", "http://useless.streams.enation.fm:8000" },
|
||||
{ "Metal", "http://ice.somafm.com/metal" },
|
||||
{ "Hip Hop", "http://www.stationzilla.com/stationzilla.m3u" },
|
||||
{ "Pop", "http://listen.radionomy.com/airradiofreestyleslow" },
|
||||
{ "Reggae", "http://whatisland.macchiatomedia.org:8118" },
|
||||
{ "Rock", "http://sorradio.org:5005/live" },
|
||||
{ "Jamz 1.FM", "http://sc1c-sjc.1.fm:8052" },
|
||||
{ "XLTRAX FM", "http://xltrax.com:8000" },
|
||||
{ "Groove Salad", "http://ice.somafm.com/groovesalad" },
|
||||
{ ".977 Hits", "http://7609.live.streamtheworld.com:80/977_HITS_SC" }
|
||||
},
|
||||
g_RadioStations [ 190 ] = ""COL_GREY"Custom URL "COL_GOLD"[V.I.P]"COL_WHITE"\n",
|
||||
|
@ -7,3 +7,5 @@
|
||||
(/) Business security is now cheaper and based off the type of business.
|
||||
(*) Fixes a death bug issue after being killed by an explosive.
|
||||
(*) Damaging a drug house bot will trigger them to all shoot.
|
||||
(*) Radio stations in /radio have now been updated.
|
||||
(-) Army limit removed.
|
||||
|
Loading…
Reference in New Issue
Block a user