Robespierre Posted March 8, 2008 Share Posted March 8, 2008 Is there a way in KOTOR 2 to stop the background music from playing at certain times? Perhaps a script you could trigger in a dialog? I'm only asking because some of the dialog I want to put in a mod already has background music in it, and it would sound kinda stupid if I put it in the game with background music already playing. Link to comment Share on other sites More sharing options...
sekan Posted March 8, 2008 Share Posted March 8, 2008 I think that this script should work void main() { object oArea = GetArea(OBJECT_SELF); MusicBackgroundStop(oArea); } Use this script to start the music again void main() { object oArea = GetArea(OBJECT_SELF); MusicBackgroundPlay(oArea); } Link to comment Share on other sites More sharing options...
Robespierre Posted March 9, 2008 Author Share Posted March 9, 2008 Wonderful. Exactly what I needed. Now my plans for world domination are...in no way related to this. But thanks anyway. Link to comment Share on other sites More sharing options...
sekan Posted March 9, 2008 Share Posted March 9, 2008 Always happy to help Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.