Taunger Posted February 15, 2012 Share Posted February 15, 2012 Hi, I've done many searches trying to find an answer to this, but couldn't find any (if there are, please say so!), so here goes: in K1, can I be with party members inside the Ebon Hawk and the Hideout on Taris? I've tried warping to these modules, but it didn't work. Ideally, with the mod in place, I could just warp or walk into the modules with my party members and after entering the module they would still be in my party and I could control them as in other modules. P.S. No matter if there would be two Carths or something in the module and it totally breaks the game; it's just something temporary I'd like to be able to do. Link to comment Share on other sites More sharing options...
Hassat Hunter Posted February 15, 2012 Share Posted February 15, 2012 Easy. Just modify the onenter.ncs, clearing "ClearPlayerParty();" Link to comment Share on other sites More sharing options...
JCarter426 Posted February 15, 2012 Share Posted February 15, 2012 That won't let you change party members while in those modules, though. If you want to do that, you need to set the module to escapable. You can either do this by editing the ARE (set Unescapable to 0) or with a script, like so: void main(){ SetAreaUnescapable(FALSE); } ...which does the same thing temporarily, with the added bonus of overriding script-induced inescapable situations (e.g. when the Exile is on the way to the Jekk'Jekk Tarr to meet Visquis). Link to comment Share on other sites More sharing options...
Taunger Posted February 15, 2012 Author Share Posted February 15, 2012 This may be a bit n00bish, but I couldn't find an "onenter.ncs"; are you sure this works for K1? Link to comment Share on other sites More sharing options...
JCarter426 Posted February 15, 2012 Share Posted February 15, 2012 The Ebon Hawk's OnEnter script is k_pebo_skybox.ncs (located in ebo_m12aa_s.rim, you'll need to decompile it with DeNCS). The hideout's is k_ptar_02af_en.ncs (in tar_m02af_s.rim). Link to comment Share on other sites More sharing options...
Taunger Posted February 15, 2012 Author Share Posted February 15, 2012 I'm having trouble with DeNCS, it says the scripts are "partial-could not recompile". Link to comment Share on other sites More sharing options...
darth-ackbar Posted February 15, 2012 Share Posted February 15, 2012 DeNCS doesn't decompile certain scripts for some reason, I know stoffe was able to decompile the TSL on enter script (which doesn't work in DeNCS) so there must be other ways to do it, not sure myself though. Link to comment Share on other sites More sharing options...
Taunger Posted February 15, 2012 Author Share Posted February 15, 2012 Even in their compiled state I can see words in the files like "K_CURRENT_PLANET", "Firing Anim 05 for Korriban m12aa_01q" etc.; no mention of the party being cleared (though that doesn't prove anything). As a test I just cleared the entire scripts and put them in the override folder. In the Taris Hideout there seemed to be no change as I entered the module (though that script was a really short one). On entering the Ebon Hawk the only change I noticed was that the skybox around the ship changed; even though I was on Dantooine, I could see Kashyyyk through the windows. (Seeing the name of the script—"k_pebo_skybox"—that seems to make sense: the script conforming the skybox to the planet you are actually on is no longer functioning.) This leads me to believe that the scripts are not *directly* performing a ClearPlayerParty function. I remember reading somewhere on here that some files would get the message "partial-could not decompile" in DeNCS because the .nss files would reference files like "k_inc_utility" and "k_inc_debug". So, I got the idea of looking for a ClearPlayerParty function in those files. Lo and behold, in "k_inc_utility.nss" there was a "ClearAllPartyMembers" function. I have no idea where to go from here. Maybe another method would be more fruitful. Is it possible to get the party selection screen to show up (i.e. adding party members while in the module). While in the Ebon Hawk or in the Hideout, going to the map, the "Party Selection" option is greyed out and when you click on it, it says "That function is unavailable at this time." Is there some way to turn it on? Sorry for torturing you with such a long story EDIT: Just realized that that's what JCarter said. However, I set Unescapable to 0 in the ARE file (and made sure the entry actually changed before saving), put it in the Override folder, then opened KotOR, but the Party Selection button was still greyed out. Link to comment Share on other sites More sharing options...
Hassat Hunter Posted February 15, 2012 Share Posted February 15, 2012 Well, though my experiences are with KOTOR2 (much different apparently based on this thread), putting it in override wont work, you need to integrate it into the module (remember to make a backup). Also, you will have to have never entered that module before. Link to comment Share on other sites More sharing options...
Taunger Posted February 15, 2012 Author Share Posted February 15, 2012 Hassat Hunter, I took a save from just before acquiring the Ebon Hawk and it works now! Looks like I'll have to start a new game to get this to work later in the game, oh how terrible! A huge, huge thanks to all of you! Link to comment Share on other sites More sharing options...
JCarter426 Posted February 15, 2012 Share Posted February 15, 2012 You can be very, very bad and put the ARE in Override - that forces the game to load it each time, putting your changes into effect. If you do it with the script you don't have to bother with any of this though - but it only affects a single module, temporarily. Link to comment Share on other sites More sharing options...
Taunger Posted February 15, 2012 Author Share Posted February 15, 2012 You can be very, very bad and put the ARE in Override - that forces the game to load it each time, putting your changes into effect. Why exactly is this bad? It works, doesn't it? Link to comment Share on other sites More sharing options...
JCarter426 Posted February 16, 2012 Share Posted February 16, 2012 Well, this applies more to the GIT than the ARE, but basically it's unpredictable and the unintended side effects can break your game. For example, if you place a GIT in Override, everything about the module will be reset every time it is loaded - whether you are loading a save or transitioning from another module. This means any doors you opened will be closed again, anyone you killed will be alive again, anyone who was spawned after the module was loaded will no longer be there, and so on. So that's why you shouldn't do it. I do it, but only for testing purposes and because I'm a very bad boy. I haven't really had reason to do it much with the ARE so I'm not sure if it can be as dangerous, but the files are similar in nature. Anyway, you could probably get away with it, just be careful. Link to comment Share on other sites More sharing options...
Taunger Posted February 16, 2012 Author Share Posted February 16, 2012 I do it, but only for testing purposes and because I'm a very bad boy. LOL Anyway. If I also place the GIT file in Override, the modified ARE also works on my older savegames. I'm doing this for screen capture, so I'll need the files in my Override folder only then. But, I'll be careful. Thanks again! Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.