-
Content Count
4,607 -
Joined
-
Last visited
-
Days Won
521
Content Type
Profiles
Forums
Blogs
Forum & Tracker Requests
Downloads
Gallery
Store
Calendar
Everything posted by DarthParametric
-
Dark Side Bastila Kotor 2 Hologram mod?
DarthParametric replied to RevanFanMan's topic in General Kotor/TSL Modding
I did a quick test on Korriban and it seems to work fine. I have added it as an optional download to the mod's page. -
Dark Side Bastila Kotor 2 Hologram mod?
DarthParametric replied to RevanFanMan's topic in General Kotor/TSL Modding
I have no idea. But any mod that adds new holograms will presumably use vanilla clothing Bastila. -
Dark Side Bastila Kotor 2 Hologram mod?
DarthParametric replied to RevanFanMan's topic in General Kotor/TSL Modding
I haven't tested it, but try this: [TSL]_Fixed_Hologram_Models_and_Admiralty_Redux_for_TSLRCM_DS_Bastila_K1_Robes_Patch.7z Install the previously linked Fixed Holograms mod first, then extract the model and texture from the attached archive and put them in your Override folder, overwriting when prompted. Should replace the DS Bastila holos on Korriban and on the Hawk (when talking to T3). -
Dark Side Bastila Kotor 2 Hologram mod?
DarthParametric replied to RevanFanMan's topic in General Kotor/TSL Modding
That mod is useful as a basis, since it gives her a unique DS appearance with a custom model (DP_BastilaDS.mdl/mdx). Makes it easier to edit if you wanted the K1 robes. -
Dark Side Bastila Kotor 2 Hologram mod?
DarthParametric replied to RevanFanMan's topic in General Kotor/TSL Modding
I gave her Dark Jedi master robes as I recall - -
MOD:Revan's Hoodless/Maskless Flowing Robes For K1
DarthParametric replied to DarthParametric's topic in Mod Releases
Not without re-rigging the model to the TSL skeleton. Not something I have any interest in bothering with. And the TSL animations have no provision for a cape or the front flappy bit, so it would be a waste of time anyway. -
I haven't tested it in TSL, but in K1 the workbench always defaults to the player's appearance row to determine the armour models that are displayed for each armour class. So presumably the only time companion clothing would show up is when you switch to controlling Mira on Nar Shaddaa, where it should show her jacket.
-
[KotOR] GetLockKeyTag() question
DarthParametric replied to Salk's topic in General Kotor/TSL Modding
Use this instead: // 534: Get the tag of the key that will disarm oTrapObject. // - oTrapObject: a placeable, door or trigger string GetTrapKeyTag(object oTrapObject); Although neither function is used by vanilla scripts in either game.- 1 reply
-
- 1
-
-
TSL has the companions always try to stay within 10-15m (off the top of my head) of the controlled character. If they are too far away, they get jumped back. I have tried to implement this in K1 a couple of times, but it's not practical to do it the way TSL does it, as they added additional functionality for it. That's why I created this when I was doing K1CP beta testing.
-
This appears to be backwards. N_CommMD/FD01 is 512x512 while N_CommM/F07 is 256x256. The dirty commoner appearance rows use the MD/FD for their texa/texb columns while Gendar's unique appearance row uses just M for his texa/texb columns. K1CP ports the TSL versions of N_CommM/F07 which are 512x512. Edit: I realised that K1CP erroneously replaced N_CommF07/M07 with TSL's F11/M11, which is the dirty version of their repainted F01/M01. That has been revised to renamed copies of FD01/MD01 for v1.10.
-
[Request] Embo Style Samurai/Ronin Hat for K1
DarthParametric replied to Icesharpe's topic in Mod Requests
They are talking about a Jingasa, i.e.: The Embo referred to is some Clone Wars character: TOR has that style of thing, albeit including a full helmet underneath, which could be used as a basis if needs be. Not that a simple dome shape would be hard to model from scratch: But helmets and hats don't work particularly well in KOTOR due to the way heads and hair work. Although if you only want it for use with one specific player head then it's doable. -
In the meantime, me, working on K1CP v1.9:
-
Well technically it is something you (or @Marius Fett) could fix. The model just needs adjusted die/dead/getupdead and/or die1/dead1/getupdead1 anims. It actually shouldn't be too arduous if it is just some arm/hand adjustment, since you can just fix the static dead anims first and then reuse those keys as the end/start frames for the die/getupdead anims.
- 16 comments
-
- 1
-
-
- female
- marius fett
-
(and 1 more)
Tagged with:
-
-
HK-47 Overhaul Mod, TSL Conversion?
DarthParametric replied to Natural Law's topic in Work In Progress
Not without renaming the eye mesh to match the vanilla name (Mesh01). -
-
You could use GetNearestObjectToLocation: // 228: Get the nNth object nearest to lLocation that is of the specified type. // - nObjectType: OBJECT_TYPE_* // - lLocation // - nNth // * Return value on error: OBJECT_INVALID object GetNearestObjectToLocation(int nObjectType, location lLocation, int nNth=1); Another option might be ObjectToString: // 272: Convert oObject into a hexadecimal string. string ObjectToString(object oObject); I think that should be a unique value, but I only ever tried it once and not for use with multiple instances of a single template. Even if it is unique, I suspect it would not be universal across installs, or perhaps even individual sessions on the same machine.
-
Something you may want to consider for a future update, since it doesn't appear you have already addressed it. The selection icon to open the door before the hangar (accessing the transition trigger in the vanilla module) floats out in the middle of the corridor due to the walkmesh restricting access to it if you move it across the panel cluster on the wall. You could add one of the perpendicular panels that the other doors have to alleviate this. An idea I rejected for K1CP for being out of scope, but perfectly suited to this mod.
-
Make sure that w_dblsbr_001.mdl.ascii is in the same folder as the batch file. It uses those to generate the other files. Then compile them as JC said above.
- 191 replies
-
- tslrcm 1.8.6
- tsl
-
(and 4 more)
Tagged with:
-
[KotOR] Scripting: CREATURE_TYPE_IS_ALIVE
DarthParametric replied to Salk's topic in General Kotor/TSL Modding
GetIsDead is what you'd typically use. // 140: * Returns TRUE if oCreature is a dead NPC, dead PC or a dying PC. int GetIsDead(object oCreature);- 1 reply
-
- 1
-
-
You're probably looking for the YavinHackCloseDoor function's comment, which is in nwscript.nss: // 771. YavinHackCloseDoor // This is an incredibly hacky function to allow the doors to be properly // closed on Yavin without running into the problems we've had. It is too // late in development to fix it correctly, so thus we do this. Life is // hard. You'll get over it void YavinHackCloseDoor( object oidDoor );
-
That's known as a "sub-mod" in the parlance of other mod communities. It's fine as long as the bone count isn't 18 or above. The MDL format supports up to 17 bones per mesh (Vandar being one of two vanilla K1 models that max out the limit). Early versions of MDLEdit erroneously declared the limit at 16, but I believe this was changed in later versions.