Leaderboard


Popular Content

Showing content with the highest reputation on 10/29/2025 in Posts

  1. 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
  2. 1 point
    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.
  3. 1 point
    I'll send you a private message.
  4. 1 point
    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)
  5. 1 point
    Telos sky box. might do something else with the grass and ground because its very dull.
  6. 1 point
    new dantooine sky and grass for the next patch
  7. 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.
  8. 1 point
    The early progress on the patch manager I've been using as well as releases can now be found on GitHub
  9. 1 point
    (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.
  10. 0 points
    Another demo, this time showing off some of the Kotor 2 creature stats functions in Kotor 1. A few discoveries during this process: The various "BonusForcePoints" functions kotor 2 implements are going to be non-trivial to implement unfortunately, as Force point calculations are very hard-coded, and I'm not aware of any convenient ways to tip the scales there. `SetBonusForcePoints`, `AddBonusForcePoints`, and `GetBonusForcePoints` are still on the wishlist, they'll just take a bit longer as I patch the FP logic. `Modify<Reflex/Fort/Will>SavingThrowBase` functions are in a similar camp. Anytime the game calls `GetBaseWillSavingThrow` (or related), it live calculates the value based on class level and specific feats. Kotor 2 gets around this by adding an additional field to the creature stats structure that stores a modifier they use in this calculation. So again, these are still on the list, but will require a bit more love to get working than the commands I show off in the demo video All-in-all progress is going well. I'll be cutting another alpha release later, for anyone interested in experimenting. As always please share questions and comments on this effort!
  11. 0 points
    (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!