View Single Post
  #1  
Old 09-19-2010, 03:40 AM
brasilboy109 brasilboy109 is offline
Exorian
Join Date: Aug 2010
Posts: 5
brasilboy109 is on a distinguished road
Radio/Music Script Help

Ok this time im working on a radio script but idk how to play the song serverside/ to everyone

When i type
Quote:
:start musicurl
it only plays the song file to myself
how would i go about making it serverside??

PHP Code:
 function onPlayerChats(){
 if (
player.chat.starts(":start")){
 
this.song player.chat.substring(7);
 
play(this.song);
 
player.chat "";
 }

Reply With Quote