Leaderboard


Popular Content

Showing content with the highest reputation since 10/14/2025 in all areas

  1. 8 points

    Version 1.0.0

    26 downloads

    I used the great textures from Vurt and had his permission to upload my version . I remade my custom hutts with those high quality textures. I also thank Dark Hope for the help i had and the patience i recieved https://www.nexusmods.com/kotor/mods/1730
  2. 7 points

    Version 1.0.0

    23 downloads

    This mod recruits the droid T3-H8 to the party when he is purchased from Janice Nall's droid shop. Installation You must start a new game to experience the full effects of this mod. Extract files from the downloaded archive. Run INSTALL.exe. Click "Install Mod" and select your game directory. Uninstallation During installation, TSLPatcher generates a backup folder and a log recording which files were affected. Copy portraits.2da from the backup folder to replace the one in your game's Override folder if a backup was created, otherwise delete the file from your game's Override folder. Copy tar_m02ab.mod from the backup folder to replace the one in your game's Modules folder if a backup was created, otherwise delete the file from your game's Modules folder. Delete all other files installed by this mod from your game's Override folder. Credits KOTOR Tool—Fred Tetra TSLPatcher—stoffe & Fair Strides DeNCS—JdNoa & Dashus DLGEditor—tk102 ERFEdit—stoffe & Fair Strides K-GFF—tk102 NWNSSCOMP—Torlack, stoffe, & tk102 tga2tcp—ndix UR This mod contains assets ported from Star Wars: Knights of the Old Republic II - The Sith Lords. License This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License. Donations If you enjoy my mods and would like to show your support in a monetary manner, you may do so via PayPal at https://www.paypal.me/carterunited.
  3. 6 points

    Version 1.0.0

    34 downloads

    I modified the mesh. The textures are not included they are a custom upscaled version of this great mod https://www.nexusmods.com/kotor/mods/1730 The textures names are C_Gammorean_Low, C_Gammorean_01,C_Gammorean_02,C_Gammorean_03,C_Gammorean_04
  4. 5 points

    Version 1.0.1

    40 downloads

    Covers regular, short and doubleblade lightsabers In the base game, every lightsaber you find has the same hilt model. My goal was to add some variability to the lightsaber hilts while also fitting within Kotor's engine limitations. Hilts are still tied to crystal color but should give the illusion that every saber hilt isn't exactly the same. The Blade I have rebuilt the original blade model, so that JC's Lightsaber Visual Effects for K1 is compatible (and recommended). The blades are now perfectly symmetrical after some UV editing. I also fixed a bug where some models didn't render all of the blade planes. A glowing light source has been added to each blade thanks to Crazy34's Light saber models. The Hilt I started with a base hilt design and then tweaked each one to have a slightly different shaped grip, emitter, and pummel. One hilt shouldn't stand out or overshadow the design of the others. Hopefully they feel like they belong. Hilts are completed for each crystal color. I added a custom hilt for Malak as well. Install Steps: - JC's Lightsaber Visual Effects for K1 is recommended. The glowing light colors were made to match these. - Extract and copy mod files to override directory - Alternative texture is also in the downloads, with less gold/bronze Credits: - Crazy34's Light saber models for the glowing light effect - JC's Lightsaber Visual Effects for K1 amazing blade texture, I matched the glowing effect to work with these
  5. 5 points
    Hey everyone! My Name is Lane. Some of you know me from Kotor Speedrunning, and others from my various Youtube exploits. I don't ever really post on Deadly Stream, but I've been lurking in and around the KotOR modding community for about a decade now. I have a degree in computer Science and decided to put it to good use, and reverse engineer KotOR 1 (the GoG version). This has been an on-going project for about 2-3 years now, and I've been sharing my progress with friends, and in some Youtube Videos. However, I've pretty much hit a wall with what I can do with this effort now. So I wanted to release my progress publicly, so other smart and clever people can start doing fun stuff with this. Linked below is a Google Drive with several useful things: A Ghidra SARIF export that contains all data types, function labels, parameters, Classes, and other additions I've made A Ghidra Format XML that contains the labels and function adjustments I've worked on. This is lighter weight than the SARIF file, but has more limitations when it comes to import fidelity. A generated `.h` file, that contains the Header information I have pieced together over time. Even lighter-weight, and more limited than the above What this is not: True Debug Symbols for kotor BioWare Intellectual Property A runnable or compilable program Kotor's Source Code A reverse engineering of Kotor 2 A reverse engineering of the Steam version * * A note about Kotor 1 Steam: While this reverse engineering effort targeted the GoG release of KotOR 1, the Steam version has MANY similarities; often times having identical memory addresses for most functions. Any Patch made for the GoG version can be pretty reasonably ported to Steam with a little bit of effort. What this is: A decently representative result of what Kotor's debug symbols might look like (format and terminology pulled from the MacOS symbols, and existing NWN docs) A research-based labeling and reverse engineering of the GoG version of Kotor 1 A labor of love for the past several years that I'm happy to share Why this is cool/important: This provides a stepping off point for creating proper patches for KotOR 1 This also provides a means for researching underlying issues with things such as memory management, graphical limitations, and compatibility This also provides a researching angle for coming to understand some of the more mysterious file formats, and how they interact with the game itself There are also a variety of fundamental similarities between this and KotOR 2. Which may unlock some insights for that game This is also the first step towards a proper re-compilation (though that is a long-ways off) How do I use this? You need Ghidra installed, with a modern Java Runtime Create a new project, and import swkotor.exe (as purchased from GoG) Open the EXE in Ghidra's code browser When it asks if you want it analyzed, select 'Yes" The default analyzers are fine, technically you could speed this up by stripping out a few unneeded analyzers The analyzers will take several minutes to complete (progress can be tracked in the bottom right) Once the analyzers have run, we can proceed Select "File > Add To Program..." and select the SARIF (or XML) file (download below) The importer will analyze the symbols and apply them to the project You now have a decently labeled/decompiled instance of KotOR 1 Limitations: 99.9% of the functions have been labeled, however there were a few stragglers that I was never able to work out. These will appear as `FUN_<address>` 92.3% of the Data is labeled, with stragglers being named `DAT_address` Data Types are VERY incomplete. The labeled ones consist mostly of frequently used types, and known fields. Unknown fields are marked `field<index>_<offset>` Virtual Function calls are very under labeled (largely due to the difficultly of labeling vtables in Ghidra). Though you can determine the underlying function by applying the offset to the associated Class vtable. Most functions have only automatic variables defined within their decomp. Typing and purpose of underlying variables beyond function names, and parameter types, are left up to inference. Overlapping functions. Certain functions overlap in this compilation, due optimizations within the Visual C++ runtime. As a result some functions such as `GetProperty0x30` are shared by multiple classes, and thus lack a name-space. You can usually work out their purpose by checking the associated data type at that offset. If you used the XML import, you will be missing a lot of typing and Function Class/Namespace info Final Notes: Please feel free to ask me any questions about this effort, or any thing strange you might find within the decomp. I've grown to be quite the kotor expert over the years, and I'd be happy to share any insights. You can reach out to me on Discord @lane_d, I'm in the Kotor Reddit server, as well as the kotor speedrunning server. I will be periodically posting updates to this drive, whenever I get the chance to work on this more. If anyone has any major contributions they'd like to see added, please reach out! I'd be happy to chat. Both the XML and SARIF formats have some limitations, unfortunately they are the best I can do without publicly sharing Bioware intellectual property. If there is something missing from these that you are in need of, please reach out and I can see if I can help you. (Note: I will not be abetting piracy though. Buy the damn game, it goes on sale all the time) Google Drive Link Here
  6. 5 points
    Vurt's TSL Visual Resurgence at Star Wars Knights of the Old Republic 2 - Mods and community Please report bugs. * This is v0.5 which means this is not a finished mod, but finished enough to test and give feedback. * The mod contains 2900+ textures, recreated with my AI model, photos and a lot of photoshop. 4X the resolution (usually) of the original textures.
  7. 5 points
    Two demos in one day! In this one I show, kotor 1 working with more than 256 rows in placeables 2DA (something that previously wasn't possible).
  8. 5 points

    Version 1.0.0

    16 downloads

    Simple Reskin - Malachor V KotOR2: TSL ------------------------------------------ Author: Kaidon Jorn October 2025 This mod is a simple reskin of the planet Malachor V All done with random textures from the internet. It's the second time I've attempted a planet or area reskin, so please, go easy on me. It may not be my forte, but I enjoyed making it anyway. Installation: Extract the .zip file to somewhere on your PC then just copy the subfolder to the game's Override folder. To uninstall just delete the folder from Override. Permissions: For personal use only, do not redistribute the contents herein. Thanks to the modders at DeadlyStream.com for teaching me how to mod the KotOR games and for hosting my mods. 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 THESE FILES.
  9. 4 points
    Little demo for this morning, showing off FreeCam in both games:
  10. 4 points
  11. 3 points

    Version 1.0.0

    13 downloads

    I modelised My favorite swotor mask. And i used some of the Quanon's head gear awesome mods for the lens and intern architechture. Thanks for the permission Quanon gave me https://deadlystream.com/profile/8941-quanon/content/?type=downloads_file&change_section=1 its not perfect and i'm learning to add a custom unique armor fitting with it to the game. If you want to modifiy it or to fix it just tell me so i can maybe use it as a patch XD for myself The textures are basic too. For the Tulak Hord's mask replacer version go here !!!
  12. 3 points
    I had some time today, I edited existing uti files of the robes: g_a_jedirobe01 — Padawan Tunic - Given in the Jedi Academy g_a_jedirobe02 — Sith Acolyte Tunic - Not placed in the game - Will be present on some sith characters (initiats) g_a_jedirobe03 — Not placed in the game, Ignore g_a_jedirobe04 — Not placed in the game, Ignore g_a_jedirobe05 — Not placed in the game, Ignore g_a_jedirobe06 — Qel-Droma Robe replacement g_a_kghtrobe01 — Jedi Consular Robe: • Kashyyyk, Upper Shadowlands — Jolee Bindo • Korriban, Dreshdae — Dak Vesser g_a_kghtrobe02 — Sith Adept Robe: • Tatooine, Anchorhead — Dark Jedi (ambush). • Kashyyyk, Great Walkway — Dark Jedi (ambush). • Manaan, Sith Base — footlocker. • Korriban, Sith Academy — footlocker. • Star Forge Temple (Main Floor) — Dark Jedi. g_a_kghtrobe03 — Jedi Guardian Robe - will be given to Juhani g_a_kghtrobe04 — Jedi Sentinel Robe: Dantooine Ruins — Nemo’s Remains. g_a_kghtrobe05 — Sith Warrior Robe - Same Dark Jedi Knight spawns/containers as …02 above (color variant of the same placement). g_a_mstrrobe01 — Jedi Knight Robe: • Tatooine, Eastern Dune Sea — Chewed Human Corpse. • Manaan, Hrakert Station — Remains. • Korriban, Sith Academy — footlocker. • Star Forge System, Rakatan Settlement — Wicker Bin. g_a_mstrrobe02 — Sith Lord Robe: • Manaan, Sith Base — Dark Jedi Master. • Star Forge Temple (Main Floor) — Sith Master. • Star Forge Temple Summit — Bastila (DS path). g_a_mstrrobe03 — Not placed Ignored g_a_mstrrobe04 — Not placed Ignored g_a_mstrrobe05 — Sith Marauder Robe: Same Dark Jedi Master / Sith Master / Bastila placements as …02 above (blue variant). g_a_mstrrobe06 — Darth Revan’s Robes, Ignore g_a_mstrrobe07 — Star Forge Robes (Light-only), Ignore Next step is to finish creating utc files for the rest of the robes These additional robes I will add to the characters in accordance with the table I mentioned before and maybe to shops/lockers (if they are not global)
  13. 3 points
    I'm making an expansion for the first game, which starts right after beating Malak and uses Thor110's free roam. It will have 2 main stories, one for light side and one for dark side players. The idea is to add Quanon's unused Korriban modules to the game, and link the end of the game to the Revan novel for LS and SWTOR for DS. Which is why I'm saying I hope you can actually publish them at some point, so my new characters, especially Sith but Jedi too, can wear them. So yeah, great work and good luck for finishing !
  14. 3 points
    The early progress on the patch manager I've been using as well as releases can now be found on GitHub
  15. 3 points
    (Cross posted from Discord) https://www.youtube.com/watch?v=dAHxy0tlDms A new day, a new Demo. Here I show File I/O working in NWScript. These just pipe into the existing c-standard `fopen`, `fclose`, `fread_s`, and `fwrite_s` functions. This allows for a rudimentary way for scripts to save data to be recalled later.
  16. 2 points

    Version 1.0.0

    2 downloads

    This mod allows you to loot a Krayt Dragon Pearl off of Vorn Daasraad's body (he's the Gamoreon Genoharadan target on Tatooine). This mod will only work on a save file from before Vorn Daasraad has been spawned. I always thought it was odd that you couldn't get a Krayt Dragon Pearl from Vorn, since the whole reason he's on Tatooine is because he's hunting a Krayt Dragon. You even see the dragon's dead body if you attack him with his own droid. Now you can get a 2nd Krayt Dragon Pearl without being a total jerk to Komad Fortuna. Or a 3rd, if you're okay with being a jerk. Of course, since Vorn is a Genoharadan target, you'll still have to get Dark Side points if you want the extra Pearl. Keeps things within the original spirit of the game. Installation: Drop the file into your Override Folder.
  17. 2 points

    Version 1.0.0

    13 downloads

    I retextured and remeshed 3 characters Deadeye need a little remade in the future.
  18. 2 points
    This is an addon tool which resides in the side panel. Tested for Blender 4.2 and latest KotORBlender. I made this mainly for myself for working with the world mdl files to add and fix issues with foliage, but it can serve a purpose for just working with .mdl in general. I guess the image says what it does, but overall it will be good for newbies (such as myself) but maybe also to others. The "Pre-Flight" is handy if you used KBlender and you never got it to export anything (i saw some comments about that on the KBlender page). There are quite a few criterias that has to be met, and it fixes those. "Add unique node numbers" is also good, you can add 100's of objects and then just click it and it will add unique numbers, very boring to do manually. This is 100% AI written code. So errors, bugs, not doing something correctly or as expected, garbage coding, that can absolutely be a thing. If you want something added to it that you think would be convenient to have when you are working with the world files or mdl files in general, then let me know and i can try to add it. I tried adding a 1-click to do a walk mesh for an object, spent 2 full days on that, it just doesnt work. Same with doing Lightmaps, spent many days on that and got nowhere. But other than those two it seems to have gotten things right, as far as i can tell. If you are good at .py or prompting AI's for code, then get in touch and maybe you could help adding lightmap or walkmesh functions to it. VTools.py Edit Added the .py, just install it like you do for any add-on.
  19. 2 points
    @DarthParametric I actually cracked the debug camera a long time ago when I was working on thread injection: Around 2-minutes in that video Honestly this entire playlist is filled with things I've gotten up to in these games. I haven't stuck a way to use it in the patcher just yet, but I have a few ideas.
  20. 2 points
    Ah, I see! That's why I didn't take it into account xD Because it is a different mod Thanks again! In any case, I think it would be better to have fixed utc files for unused robes. If some mods use them, they will have proper textures with JC's robe model port --- Also, a small update, I fixed all the icons of all the robes, now they have a proper display with the blue border
  21. 2 points

    Version 1.0.0

    12 downloads

    A simple modification that restores the player camera inside the Ebon Hawk in Knights of the Old Republic II: The Sith Lords to the closer, more classic view from the first KOTOR game. Nothing complex, just a straightforward return to the preferred camera. Additionally, this mod fully unlocks the Ebon Hawk's map from the start, just as it was in KOTOR I, removing the fog of war for a more seamless exploration of your ship. Installation & Important Notes: This mod is safe to install at any time. However, for the changes to apply correctly, it is highly recommended to load a save game from any location other than the Ebon Hawk after installation. Once you enter the Ebon Hawk with the mod active, the new camera and map settings will be baked into your save file. Because of this, uninstalling the mod may not properly revert the changes. Please ensure you have a backup save from before the mod was installed or used, just in case. Nostalgia is strong with this one. Credits: Fred Tetra, for KOTOR Tool TK102, for DLGEditor Torlack, stoffe & TK102, for NWNSSCOMP JdNoa & Dashus, for DeNCS Cortisol, for Holocron Toolset
  22. 2 points
    That should be very doable, right now the shipBuild function just return `true`, and does nothing else. So as far as patching goes, it's as easy as swapping a byte or two. I'll throw something together later today, and make a mini demo. Good suggestion, I'll add this to the list @DarthParametric Here ya go:
  23. 2 points
    Ok, so.... I finished with the creation of all the .uti files for all the robes (23 robes, wow). I added unique description for one of them and I added all the robes to the game and tested that the textures work and look fine (for for male and female NPCs). In accordance with JC's Cloaked Jedi Robes for K1 Mod Resource I created all types of textures for each robe (PFBI/PMBI, PFBIA/PMBIA, PFBIB/PMBIB, PFBIBa/PMBIBa, PFBIC/PMBIC, PFBIJu/PMBIZh), however for now I have only "gloves" texture for all of them. Next step will be to copy all the different hand texture for all the robes for all the variations 5 variations for 23 robes... it will take time xD When I have time. Another thing is that robes icons background does not look good (for most of the icons I can't see the blue border). I'll have to fix this too. For now, this is a screenshot with all of the descriptions of all the robes directly from the game, My achievement for today xD If you are interested in about the descriptions I came up with, you can open and enlarge the image
  24. 2 points

    Version 2

    305 downloads

    I made a higher Poly Malak. If you want to keep your textures Only put N_DarthMalakh01_Normal, N_DarthMalak01_Normal, n_darthmalak.mdl, n_darthmalak.mdx to your game. I added my Remastered textures to the File too. (The suit is to be reworked)Insert other media
  25. 2 points
    If you mean making a mod that makes the player character speak, then I believe this was attempted before in a thread years ago and the result was either it's impossible to do or it requires a lot of time consuming effort to essentially implement one single line of dialogue that it'd take years to produce a little bit of voiced player dialogue that'd be prone to all sorts of problems and incompatibilities that it's virtually impossible regardless.
  26. 2 points
    I recently created a mod that reskins Ulic Qel-Droma's Mesh Suit and made it upgradeable.
  27. 2 points
    Hello everyone I've been a quiet spectator for a bit and am kinda dumb when it comes to modding and was wondering if anyone could bring my favorite head from Kotor 2 to Kotor 1 (apologies if my formatting is incorrect for this kind of post)
  28. 2 points
    Hey Everyone! I finally had some time to finish the robe textures for the modification I realized that the skirt part of the robe needed additional piece of texture so I added it for the Jedi robes textures that were already done (Jedi Consular Robe, Jedi Master Robe, Jedi Padawan Robe). Fixed it + added the gloves texture Next I finished Jedi Guardian Robe. Applied the same collar fix and fix for the skirt part + added the gloves texture Jedi Keeper Robe: This looks maybe a bit off. I think I should check how to apply metallic effect through txi file. Maybe it will help Jedi Sentinel Robe was very easy to work with. I applied only the collar fix and recoloured cuffs Jedi Champion Robe required only collar fix. Similarly, Jedi Watchman Robe needed only the collar fix Next one was Jedi Archivist Robe. Surprisingly the belt part looked good. I added only collar fix and the fix for the skirt Jedi Weapon Master Robe was also easy to fix (added collar fix) And Lastly I finished recolouring the Qel Droma Robe
  29. 2 points
    new dantooine sky and grass for the next patch
  30. 2 points

    Version 1.0.1

    36 downloads

    I made used a mod that add some commandos from kotor 2. I took the mesh of the sith soldiers and made one higher poly. I used my sith soldiers textures modified. INSTALL FIRST the awesome mod from N-DReW25 and replace. I had the permission. There are 2 files only install one there's one with some bump and the other without.
  31. 2 points
    Hello there everyone! I didn't post a proper update for a while. To be honest i'm not doing any "insane" progress lately but we keep going forward! The reason of this post is simple, I'm gonna have some (well earned) holidays from November 1st to November 11. I want to organize a long stream showcasing the state of the mod and most of its current content. 2 main goals: Showing the work, and most of all, getting your feedbacks! 🫡 We'll be discussing a lot about where the mod is going, so if you want to provide some ideas, feel free to jump in! I'll be streaming on Friday night, 7 November, on my youtube channel (link: https://www.youtube.com/@zobizobstudio/streams). If you cannot join live no worries, i'll be uploading the entire thing on my channel aswell so you can still reach me in the comments, on Deadlystream or on the dedicated discord channel for the project. @vurt Wow, i've just noticed your message but i've seen your retexture work and it looks amazing! I'd be more than happy to have you on board for some retextures. Atm the only thing is, as I'm using K2's assets or some other modder's assets from Vanilla, i wish the textures to be close to the vanilla art style. If that still interests you we can work on some npcs variations, like their clothings or stuff like that! Especially for aliens. I couldn't post without showcasing some stuff, so here are some of the things i've showcased on discord. A kinrath model that sprays acid The hidden bek bartender: The outcast keldor: Very small showcase for the back alley entrance: Very small showcase for the new back alley module: New way to kill Selven: A new teleporting chadrafan npc concept: All of this is WIP of course Hope to see some people on stream!
  32. 2 points

    Version 1.0.0

    13 downloads

    I rework the mesh of the hutts they a little heavyer and they have a littlebit of frog like reflexion on their skin and i made them as unique as possible but the textures are not finished.
  33. 2 points

    Version 1.0.1

    65 downloads

    !!!THIS MOD IS FOR KOTOR 1 I ACCIDENTLY IMPORTED IT AD K2 MOD!!! I remade Brejik the mesh and textures
  34. 2 points
    Seconding a request for Republic Officers pack as well. Would love to see Admiral Dodonna and the other officers looking as good as the soldiers.
  35. 2 points

    Version 1.0.0

    167 downloads

    This mod will replace and update texture files. For proper operation, High Quality Aliens: Rodians 1.1.0 must be installed. Thanks to Stormie97 for the wonderful mod. To Install 1. Download: ST_Rodian HD.rar 2. Copy all files to the Knights of the Old republic's Override folder. (Example location - C:\Program Files (x86)\Steam\steamapps\common\swkotor\Override) 3. Delete the ST_Rodian 01 - 05.tpc files 4. If you like the mod; leave a comment or endorse! (It would be much appreciated) Made with love
  36. 2 points
    some TSL screens (4K, no reshade, just the fog fix)
  37. 2 points

    Version 1.1.0

    65 downloads

    Give the Mand'alor a companion worthy of his station. This mod adds a unique Maalraas, named Galaar (Mando'a for "Hawk"), as a permanent and interactive companion for Mandalore. I've always loved Mandalore as a character but felt he was lacking compared to other party members. This mod helps him stand out by giving him Galaar, a personal Maalraas that will follow him much like Bao-Dur's Remote, and one that will hopefully prove its worth in battle. But Galaar is more than just a follower; he's a character in his own right. His loyalty isn't given freely, it's earned through your actions and, most importantly, your relationship with Mandalore himself. To acquire Galaar, you must head to the Western Square on Onderon. There, you will find a Sullustan merchant named Kobbegg standing near a cage containing the beast. Speak to him, but be prepared to spend a considerable amount of credits for such a rare creature... or find another way to negotiate the price. Kobbegg's attitude and your options will change based on a choice you made long ago on Peragus. Features: A Deeply Reactive Companion: Galaar is a fully interactive party member. You can speak with him aboard the Ebon Hawk and in the field. His demeanor and dialogue are not static; they are a direct reflection of your Influence with Mandalore, shifting from hostile wariness to absolute devotion. A Unique Judge of Character: Galaar forms his own opinions! Ask him what he thinks, and he'll give you his instinctual, animal-level read on every member of your crew. This includes everyone from Atton to HK-47, and even recognizes the GONK droid from my other mod, GONK and Loaded! He Senses Who You Are: Galaar's opinion of you is complex. He will comment on your chosen path, whether you are a Guardian, Sentinel, or Consular, and even recognize your Prestige Class. Furthermore, he intuitively senses your alignment, offering a unique perspective on your journey to the Light Side, Dark Side, or somewhere in between. Planetary Instincts: Galaar can sense the nature of each world you visit. Ask him how he feels on planets from the jungles of Dxun to the tombs of Korriban, and get a creature's-eye view of the galaxy. Lore-Friendly & Interactive Acquisition: The quest to get Galaar is a multi-layered conversation with the merchant Kobbegg, featuring persuasion, intimidation, and even Force-based solutions. Additional Merchant: Kobbegg also operates as a general merchant, selling armor, weapons, and implants. Seamless Integration: If you have my Customizing Droids mod installed, Kobbegg will also sell Droid Customization Kits. Notes: The mod can be installed at any time, but the encounter will only trigger before your first visit to the Western Square. TSLRCM is not required, but is always recommended. Credits: Princess Artemis, for Cati (inspiration) Fred Tetra, for KOTOR Tool TK102, for DLGEditor Torlack, stoffe & TK102, for NWNSSCOMP JdNoa & Dashus, for DeNCS Cortisol, for Holocron Toolset
  38. 2 points
    Hey Everyone! I had some time today to continue with the Robes project Now we have Sith Lord Robe (Had some thought about this, the original texture for this one was no good, so I recoloured the Kavar's Jedi robe texture from Force Fashion) Sith Inquisitor Robe (This one required some tweaks but overall was good) Sith Crusader Robe (this one required only the collar fix. Looks amazing IMHO) Sith Warrior Robe (alas, I had to get rid of the part of the robe below the belt, those belts looked on a texture but on the characters they were not very good) Overall I'm almost done with fitting/retexturing/editing the K2 robe textures for K1 robe model for the sith. Only Sith Marauder and Sith Assassin Robes are left. When I have time I will finish them and I really want to move on to Jedi
  39. 2 points
    Thanks for your interest. Well, considering that I started playing around with A.I. upscalers around August 2020... it took me 4 & 1/2 years to get through 52% of the files I intended to fix. Suffice to say it will be a while; with no fixed date. I'm currently working on updating some of my earlier mods first before getting back to this one.
  40. 2 points

    Version 1.1.0

    524 downloads

    A Mod for Star Wars Knights of The Old Republic Author: N-DReW25 1.0.0 Release Date: 15.07.2025 Installation: Please install the K1 Community Patch FIRST before this mod! Simply click on the HoloPatcher.exe, click install and sit back and watch the HoloPatcher do its magic. Description: Kebla Yurt's Equipment Emporium is a weapons store that you'll come across at the beginning of the game, the entire shop is decked out with blasters, swords, grenades, armor, and other props to really sell the point across that this IS a weapons store. Some noticeable issues with Kebla Yurt's Equipment Emporium is that Kebla herself stands by a desk in the center of the room even though there is a shop window at the back of the shop that's very similar to the shop window that fellow shop owner Janice Nall stands behind in her nearby Droids by Janice store. This shop window is also obscured by a kiosk and two part piles which do a poor job at hiding the shop window behind it. Another issue is that there are several metal boxes at the back of the shop to the left which clips into an armor display. The Kebla Yurt Renovation mod does the following: * Moves two of the three metal boxes to the right side of the store right at the front of the store right next to the entrance. * Moves the third of the three metal boxes between an armor display and some bags in the middle of the left wall. * Moves the Kiosk away from the shop window and moves it to the far left side of the wall. * Moves the part piles away from the shop window and moves them to the area where the three metal boxes used to be. * Makes Kebla Yurt's desk invisible. * Moves Kebla Yurt behind the shop window. Known Bugs: This mod shouldn't have any bugs but if there are please report them to me on Deadlystream. Incompatibilities: To be added! Permissions: Do NOT claim credit for this mod and do not use my assets from this mod without my permission. Thanks to: Dark Hope: For pointing out the clipping issue with the three metal boxes on a Deadlystream post! Bioware: For such an amazing game! Cortisol: For the Holocron Toolset! th3w1zard1: For HoloPatcher! Everyone who downloads the mod! Legal: THIS MODIFICATION IS NOT SUPPORTED BY BIOWARE/OBSIDIAN ENTERTAINMENT, LUCASARTS, DISNEY 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.
  41. 1 point
    View File My favorite and custom Swtor mask (Tulak Hords version) I was asked if i could make my custom mask that you can find here . Into Tulak's hord mask so we can find it on korriban. I was unable to do it so The_Chaser_One did it and better that i would have he even crafted a custom icon. Enjoy and thank you The_Chaser_One. I also made a more lore friendly version the link will be available as soon as i finish it. Submitter Elayerfawkes45 Submitted 11/07/2025 Category Mods K1R Compatible Yes  
  42. 1 point

    Version 1.1

    902 downloads

    Part of the... Hoods for Jedi Robes for KotOR2: TSL by AVol Version: 1.1 -------------------------------------------------------------------------------- Models in this mod based on Svosh's Robe Collar Fix. For correct use this mod you must download fixed textures for robes: - for Padawan robes: 'Standard Robe Pack for use with Svösh's Robe Collar Fix' from http://www.pcgamemods.com/13033 - for Master's robes: svösh's master's robe textures from http://www.angelfire.com/crazy2/xclone_0101/kotor_mods.htm or: My variant of master's robe textures from http://www.pcgamemods.com/14506/ If you use Svosh's textures for masters robes you must copy all files from "svosh_master_robe_skins" folder in your game "Override" folder. If you use RedHawke's Exile's Item Pack you must copy files from "RHExileItemPack" folder in your game "Override" folder. ----- Installation: To copy all files of archive from folder Override in game folder Override. Using the "giveitem" cheat command (Optional!) This method will add the hood to the player character's inventory. To enable cheats, in your game directory edit swkotor.ini and under [Game Options], add EnableCheats=1. Start the game then when playing press ' to bring down the console prompt, which is not visible. At the console prompt: giveitem avol_hood_02 - Hood for Padawan Robe giveitem avol_hood_03 - Hood for Dark Padawan Robe giveitem avol_hood_04 - Hood for Baran Do Navice Robe giveitem avol_hood_05 - Hood for Matukai Apprentice Robe giveitem avol_hood_08 - Hood for Jedi Robe giveitem avol_hood_09 - Hood for Dark Jedi Robe giveitem avol_hood_10 - Hood for Norris Robe giveitem avol_hood_12 - Hood for Gray Jedi Robe giveitem avol_hood_13 - Hood for Jedi Knight Robe giveitem avol_hood_14 - Hood for Dark Jedi Knight Robe giveitem avol_hood_15 - Hood for Matukai Adept Robe giveitem avol_hood_17 - Hood for Jedi Master Robe giveitem avol_hood_18 - Hood for Dark Jedi Master Robe giveitem avol_hood_19 - Hood for Baran Do Sage Robe giveitem avol_hood_21 - Hood for Ossus Keeper Robe giveitem avol_hood_22 - Hood for Natth Cowling giveitem avol_hood_23 - Hood for Arca Jeth's Robe giveitem avol_hood_24 - Hood for Aleema Keto's Robe giveitem avol_hood_25 - Hood for Sylvar's Robe giveitem avol_hood_27 - Hood for Jolee's Robe giveitem avol_hood_28 - Hood for Thon's Robe giveitem avol_hood_29 - Hood for Crado's Robe giveitem avol_hood_30 - Hood for Nomi's Robe These can then be equipped by the player with the appropriate feats from the inventory screen.
  43. 1 point
    Can confirm the same bug is happening on my playthrough.
  44. 1 point

    Version 1.0.0

    22 downloads

    I remeshed Selkath and retextured them
  45. 1 point
    Right! So, the reason is actually because I'm trying to make a PT-BR version of a list of great/essential mods for the game to share with other KotOR enthusiasts here in Brazil that don't speak English (version 2 of a project I've been doing ever since 2013). The translation has been available for a while and it works wonderfully with K1CP, but since the Manaan Pazaak Tournament adds a bunch of dialogue and what not, it wouldn't be much use for those that don't speak the language, but this minor add-on would certainly make its way into the list.
  46. 1 point
    Robes and armor 1024. PFBI01.tga PFBI03.tga PFBI04.tga PFBG06.tga PMBD08.tga PMBE01.tga pmbj01.tga PFBJ02.tga Aliens 1024 N_Duros01.tga N_Duros03.tga
  47. 1 point

    Version 1.0.0

    193 downloads

    Adds the ability to enter your whole party into stealth without activating solo mode. SUMMARY Why do Sith assassins get to sneak around in groups? Don't they have to turn on solo mode? Now your party can move through the shadows together too. This mod introduces party stealth mode, allowing all eligible party members to simultaneously enter stealth without turning on solo mode. Party stealth mode is activated through an armband which turns on stealth for all party members that are equipped with a stealth unit or otherwise able to use stealth (Force Camouflage, G0-T0). Solo mode will be turned off and your party members will follow you like they normally do. Activating the armband while this mode is on will remove everyone from stealth. See additional notes below. Only the main character can activate this ability and must be able to use stealth. You will get the armband as soon as Kreia joins your party on Peragus. Because of this you'll need a save from before she joins your party for the mod to work properly. However if you're mid-game and want to install this, you can get the armband with the giveitem code "partystealth". INSTALLATION To install, run TSLPatcher.exe. Unaltered copies of any modified files will be placed inside the "backup" folder in the location of TSLPatcher.exe. UNINSTALLATION 1. Remove the following files from override: - spells.2da - baseitem.2da - partystealth.uti - m_imp_prtysneak.ncs - a_addkreia.ncs - ii_ootgmbnds_001.tga 2. If any files were created in the backup folder, move them to override. COMPATIBILITY Should be compatible with most mods assuming they use TSLPatcher or this mod is installed after. OTHER NOTES Party stealth mode is defined by the following conditions: 1. All eligible party members are in stealth mode. 2. Solo mode is turned off. If any of the above conditions are not fulfilled, activating the armband will apply them. If all of the conditions are fulfilled, activating the armband will remove stealth from all party members. You won't be able to toggle stealth for individual party members without turning on solo mode. If you press the normal stealth toggle it will turn on solo mode regardless of whether a character is in stealth or not. Also occasionally characters may exit stealth on their own to perform an action for whatever reason. If any of these things happen, just activate the armband again to reinitialize party stealth. Computer-controlled characters with the Sneak Attack feat will usually perform sneak attacks if you enter combat from this mode. However sometimes they might do another action which breaks stealth first. When changing modules like entering the Ebon Hawk with party stealth on, characters may remain in stealth mode until they perform an action which breaks stealth, such as entering a conversation. I don't expect this to cause major issues but it's probably best to remove party stealth before leaving an area. Bear in mind the developers had reasons for enforcing solo mode, whether for balance or technical issues. I haven't encountered any serious issues but haven't tested every situation. Please let me know of any bugs or weirdness and I'll try to fix it. PERMISSIONS Feel free to use the source code for your own mod as long as you give credit. CREDITS offthegridmorty KOTOR Tool - Fred Tetra TSLPatcher, TalkEd - stoffe, Fair Strides
  48. 1 point

    Version 1.2

    392 downloads

    In the latest Aspry patch, the textures on lightsaber hilts are bugged. It seems theres an extra shader applied to them and maybe the math gets broken at certain angles. The fix is to simply change the supermodel type from 'lightsaber' to 'effect'. This does however cause smoke and hazy effects to render on top of the lightsaber blade. An alternative fix is being worked on using lightmap as a texture. This can be done with Kotor Blender. I have also attached patched models for vanilla and Crazy34's New_Lightsaber_Blade_Model_TSL. Please make this change when creating your own lightsaber mods, for Aspyr compatibility. If using the files provided here just copy to the override folder. If using Crazy34's lightsabers, install their mod first then copy/overwrite with these patched models.
  49. 1 point

    Version 2.5.2

    55,064 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.
  50. 1 point

    Version 1.0.0

    211 downloads

    When HK-47 uses the power blast feat with 2 blaster pistols equipped only 1 shot is being fired, this mod fixes this issue, now 2 shots are being fired.