Leaderboard


Popular Content

Showing content with the highest reputation since 10/26/2025 in Posts

  1. 7 points
    I was wondering if anyone would be willing to add glass overlays to these upscaled Nar Shaddaa windows for me. These would be for personal use but obviously anyone could download them off this request page if they chose to. For illustration purposes I have attached these textures as PNGs but to save you some time, I've also made a DropBox link here where these textures are in TGA format. Thank you for your consideration in this matter.
  2. 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).
  3. 4 points
    Little demo for this morning, showing off FreeCam in both games:
  4. 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)
  5. 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 !
  6. 3 points
    The early progress on the patch manager I've been using as well as releases can now be found on GitHub
  7. 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.
  8. 2 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
  9. 2 points
    For those who are hungry for updates, thanks for all the kind words and support. As holidays are around the corner, my free-time has been a bit taxed lately as I strike the balance between KotOR things and spending time with my and my fiance's family. (Not to mention keeping up with my real job 😬) However, I did spend some time formalizing some of the various "wishlist" features, as well as other pending investigations within the repository issues view. Most upcoming work on my radar for this project is of the unexciting sort. I want to adjust the way I'm modelling game objects in the patching framework to better reflect the underlying inheritance in the base game (i.e. Functions that take a CSWCObject can accept a CSWCCreature, which is derivative, as valid input, etc). I also want to improve/expand the address database system. Right now, they're being stored in plain-text TOML format, which is fine at the current scale, but as this project has grown, this system is already becoming unwieldy. I'm looking to swap to using SQLIte, such that we can have efficient, live, swappable local databases that we can just dump address data directly out Ghidra into. Finally, kotor 2 reverse engineering just needs more work. Kotor 1 is in a great place, such that if we were only targeting that game, I could really accelerate this project. But since I'm endeavoring to provide a solid framework for both games, some TL&C is required to get kotor 2 at least somewhat up to speed. I likley will be giving DarthOuroboros's GhidraMCP suggestion a shot to see if that can accelerate things more here. As a lot of the work to be done is mostly comparative reverse engineering, which I hope falls into the low-complexity class of problem that AI typically excels at. As always let me know if there are any questions or suggestions! P.S. @ajdrenter Galaxy map stuff would be pretty interesting, I've added an issue for me to investigate that at some point in the future. Thanks for the suggestion!
  10. 2 points
    Watching your progress on this very closely. This is the most exciting thing in KotOR modding in a long time in my opinion. The placeables extension is fantastic, would like to see the same thing for the galaxy map as I know it has a similar limit. Also transcending the limits of appearance.2da would be amazing although I know this probably requires a huge amount of manual effort.
  11. 2 points
    Another little demo: Here I show off directly accessing 2DA values from scripts
  12. 2 points
    An update for my Galaxy of Faces mod. Ithorians have been added: The Dark Harbinger, Wound in the Force, and Dread Cyborg mods now serve as the basis for the Dark Side Ending's Dark Jedi Masters. The HD Soul Patch Man of @ScrierOne was used for Holdan's new head whilst Effixian's Alternative Atton Clothing was used for his new body. The head was retextured so that it looks as if Holdan does Spice whenever he's not running jobs for Davik or harassing waitresses' in the Lower City Cantina. The status of permission in regards to ScrierOne's work comes from the Nexusmods page for the head which states the following: Despite these terms clearly stating I do not have to credit him, I still want people to know that it was his awesome mod which brought you this awesome appearance. Gorton Colu also comes with a new head, one that was made by me, and should you use the NPC Diversity Pack with Galaxy of Faces Gorton will wear a Military Suit and will bear the face of a militaristic Fascist: And Ajunta Pall has been given a new appearance, though he will be added via a standalone mod which will be found at this link once it is approved: Feel free to let me know what you think of these recent developments!
  13. 2 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.
  14. 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.
  15. 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.
  16. 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
  17. 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:
  18. 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
  19. 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.
  20. 2 points
    I recently created a mod that reskins Ulic Qel-Droma's Mesh Suit and made it upgradeable.
  21. 2 points
    I'll send you a private message.
  22. 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)
  23. 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
  24. 2 points
    new dantooine sky and grass for the next patch
  25. 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!
  26. 1 point
    How can you import a model from KOTOR 1 to KOTOR 2 and vice-versa? I understand that you need to use MDLOPs or MDLEdit, and then a 3d model software like blender with the add-ons available for download on this site, but I don't understand what steps actually need to be taken to make the model files from one game readable by the other game.
  27. 1 point
    i'll take a look at it. unfortunately these are some of the harder textures to make, i might do a pure upscale instead.
  28. 1 point
    Amazing work! You managed to break down so much limitations... This is extremely exciting :)
  29. 1 point
    What do you mean by "future skill checks"? There are already skill checks in dialogue that add more skill based dialogue responses should said skill be a certain level. So this is the Loganverse team's latest rebrand I take it? As SH has already said, they seldom collaborate with others or share their own assets with modders. I had no idea who this is, I tried searching for them on YouTube and the only thing that came up was a Let's Play channel. The thing about Kotor Machiminas is that what you see on screen isn't as deep or as complex as the scene itself depicts. You might see an awesome scene with combat and the like but in reality what's going on behind the scenes is that NPCs are being directed to do things via JC's Toolbox and what you might think is an epic cutscene might actually be 5 separate choppy in-game cutscenes that were recorded and edited together to look like one scene when in reality they aren't. When it comes to any sort of animation, what isn't seen on screen doesn't need to be animated - this is especially true with 3D animation. I say this because something that might look cool in a Machimina might not actually work properly in-game as a mod. Remember how Revan and Kreia used Darth Malak's Lightsaber pose? In-game the ability to use blasters, the ability to use security on a door, or dialogue animations might be broken as those were never seen in the movie and thus could be left broken. Even if you ignore the fact that SWST and Varkor take their time making VO, there only value as voice actors for the ROR mod is for the character Revan and we aren't even up to writing that character's dialogue let alone finalizing his script. There will definitely be voice acted characters before Revan, so why would we want famous examples like SWST and Varkor for those characters when we can have unsung actors play these roles and do a good job at those roles (and not take 3-5 years to produce the lines for those roles too). And should by some miracle we do finish the entire mod and get to voicing Revan should these two be unable, unwilling, or no longer be here to voice the character we will inevitably have to look for different people. We are working on Episode Two and the patch for Episode One, though SH is right in saying that a collaboration at this stage is very very unlikely. I can assure you, work for Episode Two is well underway and it is going well without a major collaboration at this present time.
  30. 1 point
    View File True Ajunta A Mod for Star Wars Knights of The Old Republic Author: N-DReW25 1.0.0 Release Date: 15.11.2025 Installation: Install the Kotor 1 Community Patch FIRST before this mod. Simply click on the HoloPatcher.exe, select your swkotor directory, click install and sit back and watch the HoloPatcher do its magic. If you want Ajunta Pall to appear transparent, please copy the textures from the "Transparent Skins" folder into your Override folder and overwrite the non-transparent skins that were installed by the HoloPatcher. Description: Ajunta Pall is a long dead Sith Lord who you encounter in Kotor I as a Force Ghost. The problem with Ajunta's depiction as a Force Ghost, other than George Lucas' (and later Disney's) retcons to how Force Ghosts work, is that Bioware was lazy when it came to making Ajunta's appearance and gave him a generic Dark Jedi model with a basic reskin that makes his robes a whitish blue color and they also gave him an energy shield effect to make him appear more ghostly. There have been two mods over the years that turn Ajunta Pall's appearance from an underpaid Bioware intern's first draft into something that you'd actually expect a Sith's Force Ghost to look like. In 2007, we saw the Ajunta Pall Unique Appearance mod by SilverEdge9 that reskinned the cut Jedi Council robe model and Deadeye Duncan's head to make Ajunta look like a creepy old Sith Lord. And in 2018, we saw the Spectral Ajunta Pall Canonical Appearance mod by VarsityPuppet that added a unique model that's heavily inspired by the TOR MMO that makes Ajunta look like he was a strong Sith Warrior during his lifetime. These two mods are great, but my problem with the Ajunta Pall mods was caused by the Kotor Mod Builds managed by Snigaroo. In his builds, he lists SilverEdge9's Ajunta Pall Unique Appearance as being faithful to Ajunta Pall's canonical appearance. What is Ajunta Pall's canonical appearance? The statue inside his tomb, of course. But when you look at the statue and compare it to SilverEdge9's Ajunta Pall, you will quickly realize that SilverEdge9's depiction of Ajunta is in no way inspired by the statue. The Ajunta Pall statue uses the old Asian man head and the Nemo Jedi robes whilst SilverEdge9's Ajunta Pall uses Deadeye Duncans head and the cut Jedi Council robes. My mod, the True Ajunta mod, adds what I think is Ajunta Pall's *actual* canonical appearance to the game. This mod gives Ajunta a reskinned old Asian man head and a reskinned Nemo robe so that Ajunta *actually* resembles the statue inside the tomb. As for the mention of Snigaroo's Mod Build here, should Snigaroo not approve of how my mod handles Ajunta he won't be adding it to the Build despite my opinion that my mod is a more accurate canonical representation of Ajunta than SilverEdge9's mod - ultimately it is his decision whether to include, or not include, mods in the Builds and should he not include this mod I do not want you, the player, to harass him for that decision. Known Bugs: This mod shouldn't have any bugs but if you find any please report it to me on Deadlystream. Incompatibilities: Obviously incompatible with any mod that modifies Ajunta Pall's appearance. Please report any further incompatibilities! Permissions: Do NOT claim credit for this mod and do not use assets from this mod without my permission. The texture of Ajunta Pall's robes, on the other hand, is free to use as it came from the K1EP Modder's Resource Thanks to: SilverEdge9: For making the Ajunta Pall Unique Appearance mod from which I borrowed the source code which removes Ajunta Pall's shield! VarsityPuppet: For making the Spectral Ajunta Pall Canonical Appearance mod! Sniggles: For adding SilverEdge9's mod to his Mod Build which inspired me to make this mod! Bioware: For such an amazing game! Fred Tetra: For Kotor Tool! 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. Submitter N-DReW25 Submitted 11/14/2025 Category Mods K1R Compatible No  
  31. 1 point
    Ah, what I meant was that because I created a robust file I/O interface, that it wasn't clear how valuable the existing (unimplemented/gutted) print features would be. Though, in that the functions *are used*, but just not doing anything. Then yes, I agree, this would be quite valuable for sleuthing existing game logic and debugging those issues. For new mods though, I'd definitely recommend my function that's just a wrapper for `fopen`. But regardless, getting logs/feedback out of the game has been asked for a lot, and establishing several avenues for y'all is definitely a high priority for me.
  32. 1 point
    I had a big break in modding over the years xD I will xD
  33. 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  
  34. 1 point
    Ah, ok, that tracks more with my expectations after my aforementioned previous discussions on the matter with ndix UR. But if you have enabled some provision for debug messages then that is extremely useful. Traditionally the only option has been using SendMessageToPC to pipe stuff to the Feedback window, which is pretty limiting. Although speaking of which, if you can increase the scrollback buffer of that window, that might be another handy change. On a different note, something else that comes to mind is the debug camera option that they left in the Xbox version but apparently removed entirely for the PC version. If you don't already have access to the Xbox version I can give you the XBE to look at, if that's of use/interest. Maybe there are other goodies in there that are missing from the PC version.
  35. 1 point
    Hey! I really appreciate this! Thanks! No, no problems. At least now xD I edited the following files of the original game g_a_jedirobe03.uti g_a_jedirobe04.uti g_a_jedirobe05.uti g_a_mstrrobe03.uti g_a_mstrrobe04.uti I didn't make new textures for them, just reused existing ones. If they are used in K1R, then they will show up, if it is the vanilla game, they won't be there.
  36. 1 point
    The Jedi Temple scene does have crashes at various points depending on game version and/or system. As I personally do not experience these bugs, hence why I can't fix them, a temporary fix has been made by adding an option where you can skip the Jedi Council scene when you meet with Drayen outside the elevator. This'll take you straight to Corellia with Drayen in your party and allow you to play the mod beyond the Jedi Council scene. This'll be added in Episode Two with all of Episode One's bug fixes and improvements, however, Episode One's bug fixes (and this particular bug fix) will be available to players early in the form of a sub mod which will be downloaded separately from ROR and will be installed on top of ROR as it is now.
  37. 1 point
    The target would be his UTC file, since that's where his inventory is stored. As to how you'd do it, while you could just edit the UTC directly and add it to his inventory via Holocron Toolset or KGFF, a better approach might be to use scripting to do it, since that allows for more control. It would also mean it wouldn't be affected by the edge case of people loading a save where he had already been spawned before they installed the mod, since in that case a modified UTC wouldn't take affect (creatures, placeables, etc. are saved in the GIT file stored in the user's save as soon as they are spawned). Probably not a big deal in this instance, but it can be a significant consideration in other circumstances.
  38. 1 point
    Thank You! I will! This sounds awesome! Of course, as long as original authors of the assets I'm using are ok with that I will gladly share anything from the mod as long as I am credited ... Quick update. I had some thoughts about making a Jorak Texture for the Temple Master Robe and Archeologist robes on Korriban. The texture for archeologists looks like this (below) at the moment. It looks good in the distance but in conversation all the dirty parts are mostly not visible xD
  39. 1 point
    Didn't read all, but my latest policy is: feel free to use my creations, simply credit me.
  40. 1 point
  41. 1 point
    @heyorangeDamn bro that looks great ! How much more time do you think you'll need ? Also, I assume this will work for both games ? It'd be nice if I could make my expansion compatible with your mod. Anyway, great work.
  42. 1 point
    Hello. Thanks for your contribution. Could I ask you what you meant exactly with "There's some little things to fix" in the description? Cheers!
  43. 1 point
    Don't thank me when I haven't even close to finished those Bounty Hunters. But looking forward to your preview!
  44. 1 point
    Fantastic 👀 Well i'm currently reorganizing all my work, ressources and stuff while also preparing the stream. If you use discord, feel free to join the discord channel i've created for the project (Discord link). So we can discuss all of this here. Ye absolutely. I'm just wishing to have at least 1 viewer hopefully 😄I'd like for this to be interactive and dynamic. But yea anyway this will be uploaded so people can still react and provide feedback Didn't even think about promoting it on the official discord. Gonna check the guideline and do this, thanks When you put it that way...😷 (This model will likely be the kinrath viper creature btw, dealing additional acidic damages with a chance of paralysis. Gonna try to expand a bit on the damage variety overall so...). Thanks! By the way now that I mention the "official" discord for the project, I must credit properly some people that are already helping on some dialogs and writing ideas: Big thanks to @Janus_Icon for providing the initial dialog ideas for the Duros Bek Bartender (and the option to load the bek drinks), the outcast Kel Dor, the Ithorian Bek Garagehead and the Lower City Bardroid! Big thanks to @SAO1138 for providing dialog ideas for the new bounty hunters aswell (Iridorian and Zabrak). And the others for more general feedback and interesting discussions surrounding Kotor.
  45. 1 point
    Of course. I have attached the save file. Thanks! 000009 - Game8.zip
  46. 1 point
    (Cross posted from Discord) More progress has been made on doing some patching in KotOR 1! Here I demonstrate adding in a simple test function mto the NWScript VM, and running it in-game. The summarize what all is happening here: We patch the space allocated and existing bounds checks for script IDs (I extend the space such that we could have up to 1000 total functions, but I can always extend it more in the future) I patch the existing initialize commands function in the game to continue onto my own block of code where I initialize this new `TestScriptExtension` command to call a simple execution script (using an identical pattern to the existing scripts in this game) I added this command to nwscript.nss so `nwnnsscomp.exe` would recognize and compile the script with this new function (special thanks to Edward T. Smith for making a tool that is so well designed that it works out of the box for our very custom situation here) Set it to run when I talked to carth The actually function just prints some debug text to Windows Debug, however, we can also have them call other game functions, implement custom stack logic, among other things. There's still A LOT of work to be done: I want to clean up the patcher/launcher so that using it is actually intuitive I want to add a bunch more commands to the script extender I want to tutorialize the creation of both new commands and patches, so that the lovely and creative people of kotor modding world can contribute in the future Setting up Kotor 2 compatibility much much more Let me know if ya got any questions!
  47. 1 point
    some TSL screens (4K, no reshade, just the fog fix)
  48. 1 point
    consumed by the dark side
  49. 1 point
    around 1950 textures are mostly done, gonna go over some of the skyboxes again though, make them 2048x2048 since it just looked quite a lot better.
  50. 1 point
    The Handmaiden starts with row 454, which has the hood up and uses a full body model (a single 3D model that includes the head & body, "F" for "full" in column "modeltype"). Later she uses row 638, which uses separate head and body models ("B" in column "modeltype" and a number in the "normalhead" column) , so it can show gear that's equiped. There's several ways to go, up to you. You can turn 638 into the hood up version or keep the hood down in 638 but make it so that it will never show gear. Sure, no problem. Effixians_Keep_Companian_Default_Clothing_Jedi_only_version.zip