onClientSoundChangedMeta | Multi Theft Auto: Wiki Skip to content

onClientSoundChangedMeta

Client-side
Server-side
Shared

This event is triggered when a sound's meta tags have been modified.

Parameters

string streamTitle
  • streamTitle: The title of a specific stream

Source

element: The source of this event is the sound of which the meta tags have just been modified.

Code Examples

client

This example will output the new stream title in the chatbox.

addEventHandler("onClientSoundChangedMeta", root, function(streamTitle)
outputChatBox("* Now streaming: "..streamTitle, 255, 200, 0, false)
end)