How to make custom sound ?

Ask for help about creating mods and scripts for Grimrock 2 or share your tips, scripts, tools and assets with other modders here. Warning: forum contains spoilers!
User avatar
Lark
Posts: 178
Joined: Wed Sep 19, 2012 4:23 pm
Location: Springfield, MO USA

Re: How to make custom sound ?

Post by Lark »

A call to playSound will play a sound basically at the party's location. But playSoundAt will play the same sound at a specific location. So if you want the sound to come from the party's left, through a specific door, or et cetera, you can use playSoundAt instead. The format is simply playSoundAt(<sound name>, <level>, <x-coordinate>, <y-coordinate>).

Although there are lots of workable examples around, if you add playSoundAt("wizard_laugh", c.go.level, c.go.x - 3, c.go.y - 3) to my script at viewtopic.php?f=22&t=7881, then walk the player onto the pressure plate, walls will surround the party and a laugh will come from one side. Change the "- 3" to a "+ 3" and the sound will come from the other side. Surround sound is even better if you have it on your PC.
User avatar
Rougecorne
Posts: 34
Joined: Wed Oct 29, 2014 1:52 am

Re: How to make custom sound ?

Post by Rougecorne »

Wow !
It's great ! :D

Thank you :)
User avatar
Drakkan
Posts: 1318
Joined: Mon Dec 31, 2012 12:25 am

Re: How to make custom sound ?

Post by Drakkan »

Lark wrote:A call to playSound will play a sound basically at the party's location. But playSoundAt will play the same sound at a specific location. So if you want the sound to come from the party's left, through a specific door, or et cetera, you can use playSoundAt instead. The format is simply playSoundAt(<sound name>, <level>, <x-coordinate>, <y-coordinate>).

Although there are lots of workable examples around, if you add playSoundAt("wizard_laugh", c.go.level, c.go.x - 3, c.go.y - 3) to my script at viewtopic.php?f=22&t=7881, then walk the player onto the pressure plate, walls will surround the party and a laugh will come from one side. Change the "- 3" to a "+ 3" and the sound will come from the other side. Surround sound is even better if you have it on your PC.
just want tahnk you for simple and nice tutorials for custom sound / music. thanks
Breath from the unpromising waters.
Eye of the Atlantis
Post Reply