Leaderboard


Popular Content

Showing content with the highest reputation on 03/16/2020 in all areas

  1. 3 points
    First, let me go ahead and say that not only is this possible, it's actually extremely simple. It's also extremely tedious to set up as the global default, unless you're building from the ground up anyway. Now, a little background info: When I was younger and more naive (read: four years ago), I had the idea to start working on a massively ambitious project (read: total conversion mod) all on my own just to see how far I could push the envelope when it comes to modding. I was no novice when it came to ingenuity in KotOR modding, having already cut corners to introduce the community to a mod that had been wished for many times since the release of TSL (insert shameless PartySwap plug here). It quickly hit me that there was something else about the KotOR games that bugged the crap out of me, and that was that they were fully voiced - with exception to the most important character in both games. I quickly decided that would be the next hurdle I tackle. It didn't take too long to figure it out. That's right - I've been semi-selfishly sitting on this information for four years. Why? I don't really know, maybe because I wanted to present it to the community in a large project that I was happy to be a part of and blow everyone's minds. But it has become clear to me that others have been looking for a way to make it work, and I'd be remiss to not share my experiences with this particular endeavor. With all that said, here's a bit of a disclaimer: All instructions in this tutorial are given under the assumption of modding TSL, NOT KotOR. The reason for this is simple - TSL scripting, especially when it comes to dialog, is a lot more malleable. I'm not saying this is the only way to pull it off, it's just the easiest to illustrate. The first question is "How do we enable the PC to be a valid speaker?" The answer: We don't. Simply put, any time you type 'PLAYER' into the Speaker tag line in a DLG node, the dialog will crash. This alone has turned others in the past off of pursuing this endeavor. "So, we can't use the PLAYER tag to make the PC talk, and we can't assign a new tag to the PC, so how do we make this work?" This is where one's fundamental understanding of how dialogs work comes in handy. There's always one performer in a dialog that doesn't need a stated speaker tag, and who is that? The owner. So necessary workaround #1: Make the PC the owner of the dialog. This presents a new problem, however. The game is coded to always assume whatever other valid object is in the command chain in game scripts that fire dialog is supposed to be the owner, whether it's the object starting a conversation with the PC or vice versa. You know what the solution for this is? Remove those objects from the command chain. So necessary workaround #2: Make the PC start the dialog with their self. That's right, the PC is going to be starting up conversations with him/herself that you will need to invite all other participants into through the use of the Speaker/Listener tags - and those tag lines are going to be used a lot, unless you literally want the PC to be talking to him/herself. The way to set this up in a script is quite simple: AssignCommand(GetFirstPC(), ActionStartConversation(GetFirstPC(), "name of dialog")); Note: I'm including a Modders Resource (jb_func.nss) that functions as an #include script, which already has this function set up as a custom function, so all you need to type up is PCStartDialog("name of dialog"); jb_func.nss Any dialog fired by this function will have the PC speak all the entry nodes with blank speaker tag lines. Yes, you are still required to put VO on Entry nodes, not Reply nodes, which means having the PC speak a line of dialog that the player chooses from a replies list requires creating an entry after said reply with the VO information attached. Of course, this particular solution only covers game-triggered dialogs so far. What about click-started dialogs, the ones triggered by the player? This is where we get into potentially tedious territory. See, player-triggered dialogs are fired by the game gathering the name of said dialog from the objects Dialog string entry. This data call is hard-coded - we have no access to it through scripting. The obvious solution would be to set up a custom script for that object's OnDialogue event, but when one such object becomes a hundred or a thousand, that's a lot of OnDialogue scripts. This is where I came up with a different solution, which proved to be quite ingenious. Simply put, convert the player-triggered dialog to a game-triggered dialog. So necessary workaround #3: Make the dialog re-trigger itself. Note: Regarding the steps below, If you want to skip most of the work, I'm including here the script that I use to re-trigger the dialog, as well as a new dialog template to start from. Sadly, you'll have to do the globalcat.2da editing yourself. a_load_dialog.nss a_load_dialog.ncs newdialog.dlg How do we set this up? First, you need to create a global in the globalcat.2da. It can be a boolean or a number, doesn't really matter. For the sake of this tutorial, I'll be using a boolean and naming it "dialog_pc_owned". Next, create a blank entry at the very top of your DLG. Set its first conditional to "c_glob_bool_set", set the String Param to be "dialog_pc_owned", and check that "Not" box. Right now, this node does nothing but always fires. What we want to do next is make something happen. Specifically, we want to set the global, so in the first script field, insert "a_glob_bool_set", set the first parameter to 1, and the String Param to "dialog_pc_owned". This means the next time the dialog is fired, it will ignore this top node because the condition isn't being met. Obviously, there's still something missing. We need to trigger the dialog to fire again under ownership of the PC. So leave the DLG as is for a moment, and create a new script - I'm naming mine "a_load_dialog.nss". Now, in order to avoid compiling a ton of different versions of this script, we'll be making use of the String Param in the TSL dialog system. So if you're using my include file, the script would look like this: #include "jb_func" void main() { PCStartDialog(GetScriptStringParameter()); } Compile that bad boy (make sure the include script is in the override folder in your game directory), then go back to that top node in the DLG file. Insert "a_load_dialog" into the second script field, then in the String Param field, insert the name of your DLG file. So now your dialog will re-trigger itself with ownership belonging to the PC. We're done, right? WRONG! This is where I reckon I'll lose most of you, because it's a bit difficult to put into words, so please bear with me. When you trigger a dialog like this, you're setting a variable that wasn't set previously so that you can call it to re-trigger itself. The downfall is that variable will not automatically reset so that the top node triggers every time. In order for this to work, that top node needs to trigger every time, which requires resetting the global after the dialog re-triggers itself. How you set this up in the Dialog file is completely up to you, but my preferred method is to create a second blank entry underneath the first one, set the first script field to "a_glob_bool_set", first parameter to 0, and String Param to "dialog_pc_owned", then let that node be the master root for the rest of the actual dialog tree. That's all there is to it, obviously the rest is on you to write the dialog and acquire the VO in the typical way. I hope this helps, folks. Until next time... DarthTyren has spoken!
  2. 3 points
    From the Detailed information of 2da files thread: Everything else you wrote sounds correct to me.
  3. 2 points

    Version 1.0.0

    17,268 downloads

    Description This mod aims to completely change Juhani's appearance and to bring it close to artist Corbin Hunter's redesign of the character. As a result, her head has been significantly reshaped and slightly retextured. An all-new body model was created and hand-painted from scratch. A new custom lightsaber has been created as well. As several aspects of Juhani have been changed, this mod has been divided into four editions to accomodate the final user's preferences: 1. An All-in-one edition which includes all the changes to bring her close to Corbin Hunter's vision of the character. 2. A head-only edition, which only includes Juhani's revamped head. 3. A body and lightsaber edition, which includes her new body model and lightsaber. 4. Finally, a head and lightsaber edition, which includes her new head model and lightsaber. Please refer to the included images in the 'Editions reference pictures' folder included in the archive to help you determine your preferred edition. Installation 1. Extract the archive's content somewhere on your computer. 2. Double-click the "Juhani Appearance Overhaul.exe" file. 3. Choose an edition to install. Refer to the images included in the 'Editions reference pictures' folder to determine which one you prefer. 4. Click on the "Install Now" button once you're ready. The installer will try to locate your game installation directory. If it can't find it on its own, direct the installer to the correct location. 5. The installer will proceed to install the mod's files into your Override folder. Once it's finished, you may exit the installer and launch the game. IMPORTANT If you choose an edition that includes Juhani's new body model and lightsaber: Juhani will have her new items only if you are using a save that is prior to the moment she joins your party right before leaving Daantoine. If you are past that point in your playthrough, she won't have her new items. You can get them using KSE or via entering the following commands in the in-game console: ⦁ giveitem j_juhsaber01 ⦁ giveitem j­­­_juhbody01 CREDITS Original design by Corbin Hunter: Artstation link This mod uses JC’s TSL Supermodel port in order to animate the skirt. SPECIAL THANKS to Artist Corbin Hunter for granting me permission to use this concept art @DarthParametric for his help and advice throughout the development process @bead-v for the incredible tools MDLEdit and KoTORMax
  4. 2 points
    Redhawke's mods, as listed on jumpstationz, have been completely backed up on deadlystream with several of them undergoing tslpatcher renovations.
  5. 2 points
    Thanks Kexikus! I'm happy to report my testing was successful and now the scuba walk has appropriate footsteps sounds.
  6. 1 point

    Version 2.5.2

    48,321 downloads

    ======================================================== A KNIGHTS OF THE OLD REPUBLIC II: (THE SITH LORDS) MODIFICATION Extended Enclave 2.5.2 (TSLRCM 1.8.6. Add-On) ======================================================== Authors: danil-ch & Darth Hayze 1. Description: ---------- This is an extended version of the Rebuilt Enclave sequence. We went through the dialogs as modified by TSLRCM and compared them to the original versions and made changes and restored additional dialog based on developer notes, etc... The following scenes have been modified: 1. "Did you not go to join him?" Brianna approaches Kreia before the dialog with the Masters starts, and Kreia has additional lines. 2. "It is not as it was..." The sequence with the Jedi Masters has been extended with additional dialog from the masters themselves, and when reading the minds of your party, all but Hanharr/Mira are now represented. Depending on whether you learned how to read the character’s minds, or spoke to Atton about playing Pazaak, lines may change. 3. "You have failed me. Completely, and utterly." Kreia's confrontation with the Exile now includes several minutes of new dialog. Some of the additional dialog is dependent on your influence level with Kreia, i.e. the scene will have different lines at the end if you have high, low, or 'neutral' influence with Kreia. 4. "The exile is dead. We have lost - it is over." After Kreia tells the Handmaiden(s) that the Exile is no more, they board the hawk, Brianna/Sisters informs the crew of the Exile's passing, Kreia tells them the one who waits in the darkness will now be revealed, and then leaves for Atris. 5. "I know you can hear me." The scene with the Exile reading the party's minds has been extended with dialog from Atton, Bao-Dur and Canderous. 6. "If you don't warn them" The scene with Kreia and Mical has been placed back in the original location as an extension of one of the Kreia/Mical scenes on the Hawk. 7. "I have never needed you." Sion now receives word of the Exile's fate on Dantooine and decides to confront an old friend. 8. Numerous bug fixes and tweaks to this scene to make it run smoothly. In addition, there is now a shot of Nihilus' ship before the scene with him and Tobin. 2. Install: ---------- (It is highly recommended that you update your game to version 2.10 (the 1.0b update) before installing this mod.) As this is an add-on for TSLRCM, TSLRCM 1.8.6 is REQUIRED. This is an add-on for TSLRCM, it will not work otherwise. So have that installed. First, if you do not have M4-78 installed at this time, you only need to follow TSLRCM Step 1 below. If you do have M4-78 installed, or at any later date you install it, you will need to follow M4 Step 2 below. TSLRCM Step 1: To install, extract the Extended Enclave folder to anywhere you like, as long as it is not the SWKotOR2 folder. When you run the installer, it will present you with two options, for TSLRCM only, select Standalone option and run it. M4-78 Step 2: If you DO have the M4-78 installed, after running the TSLRCM Standalone installer, run the M4-78 Compatibility patch and follow the instructions presented to you. 3. Uninstall: ---------- There has been a backup made of the modified files, within a folder titled 'backup' in the 'Main Patch" folder. Simply copy 650DAN.mod, 003EBO.mod, 907MAL.mod, and 904MAL.mod into your Modules folder and delete 020EBO.mod, and 856NIH.mod, and you will have reverted to TSLRCM 1.8.6. 4. Bugs: ---------- This has been tested several times to make sure nothing weird happens. If you find anything, let us know. 5. Distribution Notes: ---------- This mod may not be modified or distributed without the explicit permission of the authors. 6. Thanks: ---------- Thanks go the entire TSLRCM team; your work has been outstanding. 7. Credits: ---------- AUTHORS: danil-ch and Darth Hayze: Pretty much most stuff, this included lots of scripting, vo splicing, picking up slack when one of us disappeared, etc... CONTRIBUTORS: Hassat Hunter and zbyl2 - for help with getting it ready for TSLRCM 1.8.2/1.8.3 Sith Holocron - for suggesting a mod collaboration and the cool logo Exile007 - for contributing his early work on the Sion scenes TESTERS: Loki147 Malkior THIS MODIFICATION IS PROVIDED AS-IS AND IS NOT SUPPORTED BY BIOWARE/OBSIDIAN ENTERTAINMENT OR LUCASARTS OR ANY LICENSERS/SPONSORS OF THE MENTIONED COMPANIES. USE OF THIS FILE IS AT YOUR OWN RISK AND THE ABOVE MENTIONED COMPANIES OR THE AUTHOR IS NOT RESPONSIBLE FOR ANY DAMAGE CAUSED TO YOUR COMPUTER FOR THE USAGE OF THIS FILE. BY BIOWARE/OBSIDIAN ENTERTAINMENT OR LUCASARTS OR ANY LICENSERS/SPONSORS OF THE MENTIONED COMPANIES. USE OF THIS FILE IS AT YOUR OWN RISK AND THE ABOVE MENTIONED COMPANIES OR THE AUTHOR IS NOT RESPONSIBLE FOR ANY DAMAGE CAUSED TO YOUR COMPUTER FOR THE USAGE OF THIS FILE.
  7. 1 point
    @danil-ch I don't know if it's fixable, but when Kreia drains the Jedi Masters' and they're collapsed on the floor, their left sleeve constantly flaps about.
  8. 1 point
    I didn't think the film was THAT bad, although I am comparing it to TLJ and TFA so there is that.
  9. 1 point
    It's been a year since I started doing these mod roundups. Some of you appear to be reading them, so I think I'll be sticking with it into the new year. I’ve found that forcing myself to go through my upload history in order to provide you people with updates is actually kind of helpful. It makes me more consciously aware of what I’ve been working on and what hasn’t been updated in a while. On occasion it’s even led to the release of mods that might not have otherwise seen the light of day. So there will be more of these mod roundups yet. Updates Korriban: Back in Black for K1 - New installer, including a version compatible with KOTOR Community Patch v1.8 and beyond. Some new fixes have been added, too: Tariga is now female, as according to the student Tamlen; Tariga and a couple other students will now attack with lightsabers; and the two Sith rebels in the caves that were missing robes before have robes now. Vision Enhancement for K1 - New installer, including a K1R-compatible version. Some minor cleaning up, too. Feat Fixes for K2 - Added some fixes for the Scoundrel class. Zhug Attack Fix for TSLRCM - Minor administrative update. Mandalorian Armor for K1 - Minor administrative update. Jedi Tailor for K1 - Fixed a few bugs in the tailor's dialogue. New Mods Teal Hammerhead for K1 - Gives the Republic ships in the first game the color scheme they have in the second game. Something Completely Different Usually I’d link to something else here, such as the aforementioned KOTOR Community Patch update or maybe the subreddit poll, but this is a special occasion. I’ve decided to start releasing these over on Reddit, too. If you’re reading it here, you may continue to do so and nothing will change and that’s not very special. But I’ll be using up this section for other stuff on the Reddit version and I have nothing else to talk about. So that’s it!
  10. 1 point
    Yeah, the Emperor returning in EU was bad, and oh so often hammered home when Disney discarded canon. "Lol, it made Palpatine a clone. So good they discarded it." "Yeah, but that's not all the EU wa..." "PALPATINE SURVIVES. TERRIBLE. EU BAD." Some years later "Hey, look, Palpy's back!"
  11. 1 point
    Apparently Rey healed it when she healed his stab wound. To be fair, it kinda makes sense (and by "makes sense" I mean "it makes sense in a trilogy where nothing makes sense".)
  12. 1 point
    For the first time I watched a Star Wars filmed in December instead of January, I was first in line and behind my seat in the middle where several little children who giggled from the opening commercials before the film to the ending credits of the movie. Other than the kiddies, I thought the film was "acceptable" considering they had the dumpster fire of a movie TLJ to work with. Things that disappointed me in this film isn't necessarily what people would expect me to complain about. At this current time, I can't really remember anything worth mentioning right now. I may add to this later.
  13. 1 point
    Shall we have a laugh on Christmas Eve Eve? I think we all could use one. (Keep your eyes open for the Santa cameo!) BTW, more on topic: is it possible that we don't have to quote the entire quote by @dg1995 every time it's cited? Perhaps some selective quoting is in order if it is going to be referred to constantly. Just my two cents. Happy holidays!
  14. 1 point
    I agree with everything you said as well. About RedLetterMedia. People online use to tell me to watch their reviews. I did not find them funny. Even though I defended the prequels. If someone did not like them I didn't bash them. If you don't like them that's okay. Everyone has their own tastes in movies. But RLM I found to be very immature. People would say "oh that's because you don't like dark humor." I would then say I do like dark humor. But RLM's humor I did not like and have not seen any of their videos since episode III. The part I mentioned about fanatical SW fans running up on Hayden and yelling at him. I heard that from some youtube videos a little bit before RotS came out in theaters. Another person I cannot stand is the actor/comedian Simon Pegg who for a decade bashed the prequels and anyone who liked them. I mean what a dick. About the access media today. Yeah these so called journalists and Disney shills still have the nerve to blame old time fans for TRoS failure with critics. Their especially mad because JJ put a lot of fan service in the movie, and the access media hates the fans. That's why they keep calling us trolls and incels. I can't wait for the day these hacks are exposed and they are ridiculed out of the business. Like you said they still keep saying that the fans drove off Kelly Marie Tran and Daisy Ridley off of social media which is a lie. Nowadays I get my news from Tim Pool, and the Quartering on Youtube. Anyway I need to go take my meds. I'm beginning to foam at the mouth. Yes! How can I forget the "People vs George Lucas" video. That is why I don't blame Lucas for selling the rights. Just wish Disney would have respected the source material. But like I said it's too late now. With Carrie Fisher gone we will never get the original three onscreen together, and that's what longtime fans wanted with TFA.