Darth Balor Posted August 27, 2007 Share Posted August 27, 2007 How do I get the party selection screen to appear after the end of a dialog? Link to comment Share on other sites More sharing options...
Wedge Suron Posted August 27, 2007 Share Posted August 27, 2007 Which game? and where Link to comment Share on other sites More sharing options...
Pavlos Posted August 27, 2007 Share Posted August 27, 2007 How do i get the party seledtion screen to appear after the end of a dialog? I've cleared the party before showing the GUI. If you don't want to do this then just comment it out . void main() { int i; // Clear the party for (i = 0; i < 12; i++) { RemoveNPCFromPartyToBase(i); } // End clearing of party // If you want the player to be able to cancel out of the screen replace it with this: // ShowPartySelectionGUI("", -1, -1, TRUE); ShowPartySelectionGUI(); } I'm presuming you wanted this for TSL? Link to comment Share on other sites More sharing options...
Darth Balor Posted August 27, 2007 Author Share Posted August 27, 2007 K, thanks. How would I comment it out(if I wanted to?) Link to comment Share on other sites More sharing options...
Quanon Posted August 27, 2007 Share Posted August 27, 2007 K, thanks. How would I comment it out(if I wanted to?) "//" the double slashes would do that , its something commen in programming and scripting languages If you want to at comments use them , it makes reading scripts for other people a bit easier to and for yourself ofcourse , so you don't forget what the script is all about or what particular part of code was for . Link to comment Share on other sites More sharing options...
Darth Balor Posted August 27, 2007 Author Share Posted August 27, 2007 I'm presuming you wanted this for TSL? Well this helps with K2RP. but will this work for K1? Link to comment Share on other sites More sharing options...
sekan Posted August 27, 2007 Share Posted August 27, 2007 This script should work for k1. void main() { DelayCommand(1.5,ShowPartySelectionGUI()); } Link to comment Share on other sites More sharing options...
Darth Balor Posted August 29, 2007 Author Share Posted August 29, 2007 thanks. Now how do I get the picture that shows the party member when you click their portrait on the selection screen? I need to now how to get the game to use a new one of those for a custom recruit. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.