Search the Community
Showing results for tags 'tsl'.
Found 358 results
-
Version 2.0.0
11,578 downloads
This mod replaces the static computer panel placeables [PLC_comPanel] that found throughout the game; such as one in the Bumani's, Medical Unit, and Czerka's [on Telos] with the animated ones. -= BACKGROUND =- It was Sith Holocron's request about his least favorite texture in KotOR2/TSL that makes me work on this mod. But as time goes by curiosity on trying to improve it haunts me, by doing more and looking much better -- hence the born of v2.0.0. On this [as well as the previous one] I have him to help on making the panel screen, hence the sweet result of a movie-like looking ones. You should check out his blog from where the inspiration comes -- And then with DarthParametric's handy-hands the panel now have a new symmetrical frame, some 3D buttons, also few TOR-ported bits on the screen. Not stopping there, it now have a new panel board decals -- a copied work from Frank Diorio's downloadable decals [then niubniubsuniverse-dot-com]. -= ABOUT THIS MOD =- Inside this mod are 2 version; transparent screen and a solid-non-transparent version. Preview: Transparent Solid Specifics: New panel frame trimesh made by @DarthParametric New 3D buttons trimesh made by DarthParametric Panel screen bitmap made by @Sith Holocron Panel board bitmap made by Frank Diorio TOR ported animated bits redistributed by DarthParametric Tools mostly worked on to -- KOTORmax [gmax] by bead-v / Aurora MDL [N++] by Symmetric The panel texture currently still in vanilla scheme [based on stock PLC_comPanel], albeit upscaled to x1024 from x256 using PS'. -= KNOWN ISSUES =- With transparent version, some objects will become invisible behind the screen; such as traffics seen from Medical Unit and lightsaber as well with the hilt. There's a workaround for the traffics, but that's beyond the scope of this mod so they're something to live with at the moment. Nothing that I know of though for the lightsabers. -= FINAL REMARKS =- There's always room for improvements; reviews, critiques, comments, suggestions, questions and feedbacks are much appreciated. PM me here, write them on my feed or leave any on the mod's page as you please. And thank you! for downloading, and using this mod. Hope you enjoy the mod as much as I do! -= INSTALLATION =- Run the installer and choose INSTALL option. Pick one you choose -- then hit the [Install Mod ->] button! -= UNINSTALLATION =- Choose the UNINSTALL option in the installation menu For a clean uninstallation, remove these files from the Override after proceeding with the main procedure -- eb_plc_commpane1/2.MDL eb_plc_commpane1/2.MDX eb_plc_commpane1/2.PWK eb_companel_btns.TPC eb_companel_pnel.TPC eb_companel_wave.TPC sheb_compnl_scrn.TPC -= COMPATIBILITY =- Not compatible with mods that hard-overwrites placeables.2DA Not compatible with mods that alter the modelname and label setup for RowIndex 292 in placeables.2DA Not compatible with mods which happened to have the same name with the MDL, MDX, PWK, and TPC-s that included with this mod -= REDISTRIBUTION =- Do not redistribute this mod or re-release it on any websites. I'd love to provide direct support to my work, which wouldn't be possible if they're scattered in the Unknown Regions. If you are to re-use an assets to a project you will be releasing, please be kindly to ask for permission first - that way I know what's up, and if it's interesting enough I might offer to be involved, lol. Or at least we'll talk. Cheers! -= CREDITS =- The Almighty Force Obsidian Entertainment and LucasArts for The Sith Lords Frank Diorio as the creator of panel board bitmap Sith Holocron for feedbacks, ideas and the panel screen DarthParametric for past-present knowledge, his creation that I took learn from, and particularly with this project -- the panel frame, 3D buttons as well the TOR-ported bits [and both endless technical-to-non assistance which makes this mod possible] JCarter426 and Inyri Forge for all their awesome work that I look up to - I learned a lot from their mods and been practicing a lot using their method Fred Tetra for KotOR Tool bead-v for KOTORmax and MDLedit Symmetric for Aurora MDL ndix UR for tga2tpc and tpcview stoffe for TSL Patcher and Fair Strides for the updates VarsityPuppet for 2DA Editor All Tool Makers wasn't mentioned - can't make it without y'all! All streamers on DeadlyStream All modders either active or inactive DeadlyStream for being a home -- a place to hangout, to discuss and hosting my work DeadlyStream staffs for tirelessly improving and maintaining the site DeadlyStream's #modding [Discord] channel that particularly essential for this project -eb- 4 comments
- 4 reviews
-
- 8
-
-
-
- placeables
- mods
-
(and 4 more)
Tagged with:
-
Version v0.5.0
11 downloads
A simple CLI to easily compare KOTOR file formats. This is a very simple CLI to PyKotor. If you find TSLPatcher isn't patching the resulting files in the way you want, you can use this tool to compare your manual changes to the resulting TSLPatcher result. You can also use it to compare entire installations, directories, or single files. How to use: Simply run the executable. It'll ask you for 3 paths: PATH1 Path to the first K1/TSL install, file, or directory to diff. PATH2 Path to the second K1/TSL install, file, or directory to diff. OUTPUT_LOG File name/path of the desired output logfile (defaults to log_install_differ.log in the current directory) If you point PATH1 and PATH2 to two KOTOR installs, it will ONLY compare the Override folder, the Modules folder, the Lips folder, the rims folder (if exists), the StreamWaves/StreamVoices folder, and the dialog.tlk file. This was a design choice to improve how long the differ takes to finish. This includes any subfolders within the aforementioned folder names. Supported filetypes/formats: TalkTable files (TLK) Any GFF file (DLG, UTC, etc) Any capsule (ERF, MOD, etc) Not supported: NCS, NSS Any file format that's not supported will have its SHA256 hash compared instead. CLI Support: This is a very flexible tool. You can send it command line arguments if you would like to use it in a 3rd party tool. Run `kotordiff.exe --help` to get a full syntax. If there's an error, the exit code will be 1. If the two paths match, the exit code will be 0. If the two paths don't match, exit code will be 2. FAQ: Couldn't I just open my two files with Holocron Toolset/ERFEdit/K-GFF etc? You could, but for me it became tedious to manually compare them side by side, expanding every node etc. Leave alone completely multiple files. This tool allows you to simply input two paths and have the full differences outputted and logged. A main benefit is it'll show you the exact GFF paths that differ. Output such as `Missing struct: "EntryList\5\RepliesList\3" {contents of the struct}` has been very useful. Why is my antivirus is flagging this? This is a false-positive and there's nothing I can do. Python source scripts are compiled to executables using PyInstaller, but unfortunately some antivirus's have been known to flag anything compiled with PyInstaller this way. The problem is similar to why your browser may warn you about downloading any files with the .EXE extension. This whole tool is open source, feel free to run directly from the source script: https://github.com/th3w1zard1/PyKotor/blob/master/scripts/kotordiff/__main__.py There's a well-written article explaining why the false positives happen on their issue template: https://github.com/pyinstaller/pyinstaller/blob/develop/.github/ISSUE_TEMPLATE/antivirus.md TLDR: PyInstaller is an amazing tool, but antiviruses may flag it. This is not the fault of PyInstaller or my tool, but rather the fault of how some scummy users have chosen to use PyInstaller in the past. Please report any false positives you encounter to your antivirus's website, as reports not only improve the accuracy of everybody's AV experience overall, but also indirectly supports the PyInstaller project. Source code: https://github.com/th3w1zard1/PyKotor/blob/master/scripts/kotordiff/__main__.py Credit: @Cortisol for creating the PyKotor library (i.e., 90% of the code for this tool) -
So I am finally making a thread to see what the people who actually use SLM or my other mods would like to see be implemented in it. I already have a long list of things I'd like to accomplish, some are harder for me to do and some are not. But again if you have a suggestion or personal preference let me know here and I will see about going forward with it. Want to do list: Removing the rancor from Khoonda plains and placing that saber somewhere else. Remaking all saber blade textures to look more like the movies and shows (Kenobi, Mandalorian) Possibly switching models for pc hilt and/or red default hilts. Doing compares for all party saber making dialogs instead of hard replaces. Remove the Acheron saber quest and all associated files (getting rid of it). Removing all .mod files from the installation that are hard replaces and putting those files in tslpatchdata to be inserted into the exisiting .mod files. Removing the zakkeg boss from Dxun pt.1 and replacing that saber since Acheron wont exist anymore. Saber blades Here is what we have... ...but this is what I want If anyone had suggestions on how to achieve this it would be most welcome. -KJ
- 126 replies
-
- 3
-
-
-
- tslrcm 1.8.6
- tsl
-
(and 4 more)
Tagged with:
-
I really enjoyed @Effix's https://deadlystream.com/files/file/2137-effixians-cathar-pack/ and am wondering, can anyone convert Juhani from K1 into a playable character in K2? Having her underwear model (and possibly using her Jedi outfit for the dancer model) would be ideal, but honestly I mostly just want to be able to use her head.
-
Version 1.0
8,883 downloads
Author: Kainzorus Prime, Darth DeadMan Mod Name: TSL Prequel Robes Replacement 1.0 ************************* Under NO circumstances is this, or any of my other, mod(s) to be posted on ANY site other than by myself. ************************* 1. Info =========== This mod replaces the Padawan-type robes with the styles seen in Episode I-III. Includes new icons. 2. Installation: ========= Copy the files from the Main Mod folder into the Override. Overwrite all if prompted. Install optional components from specified folders into the Override as you want. 3. Credits: =========== Special thanks to: Holowan Laboratories - For all the great resources. 4. DISCLAIMER: =============== This Mod is not supported by LucasArts, Bioware or Obsidian. Please do not contact them for support of this mod. Copyright: Star Wars: Knights of the Old Republic, characters, items, etc. are trademarks and copyrights owned by their respective trademark and copyright holders. Star Wars: Knights of the Old Republic: The Sith Lords, characters, items, etc. are trademarks and copyrights owned by their respective trademark and copyright holders. Bioware and the Odyssey Engine are trademarks of Bioware Corp. Obsidian are trademarks of Obsidian Entertainment. All trademarks and copyrights contained in this document are owned by their respective trademark and copyright holders.- 18 comments
- 15 reviews
-
- 1
-
-
- Mod
- Replacement
- (and 6 more)
-
Version 1.2
3,866 downloads
Author: Kainzorus Prime Mod Name: Companions' Personal Robes ************************* Under NO circumstances is this, or any of my other mods, to be posted on ANY site other than by myself. ************************* 1. Info =========== This mod adds personalized robes for the human companions who can be trained into Force users. It also modifies Handmaiden's robe. 2. Instalation: =========== Place the files in the Override folder. 3. Required mods: =========== http://deadlystream.com/forum/files/file/64-movie-style-jedi-master-robes/ http://deadlystream.com/forum/files/file/101-visas-unmasked/ 4. Usage =========== The character's robe will automatically be added to the inventory once they become a Jedi. 5. REMOVAL: =========== Remove the files from the OVerride folder. 6. Credits: =========== Special thanks to: Holowan Laboratories - For all the great resources. Fair Strides - Inventory spawn scripts. 7. DISCLAIMER: =========== This Mod is not supported by LucasArts, Bioware or Obsidian. Please do not contact them for support of this mod. Copyright: Star Wars: Knights of the Old Republic, characters, items, etc. are trademarks and copyrights owned by their respective trademark and copyright holders. Star Wars: Knights of the Old Republic: The Sith Lords, characters, items, etc. are trademarks and copyrights owned by their respective trademark and copyright holders. Bioware and the Odyssey Engine are trademarks of Bioware Corp. Obsidian are trademarks of Obsidian Entertainment. All trademarks and copyrights contained in this document are owned by their respective trademark and copyright holders. -
View File KotorDiff A simple CLI to easily compare KOTOR file formats. This is a very simple CLI to PyKotor. If you find TSLPatcher isn't patching the resulting files in the way you want, you can use this tool to compare your manual changes to the resulting TSLPatcher result. You can also use it to compare entire installations, directories, or single files. How to use: Simply run the executable. It'll ask you for 3 paths: PATH1 Path to the first K1/TSL install, file, or directory to diff. PATH2 Path to the second K1/TSL install, file, or directory to diff. OUTPUT_LOG File name/path of the desired output logfile (defaults to log_install_differ.log in the current directory) If you point PATH1 and PATH2 to two KOTOR installs, it will ONLY compare the Override folder, the Modules folder, the Lips folder, the rims folder (if exists), the StreamWaves/StreamVoices folder, and the dialog.tlk file. This was a design choice to improve how long the differ takes to finish. This includes any subfolders within the aforementioned folder names. Supported filetypes/formats: TalkTable files (TLK) Any GFF file (DLG, UTC, etc) Any capsule (ERF, MOD, etc) Not supported: NCS, NSS Any file format that's not supported will have its SHA256 hash compared instead. CLI Support: This is a very flexible tool. You can send it command line arguments if you would like to use it in a 3rd party tool. Run `kotordiff.exe --help` to get a full syntax. If there's an error, the exit code will be 1. If the two paths match, the exit code will be 0. If the two paths don't match, exit code will be 2. FAQ: Couldn't I just open my two files with Holocron Toolset/ERFEdit/K-GFF etc? You could, but for me it became tedious to manually compare them side by side, expanding every node etc. Leave alone completely multiple files. This tool allows you to simply input two paths and have the full differences outputted and logged. A main benefit is it'll show you the exact GFF paths that differ. Output such as `Missing struct: "EntryList\5\RepliesList\3" {contents of the struct}` has been very useful. Why is my antivirus is flagging this? This is a false-positive and there's nothing I can do. Python source scripts are compiled to executables using PyInstaller, but unfortunately some antivirus's have been known to flag anything compiled with PyInstaller this way. The problem is similar to why your browser may warn you about downloading any files with the .EXE extension. This whole tool is open source, feel free to run directly from the source script: https://github.com/th3w1zard1/PyKotor/blob/master/scripts/kotordiff/__main__.py There's a well-written article explaining why the false positives happen on their issue template: https://github.com/pyinstaller/pyinstaller/blob/develop/.github/ISSUE_TEMPLATE/antivirus.md TLDR: PyInstaller is an amazing tool, but antiviruses may flag it. This is not the fault of PyInstaller or my tool, but rather the fault of how some scummy users have chosen to use PyInstaller in the past. Please report any false positives you encounter to your antivirus's website, as reports not only improve the accuracy of everybody's AV experience overall, but also indirectly supports the PyInstaller project. Source code: https://github.com/th3w1zard1/PyKotor/blob/master/scripts/kotordiff/__main__.py Credit: @Cortisol for creating the PyKotor library (i.e., 90% of the code for this tool) Submitter th3w1zard1 Submitted 09/30/2023 Category Modder's Resources
-
Version 1.0.0
15 downloads
Modder's Resource - Iridorian by 90SK It is not fully assembled but it contains the parts required to set it up in appearance.2da. The head is the Ubese "Sith Assassin" model, and the body is PMBBL (the KotOR 1 Soldier clothing). The skins and the model for the body are there. The head model needs to be arranged but the texture provided for the head is on the Ubese Helmet model. KotOR Tool is required to finish the appearance into TSL, and it is not compatible with K1 at this time. --- Special thanks to Fred Tetra, author of KOTOR Tool, and Obsidian / Bioware for their original material. --- 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. -
View File Iridorian Modder's Resource - Iridorian by 90SK It is not fully assembled but it contains the parts required to set it up in appearance.2da. The head is the Ubese "Sith Assassin" model, and the body is PMBBL (the KotOR 1 Soldier clothing). The skins and the model for the body are there. The head model needs to be arranged but the texture provided for the head is on the Ubese Helmet model. KotOR Tool is required to finish the appearance into TSL, and it is not compatible with K1 at this time. --- Special thanks to Fred Tetra, author of KOTOR Tool, and Obsidian / Bioware for their original material. --- 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. Submitter 90SK Submitted 08/27/2023 Category Modder's Resources
-
Current Version (Beta) 1.07 Last Updated - January 22, 2015 Introduction This project implements tweaks the tone-mapping, adds effects such as SSAO, Depth of Field, Godrays, Bloom, sharpness, etc via Reshade by Crosire. Version History v1.07 - Added Reshade 0.13.1 & MasterEffect ReBorn 1.0.340 - Removed SSAO, added Gaussian Anamflare. Re-organized Effects in alphabetical order, sorted by FPS Hit / Performance v1.04 - Reduced darkening from SSAO, minor changes. v1.03 - Initial Release Requirements Your GPU must support OpenGL 4.3. Also ensure you have the latest drivers: Latest Nvidia Driver // GTX 400 series or higher // Drivers older than 347.09 will NOT work due to opengl bug - (May be resolved as of Jan 22, 2015, if you wish to use older driver) Latest AMD Driver // Radeon HD 5xxx or higher Installation Step 1 Download v1.07, extract the contents to the same folder as swkotor2.exe Step 2 Run the game > If everything worked, you should first get a prompt for reshade (Message Box) > Then in-game you will see text in the top left, also as you make edits in real-time > Press Scroll Lock key to disable/enable effects in-game Editing Effects In-Game Edit ReShade.fx to edit my presets in Notepad or Notepad++ > You can adjust effects in real time. I recommend running the game in Windowed Mode to save time. To run TSL in windowed mode, make sure your swkotor2.ini has the following codes added: [Display Options] FullScreen=0 [Graphics Options] AllowWindowedMode=1 FullScreen=0 > When in game, press ALT-Enter to activate Windowed Mode. Credit: Crosire - Official Website for Reshade Marty Mcfly - Facebook Effects used in v1.07 > Curves / DPX / Levels / Liftgammagain / Sharpening / Vibrance / Gauusiananamflare > Main focus was to improve the dull tones, bring out a bit of sharpness, improve black/white levels, and adding the flare as opposed to bloom. Old Screenshots: Image1 / Image2 / Image3 / Image4 / Image5 / Image6 / Image7 / Image8 / Image9 Image10 / Image11 / Image12 FAQ It's too dark / bright in game? > Adjust your brightness in-game to taste, I am using this monitor. Can I use FRAPS, MSI On-Screen-Display / Afterburner? > Fraps works and will record video/screenshots with effects enabled, wasn't successful using MSI On-Screen-Display / Afterburner. How much of a performance hit? > Open the Reshade.fx - I have sorted the effects under categories with the supposed FPS Hit, I am using a GTX 970 so your results may vary. How to apply antialiasing like in your screenshots? > Use this guide if Nvidia GPU How to enable/disable effects / toggle key? > Hit "Scroll Lock" key, right above your Home key. Can I take screenshots? > Either user FRAPS, or hit the "Prt Scr" key when in-game. This will save a screenshot in your kotor directory (same as executable). It will generate a normal screenshot (vanilla, no effects), as well as with effects. This way you can make easy comparisons. What can we look forward to in the future? > Hopefully a good integration of Depth of Field. All that i tested, I still had hud, menu, chat being blurred, so it wasn't worth it for gameplay purposes. As Crosire's Reshade comes out of beta and is more stable, an official release here, with 2-3 different presets. Hopefully more shaders like SMAA implemented too. This way we will have other options for antialiasing with same or less overhead. I'm still trying to find the best balance of black/white levels, and tone-mapping, please share your screenshots here so we can compare
-
Version 1.0.0
276 downloads
Description This mod is designed to work like the "Return to Ebon Hawk" button in KotOR I. It consists of a new useable item, called "Rapid Transit System". It appears in the shields menu. Clicking it will transport the player from their current location to their base (usually the Ebon Hawk, but the apartment on Telos if you're on Telos). Clicking the item again while at the base will return the player and their party to their previous location. The item is given to you on Telos, after you are moved to the apartment in Residential 082. Otherwise you can give yourself the item by typing "giveitem di_rts_01" into the console and hitting return. Installation Double click on "Install TSL Rapid Transit System", and hit the "install mod" button. Uninstallation Remove the following files from your Override folder: di_g_rts.ncs di_last_loc.utw di_rts.ncs di_rts_01.uti Credits and Thanks Thanks to DarthParametric for allowing me to bounce ideas off him, and particular thanks to JCarter for fixing my wonky scripting. Acknowledgements All materials and copyrights belong to LucasArts, and Bioware. Kotor Tool belongs to Fred Tetra, NWNSSCOMP belongs to Edward T. Smith. I own none of the materials, and I'm not making any money out of this mod. It is to be distributed as-is without alteration, unless by permission of the mod author. This mod is not to be distributed for profit, either. Use it how you like, but if you're going to post it up somewhere, or make a derivate mod, or use it in another mod, you must ask for my permission first.- 5 comments
- 1 review
-
- 6
-
-
-
- kotor 2 mod
- utility mod
-
(and 2 more)
Tagged with:
-
A while ago I received permission from Evasto to upload his Luke Skywalker hilt pack to Deadlystream to help preserve the mod. Evasto gave me permission to really do whatever with it, due to him moving away from Kotor modding in favor of other games. I was wondering if anyone would be willing to update this mod for me in a few areas to make it a little more modern with the times. Specifically, I had three requests for the hilt pack: 1. Split each hilt into it's own separate unique lightsaber instead of replacing the vanilla Green lightsaber. 2. Make each saber compatible with Crazy34's New_Lightsaber_Blade_Model_TSL replacer as an additional install option with TSL patcher. 3. Throw each saber's crystal into a unique location to obtain without SGE or cheats (one hilt's crystal in Daraala's inventory on Dantooine, one hilt's crystal in Geeda's inventory on Nar Shaddaa, one hilt's crystal in Kex's inventory on Dxun). If anyone can help out, I would greatly appreciate it!
- 3 replies
-
- lightsaber
- luke skywalker
-
(and 2 more)
Tagged with:
-
Version 1.5.1
1,052 downloads
A Mod for Star Wars Knights of The Old Republic 2 Author: N-DReW25 1.5.0 Release Date: 13.06.2022 Installation: Simply click on the TSLPatcher.exe, select your option, click install and sit back and watch the TSLPatcher do its magic. Description: Over the years, I have released a lot of restoration and fix mods for TSL though many of my mods don't necessarily stand out as much as others mainly because the mod is so small and insignificant. This mod is designed to make your life easier, all of my small, insignificant and standalone mods are inside this mod pack so that you, the player, only need to download 1 mod and install once (Or several times depending if you want an optional mod). What's in the mod? Known Bugs: This mod shouldn't have bugs but if there is Just PM me on Deadlystream. Incompatibilities: Report any incompatibilities to me on Deadlystream.com Permissions: Do NOT claim credit for this mod and do not use assets from this mod without my permission. Thanks: Ashton Scorpius: For making his TSL Removed Mouth Cubes mod a Modder's Resource Bioware: For such an amazing game Fred Tetra for Kotor Tool and 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.- 14 comments
-
- 5
-
-
-
-
Version 1.0.0
149 downloads
Description: This mod gives a stat boost to the player armband acquired on the Harbinger and adds in a robe in that same footlocker. It has a lighter version of the normal clothing texture. Armband: Robe: There are 3 Install Options: Both the new robe and armband stats, armband stats, or just the new robe. Installation: 1. Extract the .zip this mod is located in. You can use 7zip or WinRAR. 2. Launch the "TSLPatcher.exe" located in the folder in the .zip you just extracted 3. You will be presented with 3 options: - Robe and Armband - Armband - Robe Select which you will want. If you want both the armband stat boost and the robe, select the first option. Armband is just the stat boost. Robe adds in the Robe, without the armband stat boost. 4. Continue with TSLPatcher instructions. Getting a warning that 152har.mod already exists in Modules is perfectly normal; but any errors are not. 5. Load a save before first entering the Harbinger med bay. UnInstalling: 1. Delete these files from override if you have them in there: a_band_c01.uti exilerobe.uti ia_cloths_020.tga N_CommF20.tga N_CommM20.tga 2. Open up "Backup" in the main folder with the TSLPatcher.exe. 3. Copy 152har.mod and put that in the Modules folder in your TSL directory. Overwrite when prompted. Compatability: TSLRCM and K2CP compatible. Incompatible with any mod that edits the exile's footlocker in 152har.mod/Harbinger med bay or any mod that has N_CommF20.tga, N_CommM20.tga, and ia_cloths_020.tga in it. Credits: Kotor Tool GIMP TSLPatcher Permissions: Feel free to use assets I have made in this mod in your own, as long as I am credited. Do not upload this mod to any other Platforms (NexusMods. Steam Workshop, Gamebanana, etc.) If I have not uploaded it to there without any modifications to this mod. Legal: THIS MODIFICATION IS PROVIDED AS-IS AND 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.-
- 1
-
-
- mod
- improvement
-
(and 3 more)
Tagged with:
-
View File PC's Robe & Armband Improvement Description: This mod gives a stat boost to the player armband acquired on the Harbinger and adds in a robe in that same footlocker. It has a lighter version of the normal clothing texture. Armband: Robe: There are 3 Install Options: Both the new robe and armband stats, armband stats, or just the new robe. Installation: 1. Extract the .zip this mod is located in. You can use 7zip or WinRAR. 2. Launch the "TSLPatcher.exe" located in the folder in the .zip you just extracted 3. You will be presented with 3 options: - Robe and Armband - Armband - Robe Select which you will want. If you want both the armband stat boost and the robe, select the first option. Armband is just the stat boost. Robe adds in the Robe, without the armband stat boost. 4. Continue with TSLPatcher instructions. Getting a warning that 152har.mod already exists in Modules is perfectly normal; but any errors are not. 5. Load a save before first entering the Harbinger med bay. UnInstalling: 1. Delete these files from override if you have them in there: a_band_c01.uti exilerobe.uti ia_cloths_020.tga N_CommF20.tga N_CommM20.tga 2. Open up "Backup" in the main folder with the TSLPatcher.exe. 3. Copy 152har.mod and put that in the Modules folder in your TSL directory. Overwrite when prompted. Compatability: TSLRCM and K2CP compatible. Incompatible with any mod that edits the exile's footlocker in 152har.mod/Harbinger med bay or any mod that has N_CommF20.tga, N_CommM20.tga, and ia_cloths_020.tga in it. Credits: Kotor Tool GIMP TSLPatcher Permissions: Feel free to use assets I have made in this mod in your own, as long as I am credited. Do not upload this mod to any other Platforms (NexusMods. Steam Workshop, Gamebanana, etc.) If I have not uploaded it to there without any modifications to this mod. Legal: THIS MODIFICATION IS PROVIDED AS-IS AND 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 Lewok2007 Submitted 07/13/2023 Category Mods TSLRCM Compatible Yes
-
Version 1.0.2
6,784 downloads
In KOTOR 2, Mira is a companion with hair that falls nothing short of a blocky mop. Whether the style's a relic from the early 2000s or due to graphical limitations at the time, this mod aims to tone down her excessive volume. Now, you can make Mira look just the right amount of edgy. Installation To install this mod, drag the "Override" files to the override folder located in your game's directory. If prompted, select replace, though you may want to back up duplicates beforehand. To uninstall this mod, delete p_mirah.mdl and p_mirah.mdx from your game's override folder. Compatibility & Known Issues Install this mod after installing any NPC portrait mods. Otherwise, there should be no issues. Credits Fred Tetra, Kotor Tool bead-v, MDLedit & KOTORmax Autodesk, 3ds Max The GIMP Team, GIMP Thanks to DarthParametric for help troubleshooting. Disclaimer This mod is not supported by LucasArts, BioWare, or Obsidian Entertainment. It is for personal usage only and intends no copyright infringement. Contact me on DeadlyStream or via Discord (listed on my DS profile) if you have any questions, comments, suggestions, or the like. If you want to use this mod as a part of an external work, please ask for my permission first. This mod should only be found on Deadly Stream, no other user may upload it to another modding site. -
View File Dark Side Portraits for Droids in TSL Dark Side Portraits for Droids in TSL Description: The Name of the mod is quite self explanatory for what the mod mainly does lol, but in case of a misread, this mod adds Dark Side Portraits for Droids in TSL. Now that is cleared up, it also adds a new Neutral/Light Side portraits for HK47 and T3M4, unlike the regular portraits which were the average beige like G0T0's, which I kept regular. T3's is changes to a misty blue, and HK's is changed to a more brown colour. First Dark side Portraits are Misty Orange - G0T0, Purlpish Beige - HK47, Misty Green - T3M4. Second Dark Side Portraits are Orange - G0T0, Purplish Red - HK47, Orange - T3M4. I find the Orange for the second transitions make sense for G0T0 and T3 since they would never fully ever be dark, while red for HK47 makes sense since he really is quite dark side. Installation: Run the executable that comes in the readme in the mod. Follow the instructions that come with it. Uninstallation: Delete the .tga files that come with this mod in tslpatchdata that are in your override folder. Copy the .2da files from "Backup" into your override folder and replace when prompted. Use of Files: You can use this in your mod, as long as you make 1 or more changes to this. Think of it as a Modders Resource as well as a mod. You can have Dark Side Transitions for your own custom retextures. LEGAL: This mod is not distributed by Bioware or Obsidian. I am not at fault for any damage to your pc or game from this mod, as all necessary information for use has been given. Submitter Lewok2007 Submitted 06/07/2023 Category Mods TSLRCM Compatible Yes
-
Version 1.0.0
23 downloads
Dark Side Portraits for Droids in TSL Description: The Name of the mod is quite self explanatory for what the mod mainly does lol, but in case of a misread, this mod adds Dark Side Portraits for Droids in TSL. Now that is cleared up, it also adds a new Neutral/Light Side portraits for HK47 and T3M4, unlike the regular portraits which were the average beige like G0T0's, which I kept regular. T3's is changes to a misty blue, and HK's is changed to a more brown colour. First Dark side Portraits are Misty Orange - G0T0, Purlpish Beige - HK47, Misty Green - T3M4. Second Dark Side Portraits are Orange - G0T0, Purplish Red - HK47, Orange - T3M4. I find the Orange for the second transitions make sense for G0T0 and T3 since they would never fully ever be dark, while red for HK47 makes sense since he really is quite dark side. Installation: Run the executable that comes in the readme in the mod. Follow the instructions that come with it. Uninstallation: Delete the .tga files that come with this mod in tslpatchdata that are in your override folder. Copy the .2da files from "Backup" into your override folder and replace when prompted. Use of Files: You can use this in your mod, as long as you make 1 or more changes to this. Think of it as a Modders Resource as well as a mod. You can have Dark Side Transitions for your own custom retextures. LEGAL: This mod is not distributed by Bioware or Obsidian. I am not at fault for any damage to your pc or game from this mod, as all necessary information for use has been given. -
Version 1.0.1
138 downloads
THIS IS A PATCH, ORIGINAL MOD BY EXISTENTIAL SELKATH IS STILL REQUIRED The purpose of this mod is to provide a patch to finally be able to use Existential Selkath's excellent HK Overhaul mod in Kotor 2. I was hoping for Existential Selkath to release their own version of this but after seeing the following comment by them it seemed to me like they mostly gave up on doing so, thus I decided to release my own. This patch does not include any of the incredible texture work by Existential Selkath, it only patches the model to bring it to work within TSL. This patch also makes it so the model uses the new TSL animations and includes Marius Fett's HK-47 Disabled Animation Eye Fix Mod. A disabled HK-47 will have its eyes turned off. Original Mod: https://www.nexusmods.com/kotor/mods/1476?tab=files ------------------------------ Installation ------------------------------ Download Existential Selkath's original mod, and copy its contents to your TSL Override directory. Once that is done, run the TSL Patcher found with this mod. ------------------------------ Uninstallation ------------------------------ Copy the appearance.2da found in the backup directory back to override. Then delete the new p_hk47.mdl and p_hk47.mdx files. -
View File HD desk texture for K1 and K2 The texture used on both these desks is used pretty ubiquitously throughout both Kotor games I wanted to make it look a little better. -To Install simply drag the contents of the folders you want into your Override folder. -To Uninstall, remove those files from your Override folder. Submitter Nehua Submitted 04/28/2023 Category Skins K1R Compatible Yes
-
Version 1.0.0
114 downloads
The texture used on both these desks is used pretty ubiquitously throughout both Kotor games I wanted to make it look a little better. -To Install simply drag the contents of the folders you want into your Override folder. -To Uninstall, remove those files from your Override folder. -
Hi, Since I could not find a mod that removes the speed blur form the game's effects only, I made my own using kotor tool. I wanted to keep all the other effects by leaving frame buffer effects ON, except the force speed blur. I edited the visualeffects.2da and removed the blur line. Since this is so hard to find I will leave the file here in case anyone else wants it. Just drop it in override. Cheers. visualeffects.zip
-
View File Existential Selkath's HK-47 Overhaul, TSL Patch THIS IS A PATCH, ORIGINAL MOD BY EXISTENTIAL SELKATH IS STILL REQUIRED The purpose of this mod is to provide a patch to finally be able to use Existential Selkath's excellent HK Overhaul mod in Kotor 2. I was hoping for Existential Selkath to release their own version of this but after seeing the following comment by them it seemed to me like they mostly gave up on doing so, thus I decided to release my own. This patch does not include any of the incredible texture work by Existential Selkath, it only patches the model to bring it to work within TSL. This patch also makes it so the model uses the new TSL animations and includes Marius Fett's HK-47 Disabled Animation Eye Fix Mod. A disabled HK-47 will have its eyes turned off. Original Mod: https://www.nexusmods.com/kotor/mods/1476?tab=files ------------------------------ Installation ------------------------------ Download Existential Selkath's original mod, and copy its contents to your TSL Override directory. Once that is done, run the TSL Patcher found with this mod. ------------------------------ Uninstallation ------------------------------ Copy the appearance.2da found in the backup directory back to override. Then delete the new p_hk47.mdl and p_hk47.mdx files. Submitter Nehua Submitted 04/14/2023 Category Mods TSLRCM Compatible Yes
-
View File [TSL] eb's Holo-Overlays This mod changes the hologram-overlay texture used by TSL [mostly] for the holo-logs. It is mainly inspired by combination of movie-style and SWTOR's. Preview Blue - Movie-style [STATIC] Description This version uses a static-texture sized at x512. It has an alpha-channel used for scanline effects, which diffuse used mainly for diffuse-color. Blue - Movie-style [ANIMATED] Description This version uses an animated-texture sized at x256/frame It consisted of 25 frames to a 5x5 layout sized at x1280 It is set to cycle procedurally in-game at 12.5 FPS It has an alpha-channel used for animated-scanline effects, which diffuse used mainly for diffuse-color. Disclaimer What's seen in the preview is an end-result from also using a visually-affecting mod, that is DarthParametric's "Fixed Hologram Models and Admiralty Redux for TSLRCM". Requirement It is required for users to have TSLRCM v1.8.6 installed to their game for this mod to be working as intended. K2CP is not strictly-required, but is strongly-suggested to have as this mod were made with CP’s availability in-mind. See `Disclaimer` section above; hence it is required for user to also install the aforementioned mod to have the optimum result. Fixed Hologram Models and Admiralty Redux for TSLRCM - Mods - Deadly Stream Compatibility Compatible with any mods and builds -- long as not affecting `holotex`. It is advised for user to remove any instance of TGA, DDS, or TXI format of the said file in their `override` folder before install. Installation Install `holotex.TPC` to the `override` folder. Overwrite when prompted. Uninstallation Remove `holotex.TPC` from the `override` folder. Known Issues N/A Final Remarks There's always room for improvements; reviews, critiques, comments, suggestions, questions and feedbacks are much appreciated. PM me here, write them on my feed or leave any on the mod's page as you please. And thank you! for downloading, and using this mod. Hope you enjoy the mod as much as I do! Redistribution Do not redistribute this mod or re-release it on any websites. I'd love providing direct support to my work, which wouldn't be possible if they're scattered in the Unknown Regions. If you are to re-use the assets to a project you will be releasing, please be kindly to ask for permission first -- that way I know what's up. Credits The Almighty Force. BioWare, Obsidian Entertainment, and LucasArts for "The Old Republic" video-game franchise. DarthParametric for past-present knowledge, and all his creation that I learn from. JCarter426 and Inyri Forge for all their work that I look up to. I learned a lot from their mods and been approaching a lot using their method. Fred Tetra for KotOR Tool. ndix UR for tga2tpc and tpcview. Cortisol for Holocron Toolset. All the Tool Makers wasn't mentioned -- can't make it without y'all! All streamers of DeadlyStream. All modders either active or inactive. DeadlyStream for being a home -- a place to hang-out, to discuss and hosting my work, and all their staffs for tirelessly improving-maintaining the site. DeadlyStream's #modding [Discord's] channel. -eb Submitter ebmar Submitted 03/04/2023 Category Mods TSLRCM Compatible Yes
-
Version 1.0.1
257 downloads
This mod changes the hologram-overlay texture used by TSL [mostly] for the holo-logs. It is mainly inspired by combination of movie-style and SWTOR's. Preview Blue - Movie-style [STATIC] Description This version uses a static-texture sized at x512. It has an alpha-channel used for scanline effects, which diffuse used mainly for diffuse-color. Blue - Movie-style [ANIMATED] Description This version uses an animated-texture sized at x256/frame It consisted of 25 frames to a 5x5 layout sized at x1280 It is set to cycle procedurally in-game at 12.5 FPS It has an alpha-channel used for animated-scanline effects, which diffuse used mainly for diffuse-color. Disclaimer What's seen in the preview is an end-result from also using a visually-affecting mod, that is DarthParametric's "Fixed Hologram Models and Admiralty Redux for TSLRCM". Requirement It is required for users to have TSLRCM v1.8.6 installed to their game for this mod to be working as intended. K2CP is not strictly-required, but is strongly-suggested to have as this mod were made with CP’s availability in-mind. See `Disclaimer` section above; hence it is required for user to also install the aforementioned mod to have the optimum result. Fixed Hologram Models and Admiralty Redux for TSLRCM - Mods - Deadly Stream Compatibility Compatible with any mods and builds -- long as not affecting `holotex`. It is advised for user to remove any instance of TGA, DDS, or TXI format of the said file in their `override` folder before install. Installation Install `holotex.TPC` to the `override` folder. Overwrite when prompted. Uninstallation Remove `holotex.TPC` from the `override` folder. Known Issues N/A Final Remarks There's always room for improvements; reviews, critiques, comments, suggestions, questions and feedbacks are much appreciated. PM me here, write them on my feed or leave any on the mod's page as you please. And thank you! for downloading, and using this mod. Hope you enjoy the mod as much as I do! Redistribution Do not redistribute this mod or re-release it on any websites. I'd love providing direct support to my work, which wouldn't be possible if they're scattered in the Unknown Regions. If you are to re-use the assets to a project you will be releasing, please be kindly to ask for permission first -- that way I know what's up. Credits The Almighty Force. BioWare, Obsidian Entertainment, and LucasArts for "The Old Republic" video-game franchise. DarthParametric for past-present knowledge, and all his creation that I learn from. JCarter426 and Inyri Forge for all their work that I look up to. I learned a lot from their mods and been approaching a lot using their method. Fred Tetra for KotOR Tool. ndix UR for tga2tpc and tpcview. Cortisol for Holocron Toolset. All the Tool Makers wasn't mentioned -- can't make it without y'all! All streamers of DeadlyStream. All modders either active or inactive. DeadlyStream for being a home -- a place to hang-out, to discuss and hosting my work, and all their staffs for tirelessly improving-maintaining the site. DeadlyStream's #modding [Discord's] channel. -eb