Jump to content

All Activity

This stream auto-updates

  1. Past hour
  2. The handles lose their texture and become matte grey depending on the camera angle, which is a shame.
    This is easily one of the best mods. Simple, effective, and perfect.
  3. Today
  4. Yes, that and the Baragwin Ion-X Gun and the Yavin 4 Breath Mask aren't displaying their unique models. I am slowly getting motivated to make the next update of RC-K1CP. When real work on the update truly begins I do intend to post in the WIP thread of my progress!
  5. On a different note: There is a bug with Carth's unique blaster textures. Whenever I have that option installed, everytime I open the equipment menu, Carth's Blaster icon only appears as a white square. I wasn't sure originally, wether this is due to a mod conflict or not but apparently a different user has already reported the same issue back in 2024, so it seems to be an older bug with this mod
  6. Huh. I will have to investigate this. Do you remember the exact moment the crash happened? I know I restored some Bastila lines during the cutscene but I do recall there were very specific crashes happening because of the K1CP mod due to its fixes of the Star Map model being incompatible with Mac or Linux or something like that. I have been in deep thought in regards to many of the restored appearances in this mod, and as such I do believe this might be a possibility going forward.
  7. Sharina is already covered in the Kotor 1 Community Patch. Apparently, her not appearing on Dantooine was the result of a bug and said bug is fixed in K1CP
  8. Thank you! As this mod is just two simple textures, it shouldn't conflict with 98% of all other major mods.
  9. StellarExile

    Swoop bikes

    What Taris reskin are you using?
    Simple and essential mod. Love it!
    Simple but effective essential mod.
    Very well made, essential mod imo.
    Essential mod, absolutely fantastic work!
    Essential mod.
  10. S_Male02.mdl this file has an issue where the off hand (left hand) holds the lightsaber weird and off position - the female file has no such issue. not sure how to fix it.
  11. Hello there! Super late to the party, but could you send me them? Thanks in advance!!
  12. Does having a higher Charisma score still affect Force power costs? Because I like playing as a LS Jedi and frequently use Force Lightning.
  13. Damn, a decade since I did that thing. Interestingly, having a look at it, there are minimal overlapping faces, so it would require very little work to create functional lightmap UVs. Just a small bit of shuffling for the overlapping islands. There's plenty of space, because it was a pretty inefficient unwrap in terms of maximising pixel density.
  14. @MproutyUnfortunately I don't have any insight, but maybe see if any of the solutions in these threads work for you: https://deadlystream.com/topic/6052-tsl-patcher-cant-choose-game-folder/ https://deadlystream.com/topic/7481-tsl-patcher-freezes/ If it's some kind of random behavioral issue with TSLPatcher, you could also try installing with Holopatcher instead of the TSLPatcher EXE. There's a slight difference in how Holopatcher interprets the installation instructions, so you'll probably need to swap in the Holopatcher-compatible version of changes.ini posted a few comments up.
  15. Sure, I'll work on that next after I finish the Taris Freighter lightmaps.
  16. View File Multiple Twilek player skins player character twilek skins. shouldn't conflict with anything. Submitter Linkara Submitted 05/13/2026 Category Mods K1R Compatible Yes  
  17. Yesterday
  18. I'm having an issue that I've seen others report on other mods. When I run the installer, I am never prompted to choose the game directory despite the installer saying "user selected." Then, when I press Install, the installer hangs at "Installation started <timestamp>..." and never proceeds. Any idea what's causing this? My set-up is pretty normal; WIN 11, SteamLibrary on C drive root directory not Program Files.
  19. Version 1.0.1

    3 downloads

    player character twilek skins. shouldn't conflict with anything.
  20. For some reason, I cannot get the bronze head and armor to work. Unsure why. It works for the avatar, but doesn't apply to the armor itself in-game.
  21. You can definitely put another texture mod on top of his, like for example this one : https://www.nexusmods.com/kotor/mods/1271 You also have a commando troopers mod here : https://deadlystream.com/files/file/2215-sith-commandos-k1/
  22. The way Suvams dialogue is setup makes him more difficult to work with. His dialogue conditionals are also different than any of the other players, which is likely why you are having issues. First of all, you are setting YAV_SUVAM_NUM to 10, and due to how the dialogue is structured, the game assumes that the last match must have been a practice game, as if that value is already 10, it is not normally possible to start a for money pazaak game against Suvam after 10 games. And Suvams scripts also check the last pazaak result directly (which shouldn't work according to scripts comments, but apparently does), which make this much more difficult, as the pazaak menu is being skipped. So it will require a little more engineering to make it work. First of all, in your simulator script, I would just change the variable to 9 instead of 10. Suvams pazaak count is not increased in an endscript like all the other players, it is instead increased in the first dialogue script after a win. This will allow the dialogue to naturally increase the value at the right time, and will skip the first dialogue branch, which is the current block. The next obstacle is yav47_suvam18, which is checking the last PazaakResult, which is not going to be a consistent value, as we have not actually played Pazaak, so this script will need to be edited. The easiest way to do this would be for you to set a local bool when you fire the simulator script. There are some unused ones as referenced here https://deadlystream.com/topic/3201-kotor1-local-booleans/. Then in yav47_suvam18, change this line int int1 = ((GetGlobalBoolean("G_Paz_JustPlayed") == 1) && (GetLastPazaakResult() == 1)); to int int1 = ((GetGlobalBoolean("G_Paz_JustPlayed") == 1) && ((GetLastPazaakResult() == 1) || (GetLocalBoolean(OBJECT_SELF, 57)))); and you can set your local back to 0 in this script as well. I've attached scripts with these changes. Quick test verified his dialogue plays normally. As an expansion to all of these scripts, you could forcibly restart the conversation with a delaycommand after closing the dialogue in the simulate script. This would improve the user experience, as they would not have to always re-converse with the npc, after doing the simulation As an aside, you should include all of your uncompiled source scripts with your mod, not just some of them. yav47_suvam18.ncs yav47_suvam18.nss simpaz_suv.nss simpaz_suv.ncs
  1. Load more activity
×
×
  • Create New...

Important Information

By using this site, you agree to our Guidelines.