Hi everyone,
would it be possible at all to play a sound for all players sitting in a certain train, but in a position-independent way, so that the sound doesn't become silent when the train moves away from the original play_sound position?
The intention is to have a sound being played for all passengers when the train is passing a certain trigger position.
Thank you very much in advance!
Play a sound position-independently for all passengers of a train
Re: Play a sound position-independently for all passengers of a train
Btw I already searched for other threads beforehand and also found this one: Modifying mod so sound is heard everywhere in multiplayer
But it only mentions https://lua-api.factorio.com/latest/Lua ... play_sound, which according to the documentation:
Would there be any chance to get this working using a speaker?
([1.1.34] play_sound{...} not playing sound globally)
But it only mentions https://lua-api.factorio.com/latest/Lua ... play_sound, which according to the documentation:
As far as I understand, this would mute the sound as well when the train (and its passengers) move away quickly.position:: MapPosition? Where the sound should be played. If not given, it's played at the current position of each player.
Would there be any chance to get this working using a speaker?
([1.1.34] play_sound{...} not playing sound globally)
Re: Play a sound position-independently for all passengers of a train
Use https://lua-api.factorio.com/latest/Lua ... play_sound if you want to play it for some players but not others (like players close by the train but outside it)boernsen2 wrote: Sun Apr 10, 2022 11:24 am Btw I already searched for other threads beforehand and also found this one: Modifying mod so sound is heard everywhere in multiplayer
But it only mentions https://lua-api.factorio.com/latest/Lua ... play_sound, which according to the documentation:As far as I understand, this would mute the sound as well when the train (and its passengers) move away quickly.position:: MapPosition? Where the sound should be played. If not given, it's played at the current position of each player.
Would there be any chance to get this working using a speaker?
([1.1.34] play_sound{...} not playing sound globally)
It also has
I don't think moving should mute/decrease the volume of the sound, that would be odd.position:: MapPosition? Where the sound should be played. If not given, it's played at the current position of the player.
Edit: it is odd.
My mods: Capsule Ammo | HandyHands - Automatic handcrafting | ChunkyChunks - Configurable Gridlines
Some other creations: Combinassembly Language GitHub w instructions and link to run it in your browser | 0~drain Laser
Some other creations: Combinassembly Language GitHub w instructions and link to run it in your browser | 0~drain Laser
Re: Play a sound position-independently for all passengers of a train
Got it!!!
I accidentally stumbled over this:
https://wiki.factorio.com/Prototype/Sou ... e_modifier
Just configure your sound with an exorbitantly high audible_distance_modifier in data.lua, e.g.
Then use it as usual with any of these:
https://lua-api.factorio.com/latest/Lua ... play_sound
https://lua-api.factorio.com/latest/Lua ... play_sound
https://lua-api.factorio.com/latest/Lua ... play_sound
https://lua-api.factorio.com/latest/Lua ... play_sound
Thanks for all your inspriation!!
I accidentally stumbled over this:
https://wiki.factorio.com/Prototype/Sou ... e_modifier
Just configure your sound with an exorbitantly high audible_distance_modifier in data.lua, e.g.
Code: Select all
data:extend({
{
type = "sound",
name = "my_sound",
filename = "__ModName__/my_sound.ogg",
category = "gui-effect",
volume = 1.0,
audible_distance_modifier = 1e20
}
})
https://lua-api.factorio.com/latest/Lua ... play_sound
https://lua-api.factorio.com/latest/Lua ... play_sound
https://lua-api.factorio.com/latest/Lua ... play_sound
https://lua-api.factorio.com/latest/Lua ... play_sound
Thanks for all your inspriation!!

Re: Play a sound position-independently for all passengers of a train
Hey, nice solution! Good job!
My mods: Capsule Ammo | HandyHands - Automatic handcrafting | ChunkyChunks - Configurable Gridlines
Some other creations: Combinassembly Language GitHub w instructions and link to run it in your browser | 0~drain Laser
Some other creations: Combinassembly Language GitHub w instructions and link to run it in your browser | 0~drain Laser