Leaderboard


Popular Content

Showing content with the highest reputation on 07/08/2020 in Posts

  1. 3 points
    Obi-Wan's hilt from ANH. The true prototype hardware saber, cobbled together from random assorted crap. The balance pipe from a Rolls Royce jet engine for the emitter, a WWI rifle grenade for the upper body, a Graflex flashgun clamp with Texas Instruments calculator bubbles and a booster from a Browning machine gun for the middle/lower, plus an Armitage Shanks sink tap/faucet knob for the pommel. It's truly remarkable how well the individual pieces fit together given their diverse origins. K1 - https://www.darthparametric.com/files/kotor/k1/[K1]_Obi-Wan's_ANH_Lightsaber.7z TSL - https://www.darthparametric.com/files/kotor/tsl/[TSL]_Obi-Wan's_ANH_Lightsaber.7z
  2. 2 points
    @jc2 OH JESUS OH GOD @La Ingobernable I'm afraid I'm stuck on how to save my changes to appearance.2da. I can save it as a new appearance.2da file, but I can't seem to overwrite the existing one.
  3. 1 point
    I just checked footstepsounds.2da, and 0 is listed as "Soft", whereas 2 is listed as "Droid". So, hopefully this confirms what Jc2 is saying; just change the "footstepsound" column of the N_mandalorian section from a "2" to "0" in Appearance.2da with the Kotortool, and that should fix it. (Unsure about the "Soundapptype", as that's a bit outside of my personal knowledge base) One thing I'd like to note is that the Kotortool has an idiosyncrasy where it won't save your changes to a column unless you click onto another one before saving. It's a bit complicated, but I'd be willing to help if need be.
  4. 1 point
    I'm guessing its an appearance.2da edit, as both N_mandalorian02 and 03 both have footsteptype as 2 and soundapptype as 6 which is identical to the HK-47 foosteptype as 2 and soundapptype as 6. Perhaps change those two numbers to either what the PC normally has which if you check the P_mal_XXX anything you'll notice its listed as 0 and 0, or change it to any human NPC numbers. Since I haven't made this edit myself ever, I'm not 100% sure about it.
  5. 1 point
    Ok, that's quite disturbing... and hilarious xD
  6. 1 point
    @La Ingobernable It worked! Thanks! The fruits of my labor
  7. 1 point
    Hello everyone! Over the last little bit we've been requesting permission from all of the authors whose content is in the K1CP to host binaries on GitHub. Well, we've finally got permission from the last few people, so be on the lookout soon for releases to be downloadable from https://github.com/KOTORCommunityPatches/K1_Community_Patch We'll continue to also keep the release here on DeadlyStream up-to-date, but now you'll be able to get alpha and beta builds from GitHub to help us test, or to get your hands on the latest fixes. Enjoy!
  8. 1 point
    02 - [TUTORIAL] - Creating a Merchant - TSL 03 - [ADDITIONAL] - Using ERFEdit 04 - [ADDITIONAL] - Picking an NPC to place in your level - TSL 05 - [ADDITIONAL] - Picking Placeables to fill your level with - TSL 06 - [ADDITIONAL] - Picking Alien Voice Over Dialog for your level - TSL 07 - [ADDITIONAL] - Placement & Rotation 08 - [TUTORIAL] - Waypoint Markers 09 - [TUTORIAL] - Scripting Basics 10 - [EXAMPLE SCRIPT] - Spawning NPC's on Enter 11 - [EXAMPLE SCRIPT] - Making NPC's Hostile! 12 - [EXAMPLE SCRIPT] - Trigger talking to an NPC! 13 - [EXAMPLE SCRIPT] - Make an NPC walk randomly 14 - [EXAMPLE SCRIPT] - Place a dead NPC 15 - [EXAMPLE SCRIPTS] - Starting Conditionals 16 - [TUTORIAL] - Companion Vendor 17 - [TUTORIAL] - Upgradeable Items 18 - [ADDITIONAL] - Door Gallery 19 - [ADDITIONAL] - Main Menu Details 20 - [ADDITIONAL] - UI Customization 21 - [ADDITIONAL] - Recolouring Textures 22 - [ADDITIONAL] - Recolouring the .GUI Files and Textures 23 - [ADDITIONAL] - Different Camera Modes & Dynamically Spawned Grid Of Placeables 24 - [ADVANCED] - Hard Coded GUI Elements 25 - One Line Dialogs 26 - Writing a changes.ini for HoloPatcher 27 - [MOBILE] - Android & iOS Modding 99 - [REQUESTS] - Submit a tutorial idea! I will continue to provide examples that I think might be useful to people, these are all for TSL so far. I hope these tutorials and any others I write will help people continue to make mods for KotOR 1 & 2. These tutorials are getting shorter and less detailed, I may or may not go back and re-write them at some point but if anyone struggles with anything feel free to message me and let me know what I haven't covered very well. Feel free to join the Discord for my project if you need help with anything related to KotOR modding and I will do my best to assist. Discord : https://discord.gg/S3YyfTjMV8 Base Game Scripts & How To Use Them KotOR Modding - Crash Course This 2 hour stream covers the basics of KotOR modding and some of the programs involved, I also regularly stream development of my mod project on Twitch/YouTube. Not all of this covers KotOR modding, there is about 10-20 minutes during the first hour where I get distracted and the second hour of it is mostly me playing games. These are the testing rooms but for K1 the room is lacking a texture but I find this just makes it easier to look through the characters. If anything in any of my short tutorials isn't clear or you don't understand for some reason then let me know and I will do what I can to help. ADVANCED TUTORIALS Utilising the following batch scripts and suggestions might take a while to get to grips with for some users but I would always advise doing so, it's very handy to have the ability to quickly generate a file list or compare things in various ways utilising the power of batch scripting. Comparing Level Contents Let's say you have two levels and you need to compare the differences of the contents. Extract everything from the original level to a folder called "level-a" and the modified folder to "level-b" Run the following batch script inside the "level-a" folder. file-list.bat Then delete or move the .bat file and move "file-list.txt" that it just created outside of the folder. You can also use this script to check that all the files exist. check-if-file-exists-from-file-list.bat You will have to move the file-list.txt and this script inside the folder to run the script. Now run this script at the same location as "file-list.txt" to run a file check against the contents of both folders. compare-files-from-file-list.bat Hopefully this might help someone, where I recently had to transfer all of my changes from manual installs to a TSLPatcher changes.ini file, I found this process helped speed the process up a little bit. From here, you should know which files differ and you can then use ChangeEdit.exe that comes with TSLPatcher in order to generate the differences between GFF files. Compiling Scripts If you have made it this far into the tutorial, you should already be familiar with compiling scripts, however for large projects you might need to recompile a lot of scripts at once, so here is a batch script that I used to do it. compile.bat Simply edit the script so that it points to the location of nwnnsscomp.exe for you and then you will be able to put the script into any folder that you need to compile a lot of scripts in and use it to do it all at once. If the scripts don't work for you, you might need to edit them and read them a bit in order to understand them and then to make sure that you have all of the right files in the right places. Thor110