-
Content Count
200 -
Joined
-
Last visited
-
Days Won
21
Content Type
Profiles
Forums
Blogs
Forum & Tracker Requests
Downloads
Gallery
Store
Calendar
Everything posted by TamerBill
-
Not entirely sure what you're asking here, but TSLPatcher comes with a comprehensive guide in the readme PDF. Basically you'll use ChangeEdit to make a file that contains all the changes your mod makes.
-
Change object's texture dynamically?
TamerBill replied to eldendream's topic in General Kotor/TSL Modding
Nope, not dynamically. One item, one texture. How you'd have to do it is have a separate robe item for each of the colours. When you change the colour through a workbench dialogue or whatever you'd be deleting the old robe and giving the player a fresh one that's the correct colour. -
Honestly, it would be less effort to just recreate it. It's very 'dude's first mod' level, nothing you couldn't replicate with KotorTool and five minutes.
-
-
Placeables don't automatically use dialog files the way NPCs do. You'll need to put a script in the OnUsed slot to make them run it when clicked. void main() { ActionStartConversation(GetFirstPC()); } Something like this should work.
-
That link's a dead-end, then. The pictures on that page are just from Battlefront, the only mod it leads to is the one on Nexus.
-
That site just seems to be scraping webpages. The real archive is on the Nexus, here.
-
Modding dialogue soundset/animations
TamerBill replied to PirateofRohan's topic in General Kotor/TSL Modding
Not my speciality, but I notice you're missing the Sound Exists flag on a couple of lines. That might account for the inconsistency. -
-
Presumably. Guardians have a d4 Force Die, so that would match up with the 4 in your screenshot.
-
I think your issue is that you're needlessly antagonistic to people trying to help you. But no, after testing it the Hit Points value is not current hit points. It's HP from previous Hit Dice. Using your most recent pictures to explain, Guardians have a d10 Hit Die, so they get 10 HP a level from that. 10 (Hit Dice) + 3 (16 CON) + 25 (War Veteran feat) gives you the 38 shown for Max Hitpoints. When you level up the game remembers you were a Guardian for one previous level and stores that 10 in the Hit Points slot. Since you're also Guardian for this level you get another 10 (Hit Dice) + 3 (16 CON) added to Max Hitpoints, giving 51. TLDR: It's an artifact of how you can level in multiple classes, and is actually misleadingly named.
-
Also, as stated in the readme:
-
Okay, you can grab it now.
-
View File Request: Keep the Krayt Dragon Pearl Mod by TamerBill, requested by JDub96 The Sand People Chieftain no longer pockets the Krayt Dragon Pearl you show to him, so you can listen to the Storyteller and still use it in a lightsaber. Submitter TamerBill Submitted 07/01/2021 Category Mods K1R Compatible Yes
-
Ah, probably got the wait for the file to be verified. It’s there, anyway.
-
Eh, nevermind, I went and did it myself. Here you go.
-
-
I mean, there’s a reason recruitment mods generally replace HK or dead Juhani, not the most plot-critical party member in the game. A new party member mod’s not the best choice for a beginner anyway, but you could have made it easier on yourself.
-
I think you might just have a borked WinRAR installation. You should probably switch to 7zip anyway, but I downloaded WinRAR to test and it works fine, there’s no damage.
-
Alternate compared to what? It’s a perfectly ordinary RAR file, extracts no problem.
-
It's a trivial mod to do if you want it. Literally just delete one line of code (ActionTakeItem) from k_ptat_sandtakep.
-
...that's the file size, dude. 479 bytes.
-
There's a limited number of 'slots' for armour models. In K1 it goes from A to I, with slot A being used for clothing. It's an attribute of the NPC's appearance, not the item; Carth's appearance A is his orange jacket, Trask's appearance A is the republic uniform etc. The workaround is to use the Disguise item property, which completely replaces a character's model. That's how the sith trooper outfit or the mandalorian armour works. For the player character they're only useful for full-body armours like that because the head/skintone/dark-side-transition doesn't carry over; it's one model whoever equips it. For party members, though, you could make it work. A clothing item that only Bastila can equip, with a Disguise that replaces her model with 'civilian outfit Bastila'. There's probably already a mod that does that with her 'slave' costume.
-
Medpacs not healing while poisoned (TSL)
TamerBill replied to ZeldaTheSwordsman's topic in General Kotor/TSL Modding
Do you have k_sup_healing.ncs in your override? If so, delete it and see if the problem persists.