DarthParametric

Modders
  • Content Count

    4,732
  • Joined

  • Last visited

  • Days Won

    538

Everything posted by DarthParametric

  1. There are snapshots, but you are probably hitting the issue of extraneous crap being included in the URL. I noticed that happening when I had a look yesterday. Not sure what it is exactly. Seems like it is from the LF side though. I don't recall encountering it before.
  2. No, you can just edit the ASCII. MDLEdit may let you edit it directly, otherwise use a text editor. Either way, you'll need to compile against the new supermodel, so you'll also need S_Female02.mdl/mdx in the same directory. For the animation scale, the vanilla Vandar scale using the male supermodel is 0.278. We know that the female model is 0.944 times the size of the male supermodel, therefore a scale of 0.262 should be appropriate.
  3. It's just a matter of editing the model and pointing it to S_Female02 and changing the animation scale. Not particularly difficult.
  4. He presumably lacks the feats to use one. His model also probably lacks a bunch of combat animations, since it uses S_Male02 as the supermodel.
  5. You can already see the trouble - backface culling. Just like Max, Odyssey does not render the backfaces of polygons. Which means what you see in the viewport there is exactly what you'd see in the game. While there would be a head in the way of most of it, not all of it will be obscured. Not necessarily. You give all the faces that you want continuous smoothing across the same group. Anywhere you want a hard edge, those adjoining polys need separate groups.
  6. No, that's not how it works at all. The problem you had is that the droid is indeed set to non-destroyable by its OnSpawn script. I then made a mistake in the script I posted above, using the wrong nth creature - 1 instead of 0. So it should be: object oDroid = GetObjectByTag("dan15_ancientdrd", 0); Your original bit for that would have worked, since you omitted it and it would default to 0. You just lacked the required setting it to destroyable first. Here's a test with fade enabled so you can see it working.
  7. You can try running SetIsDestroyable on it first. You also don't need to use DelayCommand with fade ins/outs, as the first term already specifies the delay. Try this: void main() { object oDroid = GetObjectByTag("dan15_ancientdrd", 0); ActionPauseConversation(); SetGlobalFadeOut(0.0, 0.5); AssignCommand(oDroid, SetIsDestroyable(TRUE, FALSE, FALSE)); DelayCommand(1.0, DestroyObject(oDroid, 0.0, TRUE)); SetGlobalFadeIn(2.0, 0.5); ActionWait(2.5); ActionResumeConversation(); } When using DestroyObject, you'll typically want to enable the No Fade option (second term) when doing a quick off-screen destroy. Any terms left out will inherit the default values on compile. Check out nwscript.nss for more info.
  8. No, your "NCS" files in the archive are just renamed NSS. Open them in a text editor and you'll see.
  9. Lol, I didn't even look. Yeah these are just NSS that are renamed. Well there's your problem.
  10. If you are requesting help, it would be wise to include script source, not just binaries. DeNCS won't decompile either.
  11. There should be a 0.2s delay to destroy the existing NPCs, and a 0.5s delay to spawn them back - i.e. 0.3s apart. So yes, it's possible there might be some collision interference from "ghost Bastila" I guess. You could try padding the spawn-in by another few milliseconds to see if that helps at all. Alternatively, there's always the woodshed technique. You could also try switching to a stated location instead of doing a GetLocation from a waypoint. Not that that should make any difference, but the game is kind of screwy with waypoints. Regarding the fade out, yes, that is a known problem because they didn't set the NoFade flag in DestroyObject to TRUE. It's fixed in the revised version I have for K1CP that also fixes Juhani missing a state save like all the other party members, but I never got around to adding that before the release of 1.8. Just be aware that k_pebn_pophawk resref is used in all the EH modules, so it must be injected into a MOD unless you want to bork the Lehon sequence.
  12. All party members get destroyed and respawned by the module OnLoad. They should always spawn at the same waypoint rather than having anything to do with the player. Unless the player was standing on top of the waypoint (which should be impossible).
  13. You deleted too much. You should just select the polys you want to delete, not the verts if you aren't 100% sure what you are doing. As to how to model the collar itself, there are many ways to skin a cat. What matters most is that the end result looks good and there are no gaps. Looking at what you have there, I'd say you need to weld the verts and/or adjust the smoothing groups to get an idea of what the final result will be.
  14. Not anything like what you can render out of Terragen, etc., no. I'm trying to think of a way you could render a moving cloud layer keeping the sun backlighting.
  15. Ah, well yeah then that probably won't work then I guess. The only other way would be a second cloud dome using transparency. That could then move (or have scrolling UVs), with the rear/original skydome being static with just the sky and sun.
  16. For some inexplicable reason, the TSLRCM installer stores the install location the first time you install it. If you don't run the uninstaller, then the next time you install it then it will just reuse the same directory as previously, regardless of whether TSL is still installed there or not.
  17. Hrmm... I wonder how it would go if the skybox had scrolling UVs for a bit of cloud movement? That might require converting it into a single mesh though.
  18. Yes, it works on 10. All versions of 10 should be 64bit.
  19. Sitters need to be a full body model, since for placeables there is no provision to specify a separate head like with parts models in appearance.2da as happens for characters. As there is no regular "high poly" Twi'lek full body model, you'll need to create your own in Max/GMax by merging the appropriate separate head and body models. Edit: Also, be aware that K1 has a very small row limit for placeables.2da, so it is highly advisable not to add new placeable entries.
  20. It is intended to be used with a new playthrough. There's no guarantee something won't work as intended or outright break if you install it midway through.
  21. You'll probably want to do some in-game testing and see what the feedback log says to make sure they didn''t just skip scripting and hardcode it all.
  22. // 533: Get the creator of oTrapObject, the creature that set the trap. // - oTrapObject: a placeable, door or trigger // * Returns OBJECT_INVALID if oTrapObject was created in the toolset. object GetTrapCreator(object oTrapObject); You may also find the following useful in order to grab the trap in the first place: // 488: Get the trap nearest to oTarget. // Note : "trap objects" are actually any trigger, placeable or door that is // trapped in oTarget's area. // - oTarget // - nTrapDetected: if this is TRUE, the trap returned has to have been detected // by oTarget. object GetNearestTrapToObject(object oTarget=OBJECT_SELF, int nTrapDetected=TRUE); Since GetTrapCreator returns an Object, just do a GetTag on that and then you can do some simple if checks against the party member tags.
  23. Should be PLC_RepTab, although there's also a second variant, PLC_RepTab2.
  24. You should definitely use the Unofficial Tweak Pack to remove the most questionable elements of TSLRCM. Some other suggestions from my usual suspects list: Backdrop Improvements HD Cockpit Skyboxes (despite violating my "HD" rule) Head Model Fixes High Quality Blasters Luxa Hair Fix (make sure to use the hotpants option!) Realistic Nar Shaddaa Skybox Realistic Visual Effects Telos Citadel Station Skybox Since I seem to recall you not always playing in widescreen, these are optional I guess: Improved Widescreen Experience (stretched UI fix) Main Menu Fix for Widescreen Probably a good idea. Not least because, unlike K1, TSL is fundamentally broken in ways that are not easily fixed beyond the remedial work TSLRCM has already performed.