Page 1 of 1

Player produce sound

Posted: Sun Mar 22, 2015 6:44 am
by KaraUL!
I have some idea, can u tell me is that possible: can we produce sound in game when certain event occured? For example:

Code: Select all

game.onevent(defines.events.ontick, function()
		local pos = game.player.position
		local ent = game.findentities{{pos.x-2, pos.y-2}, {pos.x+2, pos.y+2}}
		
		for i, e in ipairs(ent) do
			if e.name == "iron-ore" then
              --need produce sound here
             ....

Re: Player produce sound

Posted: Sun Mar 22, 2015 4:25 pm
by Xecutor
You can create custom 'explosion' entity without graphics, but with sound at player's location.

Re: Player produce sound

Posted: Sun Mar 22, 2015 8:16 pm
by KaraUL!
Xecutor wrote:You can create custom 'explosion' entity without graphics, but with sound at player's location.
wow thats what i need, thx