Gamestudio Links
Zorro Links
Newest Posts
New FXCM FIX Plugin
by flink. 06/04/24 07:30
AlpacaZorroPlugin v1.3.0 Released
by kzhao. 05/22/24 13:41
Free Live Data for Zorro with Paper Trading?
by AbrahamR. 05/18/24 13:28
Change chart colours
by 7th_zorro. 05/11/24 09:25
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
2 registered members (SBGuy, AndrewAMD), 1,410 guests, and 6 spiders.
Key: Admin, Global Mod, Mod
Newest Members
AemStones, LucasJoshua, Baklazhan, Hanky27, firatv
19058 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
footsteps - sound plays too much! #186531
03/01/08 01:54
03/01/08 01:54
Joined: Jan 2008
Posts: 10
Brisbane, Australia
J
JJJohan Offline OP
Newbie
JJJohan  Offline OP
Newbie
J

Joined: Jan 2008
Posts: 10
Brisbane, Australia
I couldn't really find a way to describe this in the the title so here goes.

I've been working on my little game this morning, added a nice zoom effect, a crouch feature and am now trying to add walking sounds. It doesn't work very well.

The problem is that the sound isn't stopped from playing more than one at a time resulting in a horrible screeching of hundreds of sound copies at a time.

Code:

sound run_wav = <run.wav>;
sound startrun_wav = <suddenwalk.wav>;

function run()
{
var startedrunning;
var running;
if (snd_playing(startedrunning) == 0)
{
startedrunning = ent_playsound (player, startrun_wav, 50); // play the bullet sound at a volume of 100
}
while (key_w > 0)
{
if (snd_playing(running) == 0)
{
running = ent_playsound (player, run_wav, 100);
}
sleep(0.01);
wait (1);
}
snd_stop (running);
snd_stop (startedrunning);
}




The first sound startedrunning is the sound of the player's equipment rattling. The second one, running, is the running loop. I was originally playing with loops but due to the sound bug I decided to make it a sound for now.

It might just be me not being awake yet, but I can't seem to solve it, even when using variables such as:

Code:

var soundisplaying;
if (soundisplaying == 0)
{
---play the sound---
soundisplaying = 1;
}



Bah.

Re: footsteps - sound plays too much! [Re: JJJohan] #186532
03/01/08 06:57
03/01/08 06:57
Joined: Apr 2006
Posts: 624
DEEP 13
badapple Offline
User
badapple  Offline
User

Joined: Apr 2006
Posts: 624
DEEP 13


var_nsave run_handle;


if(snd_playing(run_handle)!=1)
{
run_handle=snd_play(run_wav,100,null);
}


use snd_stop(run_handle); to stop if playing when you dont want it too




Gamestudio download | chip programmers | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1