Adding Cd player music to kids have a problem

Started by Dr Fred Rubacant Edison, Mon 13/04/2009 00:43:42

Previous topic - Next topic
Im adding CD player to each kid that can be turned on and off.  if its off you hear the normal background music that works. But i want it when you switch to a new kid it turns off the kids cd music and plays the normal room music if the new kid dose not have his cd player running.


i tryed StopMusic ();  But that turns all the music in the room.

Here is the code im using now to try to stop the cd and play normal room music. The Cd music stops but the room music will not play.


// script for Room: Repeatedly execute

if(GetPlayerCharacter() == DAVE && RazorCD_ON_OFF == 2 || RazorCD_ON_OFF == 1)
{
PlayMusic (6); // room music
}


Please help


Some say i need panels! and Some say i dont Need them.   WHERES THE DRUGS I'm going CRAZY. Plus I must have been on Drugs and a Maniac if i was going to name the game Maniacs Mansion.

What was i thinking!!!!!

Got it to work

if(GetPlayerCharacter() == DAVE && RazorCD_ON_OFF == 2)
{
RazorCD_ON_OFF = 1;
PlayMusic (6);
RazorCD_Back = 2;
}


if(GetPlayerCharacter() == RAZOR && RazorCD_Back == 2)
{
RazorCD_ON_OFF = 2;
PlayMusic (29);

}
Some say i need panels! and Some say i dont Need them.   WHERES THE DRUGS I'm going CRAZY. Plus I must have been on Drugs and a Maniac if i was going to name the game Maniacs Mansion.

What was i thinking!!!!!

Trent R

You do know GetPlayerCharacter() is an obsolete command... You can instead use

Code: ags
if (player==cDave)



and to post code like I have, use the [code*][/code*] tags, but remove the *asterisks.

~Trent
To give back to the AGS community, I can get you free, full versions of commercial software. Recently, Paint Shop Pro X, and eXPert PDF Pro 6. Please PM me for details.


Current Project: The Wanderer
On Hold: Hero of the Rune

Some say i need panels! and Some say i dont Need them.   WHERES THE DRUGS I'm going CRAZY. Plus I must have been on Drugs and a Maniac if i was going to name the game Maniacs Mansion.

What was i thinking!!!!!

SMF spam blocked by CleanTalk