The Dink Network

you guys help alot but i need help again

March 1st 2005, 08:58 PM
anon.gif
sir akn
Ghost They/Them
 
ok i got the boomerang thing in and it works up until i try to throw the boomerang then the whole thing shuts down what am i doin wrong
March 1st 2005, 09:02 PM
wizardb.gif
merlin
Peasant He/Him
 
I have no clue what you're talking about. Either put enough information in your starting post or just reply to another post.
March 1st 2005, 09:14 PM
anon.gif
sir akn
Ghost They/Them
 
the addon boomerang i put it in to start out with it but once i try to throw it the game just boots out and shuts down
March 1st 2005, 09:32 PM
anon.gif
sir akn
Ghost They/Them
 
well i think it has to do with the dink file i dont know where to put the line in does anyone know?
March 1st 2005, 10:06 PM
custom_simon.gif
SimonK
Peasant He/Him Australia
 
I'd check to see if it is playing a sound that you don't have loaded via the START.C file.

if the playsound() command calls for a sound bank number that hasn't been loaded first - game crashes out.

From start.c

load_sound("DRAG1.WAV", 46);
load_sound("DRAG2.WAV", 47);
load_sound("AXE.WAV", 48);
load_sound("BIRD1.WAV", 49);

//end of loading sounds

so if you have:

playsound(50, 22050, 0, 0, 0);

in another script - like an item script then game crashes... as no sound has been loaded into sound bank number 50.
March 1st 2005, 10:47 PM
anon.gif
sir akn
Ghost They/Them
 
nope the sound right under 49
March 1st 2005, 11:11 PM
anon.gif
sir akn
Ghost They/Them
 
now i got it