Jump to content

Sound problem :p


-.Paradox.-

Recommended Posts

Posted

Hello i need some help here when i click the play bouton it dont play the radio

addEventHandler("onClientGUIClick", guiRoot, 
function() 
    if source == GUIEditor.button[1] then 
        local row = guiGridListGetSelectedItem(GUIEditor.gridlist[1]) 
        if row == 0 then 
              function radio( ) 
                 for i,v in ipairs( getElementsByType( "player" ) ) do 
                 local x, y, z = getElementPosition( v ); 
                 local playButton = playSound3D( 'http://www.181.fm/playing.php?station=181-party&embed=1')  
                 setSoundMaxDistance( playButton, 100 ) 
              end 
        end 
    end 
end 
end) 

If you're looking for a cheap paid scripter, don't hesitate to contact me.

Great minds discuss ideas, Average minds discuss events and small minds discuss people.

Posted

That doesn't make any sense.

You're trying to create a 3D sound to play for every player? if so, then you're doing it the wrong way.

You must trigger a server side event, then trigger back to the client side to play the sound.

San Andreas Utopia RPG (SAUR) Owner & Developer.

560x95_FFFFFF_FF9900_000000_000000.png

Education is the most powerful weapon which you can use to change the world.

Posted

Can't understand?

You mean like that?

Here is my server side script

addEvent("firstSound", true) 
addEventHandler("firstSound", root, 
function( ) 
     for i,v in ipairs( getElementsByType( "player" ) ) do 
     local x, y, z = getElementPosition( v ); 
     local playButton = playSound( 'http://www.181.fm/playing.php?station=181-party&embed=1')  
     setSoundMaxDistance( playButton, 100 ) 
     end 
     end) 
addEvent("firstSoundStop", true) 
addEventHandler("firstSoundStop", root, 
function ( ) 
    if(isSoundPaused(playButton)) then --sound is paused, un-pause it 
    setSoundPaused(playButton, false) 
    else --sound is not paused, pause it 
    setSoundPaused(playButton, true) 
    end 
end) 

If you're looking for a cheap paid scripter, don't hesitate to contact me.

Great minds discuss ideas, Average minds discuss events and small minds discuss people.

Posted

No, that makes no sense either.

San Andreas Utopia RPG (SAUR) Owner & Developer.

560x95_FFFFFF_FF9900_000000_000000.png

Education is the most powerful weapon which you can use to change the world.

Posted
-- Client 
addEventHandler ("onClientGUIClick", root, function ( ) 
    if ( source == GUIEditor.button[1] ) then 
        local row, col = guiGirdListGetSelectedItem ( GUIEditor.gridlist[1] ) 
        if ( row ~= -1 and col ~= 0 ) then 
            radio ( ) 
        end 
    end 
end ) 
  
function radio ( ) 
    triggerServerEvent ( "StartTheSound", localPlayer ) 
end 
  
addEvent ( "StartTheSound_C", true ) 
addEventHandler ( "StartTheSound_C", root, function ( ) 
    if not isElement ( sound ) then 
        local x, y, z = getElementPosition ( localPlayer ) 
        sound = playSound3D( 'http://www.181.fm/playing.php?station=181-party&embed=1', x, y, z ) 
    end 
end ) 
  
-- Server 
addEvent ( "StartTheSound", true ) 
addEventHandler ( "StartTheSound", root, function ( ) 
    triggerClientEvent ( root, "StartTheSound_C", root ) 
end ) 

Posted

Attempt to call guiGirdListGetSelectedItem (a nil value)

If you're looking for a cheap paid scripter, don't hesitate to contact me.

Great minds discuss ideas, Average minds discuss events and small minds discuss people.

Posted

He made a typo, put guiGridListGetSelectedItem.

San Andreas Utopia RPG (SAUR) Owner & Developer.

560x95_FFFFFF_FF9900_000000_000000.png

Education is the most powerful weapon which you can use to change the world.

Posted (edited)

When i press the play sound i dont hear the radio, nothing in debug this time.

Edited by Guest

If you're looking for a cheap paid scripter, don't hesitate to contact me.

Great minds discuss ideas, Average minds discuss events and small minds discuss people.

Posted

If you replaced it with what I said, then it's not possible. Post your script.

San Andreas Utopia RPG (SAUR) Owner & Developer.

560x95_FFFFFF_FF9900_000000_000000.png

Education is the most powerful weapon which you can use to change the world.

Posted

I want to keep it secret, can i send it to you in pm?

If you're looking for a cheap paid scripter, don't hesitate to contact me.

Great minds discuss ideas, Average minds discuss events and small minds discuss people.

Posted

On that code you sent me, what is the problem and in what line?

San Andreas Utopia RPG (SAUR) Owner & Developer.

560x95_FFFFFF_FF9900_000000_000000.png

Education is the most powerful weapon which you can use to change the world.

Posted

It show nothing in debug it dont want to play sound neither

If you're looking for a cheap paid scripter, don't hesitate to contact me.

Great minds discuss ideas, Average minds discuss events and small minds discuss people.

Posted

I think that you didn't notice it wasn't 100% client side?

San Andreas Utopia RPG (SAUR) Owner & Developer.

560x95_FFFFFF_FF9900_000000_000000.png

Education is the most powerful weapon which you can use to change the world.

Posted

It's client side

here is the server side

addEvent ( "StartTheSound", true ) 
addEventHandler ( "StartTheSound", root, function ( ) 
    triggerClientEvent ( root, "StartTheSound_C", root ) 
end ) 

If you're looking for a cheap paid scripter, don't hesitate to contact me.

Great minds discuss ideas, Average minds discuss events and small minds discuss people.

Posted

Check your inbox.

San Andreas Utopia RPG (SAUR) Owner & Developer.

560x95_FFFFFF_FF9900_000000_000000.png

Education is the most powerful weapon which you can use to change the world.

Posted

Still nothing, :S the radio URL is good and i didn't find the problem

If you're looking for a cheap paid scripter, don't hesitate to contact me.

Great minds discuss ideas, Average minds discuss events and small minds discuss people.

  • Moderators
Posted

Change 'http://www.181.fm/playing.php?station=181-party&embed=1' to 'http://relay4.181.fm:8036'

Posted

Thanks man working :D

Thank you Castillo and xXMadeXx

One little problem i want when player click on pause it stop the sound

If you're looking for a cheap paid scripter, don't hesitate to contact me.

Great minds discuss ideas, Average minds discuss events and small minds discuss people.

Posted

Do the same as you did to play the sound, but this time to stop it.

San Andreas Utopia RPG (SAUR) Owner & Developer.

560x95_FFFFFF_FF9900_000000_000000.png

Education is the most powerful weapon which you can use to change the world.

Posted

But I want to put 10 other radio channels working good but when I click on play all the radio channels play in the same time and I want only to play selected item

If you're looking for a cheap paid scripter, don't hesitate to contact me.

Great minds discuss ideas, Average minds discuss events and small minds discuss people.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...