you guys help alot but i need help again
March 1st 2005, 08:58 PM

sir akn


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
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

sir akn


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

sir akn


well i think it has to do with the dink file i dont know where to put the line in does anyone know?
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.
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.