Facebook Twitter YouTube Frictional Games | Forum | Privacy Policy | Dev Blog | Dev Wiki | Support | Gametee


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Whats wrong with my script?
Sennep Offline
Junior Member

Posts: 47
Threads: 6
Joined: Apr 2011
Reputation: 0
#6
RE: Whats wrong with my script?

Again i have a script question (is there a thread for that?).

void OnStart()
{
AddUseItemCallback("", "bedroomkey", "mansion_1", "UsedKeyOnDoor", true);
AddEntityCollideCallback("Player", "area_darkmusic", "PlayDarkMusic", false, 1);
AddEntityCollideCallback("Player", "area_darkmusic", "StopDarkMusic", false, -1);
}

void StopDarkMusic(string &in asParent, string &in asChild, int alState)
{
StopMusic(3, 0);
}

void PlayDarkMusic(string &in asParent, string &in asChild, int alState)
{
PlayMusic("04_amb.ogg", true, 1.0f, 3, 0, true);
}

That is the beginning of my script. The point is that i want to have music, but only when you are in a special area. The music doesn't go away when you exit area.
05-16-2011, 04:28 PM
Find


Messages In This Thread
Whats wrong with my script? - by Sennep - 05-16-2011, 02:24 PM
RE: Whats wrong with my script? - by Roenlond - 05-16-2011, 02:31 PM
RE: Whats wrong with my script? - by Sennep - 05-16-2011, 02:33 PM
RE: Whats wrong with my script? - by Roenlond - 05-16-2011, 02:34 PM
RE: Whats wrong with my script? - by Sennep - 05-16-2011, 02:43 PM
RE: Whats wrong with my script? - by Sennep - 05-16-2011, 04:28 PM
RE: Whats wrong with my script? - by MrBigzy - 05-16-2011, 08:02 PM
RE: Whats wrong with my script? - by Kyle - 05-16-2011, 11:03 PM
RE: Whats wrong with my script? - by Sennep - 05-17-2011, 12:44 PM
RE: Whats wrong with my script? - by Tanshaydar - 05-17-2011, 12:50 PM



Users browsing this thread: 1 Guest(s)