Set In-Game Speaker Locations
Set in-game speaker locations for tone playback on a specific Sonoran Radio server.
Set In-Game Speaker Locations
Name
Value
local response = client.radio:setInGameSpeakerLocationsV2({
{
label = "Fire Station 123",
id = "STATION_123"
}
}, 1)const response = await instance.radio?.setInGameSpeakerLocationsV2([
{
label: "Fire Station 123",
id: "STATION_123"
}
], 1);response = instance.radio.setInGameSpeakerLocationsV2([
{
"label": "Fire Station 123",
"id": "STATION_123",
}
], 1)var response = await sonoran.Radio.setInGameSpeakerLocationsV2(new object?[]
{
new { label = "Fire Station 123", id = "STATION_123" }
});Response
{
"locationsCount": 1
}Last updated
Was this helpful?

