Playing Wavs


Bampt

Member
Joined
Mar 29, 2005
Messages
115
Location
Germany
Website
nextadventures.webs.com
I putted some sounds in my game and used the play_wav command
with 255 in the second tag but my Gp 32 won´t make a noise...
The sound files are in the game folder and load properly, but the Gp32 don´t plays
them
 
be sure to use it that way:

Code:
global
 playthewave;

begin
  playthewave=load_wav("wave.wav");
  play_wav(playthewave,-1);
 end;

I don`t know if it has something to do with the 255, but -1 plays the wave with an infinite loop.



btw. didn`t you want to make a minigame for the project? :D
 
Oh I just missunderstood the tags , because in Div2 there was the same command
but with some different tags.
what tag number is play the sound only once?
I have made a minigame which is a clone of octopus, but the graphics are some sort of ugly and need to be replaced...
 
Back
Top