-
Content Count
1,934 -
Joined
-
Last visited
-
Days Won
118
Content Type
Profiles
Forums
Blogs
Forum & Tracker Requests
Downloads
Gallery
Store
Calendar
Everything posted by Kexikus
-
I think it should be possible but only in a very time consuming way (I might be wrong though). In the KOTOR games dialogs consist of a series of alternating entries and replies. Replies are what the PC says, entries are for NPCs. Now, I don't think it's possible to add VO to replies but it should (in theory) be possible to add an additional entry after every single reply in every single dialog file that has the player as the speaker and that has VO. Setting this up would of course be a tremendous undertaking but it should be possible. In addition to that you'd also have to check for the players gender so you'd effectively end up with twice as many added entries.
-
Here's a question for you all: Are there any scenes (side quests, main quests, whatever) where you think dark side Juhani should comment on the situation? If you have any ideas, please let me know and I'll consider adding them
-
Good news: I finished the last newly added scene that was discovered to be missing during testing. That reduces the number of things left to fix to basically two categories: Juhanis comments during certain side quests and some Juhani related vanilla bugs I want to fix. Then there's of course more testing to do in order to see if the things I fixed after the inital testing are actually fixed and finally the voice overs. But I'm a big step closer to the second test run and thus to finishing this mod. Thanks for your interest
-
Yes. You just need to edit all the sound files with any audio editor to apply some kind of distortion effect and then put them back into their original locations. Or maybe you can even just put them in the Override.
-
I also edited those scripts for my SWTOR Style Training Saber mod. So I know that it's possible to change this part of the script. And I don't see anything wrong with your scripts here. Maybe try and change the given weapon to something else just to see if it's working at all. It could still be something like a missing feat that's only breaking this for lightsabers. Or try and make a new baseitem that doesn't require any feats but looks like a lightsaber. That also has the advantage that you can remove the constant humming sound that a normal lightsaber has as that sound is really disruptive for the cutscene. I did that for my Dantooine Training Lightsaber mod. One random comment: You'll definetly want to put these scripts in the .mod file as they'll screw up the Matale Grounds otherwise.
-
Probably not and it's very unlikely to happen unless someone remakes the animation from scratch. I have to wonder, where would you want the player to use this animation? The reason for it being very unlikely is that this is a pre-rendered cutscene that was created using a custom module in the game. It is possible that this model and all the contents of the scene exist in its original shape. (I know that the Revan and Malak find the Dantooine star map scene exists for example.) but even then, this scene would be using cutscene animations that are specifically tailored for this one scene and that cannot really be used anywhere else in the game.
-
I'll have a look at the scripts tomorrow, but an easier solution might be to simply edit the used item (dan13_practice.uti) or its baseitems.2da entry.
-
Great news! I'm looking forward to seeing this new version in action
-
K1R 1.2 Impressions and Bug-Reports [READ ME FIRST]
Kexikus replied to Fair Strides's topic in KotOR1 Restoration (K1R)
Where is your K1R installer located? It has to be somewhere OUTSIDE of the KotOR installation directory. -
Two questions from me today: First of all, in the documentation for GetPartyMemberByIndex(int nIndex) it is stated that this should return the party leader for nIndex = 0 and the two party members for nIndex = 1 & 2: // 577: Returns the party member at a given index in the party. // The order of members in the party can vary based on // who the current leader is (member 0 is always the current // party leader). // GetPartyMemberByIndex object GetPartyMemberByIndex(int nIndex); However, this seems to be wrong as I've been using it to get party members 1 and 2 and it only gives a useful result (the second party member) for nIndex = 1. To get the first party member, I need to use nIndex = 0. I was wondering if anyone knows if that's how it always works as I doubt that it's intended. I'm assuming that as this is the reason for the second party member spawning in the main hall in the hostile Korriban academy instead of in it's appropriate position. The second question is somewhat weird. I've been testing that scene where you enter the hostile Korriban academy to find what's causing the incorrect spawn point and as stated above, I found the culprit. However, I thought the issue was somewhere else for a while which is why I had a closer look at the script spawning the party members upon entering the academy after retrieving the starmap. It's the OnEnter script for korr_m35aa, called kor35_enter. Here's the relevant part: int nGlobal = GetGlobalNumber("KOR_FINAL_TEST"); if (((nGlobal > 3) && (!sub6()))) { SetGlobalBoolean("KOR_ADD_PARTY", 1); sub8(1); int int18; int int19; string string1; int18 = 0; while ((int18 < GetGlobalNumber("KOR_REMOVE_PCS"))) { int19 = GetGlobalNumber(("KOR_REMOVE_PC" + IntToString(int18))); sub5(((("KOR_REMOVE_PC" + IntToString((int18 - 1))) + ":") + IntToString(int19)), (6 + int18), (6 + int18), 5.0); switch (int19) { case 0: string1 = "Bastila"; break; case 1: string1 = "Cand"; break; case 2: string1 = "Carth"; break; case 3: string1 = "HK47"; break; case 4: string1 = "Jolee"; break; case 5: string1 = "Juhani"; break; case 6: string1 = "Mission"; break; case 7: string1 = "T3M4"; break; case 8: string1 = "Zaalbar"; break; } AddPartyMember(int19, GetObjectByTag(string1, 0)); (int18++); } You can ignore all the subX() functions as they are either for debugging or not related to spawn NPCs. As you can see, the game will check KOR_REMOVE_PCS which should be the number of party members that got removed when leaving for the final tomb. It's set in k_pkor_partyleav and it's actually incorrectly set to the number of removed party members + 1, but that's not the issue here. The game will then go through KOR_REMOVE_PC0 to KOR_REMOVE_PC2 depending on the number of NPCs that got removed (although, it goes one step to far due to the incorrect KOR_REMOVE_PCS). These three globals are also set in k_pkor_partyleav and contain the party member indices of the removed NPCs and KOR_REMOVE_PC2 is just 0 as there is no third NPC to remove from the party (which makes me wonder, if at some point you had three companions at once). The game will then save this index in int19 and assing the proper string in string1 to spawn the NPC with AddPartyMember. Now, this is obviously working, but as soon as I change the values of KOR_REMOVE_PC0 or KOR_REMOVE_PC1 with KSE, that NPC just won't spawn for some reason. The only two party members that will spawn are Canderous and Juhani, the two party members that should spawn in my playthrough without tinkering. However, they also spawn if I switch their positions in the globals, which makes me wonder what the hell is going on here. All I can confirm is that both the index and the string are assigned correctly, so it seems that it's the AddPartyMember that fails. I just don't know why... Then again, it's not actually a problem as it seems to work fine in vanilla and when not using KSE to alter these two globals and I have no intentions of altering that part of the script. I'd just like to know what's going on. Thanks for any help
-
I'd recommend a fresh installation. However, you can just rename the current installation folder, so once you installed the fresh version, you can switch between the vanilla and the TSLRCM version by simply renaming the folders.
-
Have a look at this mod. Maybe you can find the files in there.
-
That might just be related to the integrated Intel GPU and not an issue with TSLRCM. Have you tried to start the game without TSLRCM installed?
-
One should add that the Version with credits was supposed to drop More than a month ago as well and hasn't. And there hasn't been a word on M4 either...
-
Damn, getting back into modding after some months of not working on a bigger mod is hard...
-
Or a chat that's not shut down?
-
Should I ask for the new MDLOps now? Yes, thank you
-
It's finally here, awesome And since you mention KOTORmax, when and where will that be available?
-
Delete the old file, i.e. manually replace it?
-
The patch is only available for the GOG and Steam version, not for the DVD version. So I'm afraid you have to buy it again, but I highly recommend getting it from GOG as that version will be DRM free and GOG is also the company that brought us this update so it's only fair to support them.
-
That would be awesome. I'd love to add the variety of your droids to my KotOR games but I wouldn't want to loose the vanilla design and a hybrid version similar to your hybrid HK droids would allow me to do that. And as I haven't said it before: Those droids look awesome!