DarthParametric

Modders
  • Content Count

    4,568
  • Joined

  • Last visited

  • Days Won

    514

Everything posted by DarthParametric

  1. 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.
  2. 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.
  3. 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.
  4. 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.
  5. Yes, it works on 10. All versions of 10 should be 64bit.
  6. 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.
  7. 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.
  8. 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.
  9. // 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.
  10. Should be PLC_RepTab, although there's also a second variant, PLC_RepTab2.
  11. 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.
  12. It's ok, if completely overhyped. It is the best thing to come out of the Disney Star Wars era by a large margin though, so I guess that shouldn't be too surprising. If you've ever seen Eddie Murphy's skit about a starving man in a desert being given a cracker, you know what to expect.
  13. Note that since Bioware's compiler (and nwnnsscomp too) pull in all globals listed in listed includes, the script doesn't actually need to make any use of RACE_DEFAULT. Simply being in the global list is enough to bork it. Which is why half the Tatooine and Manaan scripts don't decompile, despite none of them appearing to actually make use of it (not that I have seen anyway). Doing this: #include "k_inc_tat" void main() { } is enough to choke DeNCS.
  14. Nope, still fails. I'd already hex edited it to replace that, as with all other Tatooine/Manaan module scripts. There are a number that still fail to decompile for unknown (to me anyway) reasons.
  15. You can start a new game if you want, although that's a bit extreme for a simple Bowcaster. If you have a burning need to add it to a store inventory rather than simply directly to your own via KSE, like I said you can either edit the save file or use a script to add it.
  16. You don't need to do this. The G vs G1 was merely Bioware's internal reference for differentiating items added in the Yavin DLC. Whatever you call it, the UTI filename (ResRef) should match the TemplateResRef field. Ideally for items you should also keep the Tag the same, although that is primarily for scripting purposes. This is the real problem. It doesn't matter. All three inventories are added to your save on the very first visit to Yavin. The only way to add it in a later save is either via script, or editing the save.
  17. No, that one still doesn't decompile.
  18. Indeed, but better late than never. Hopefully most/all of the remaining ones will be able to be decompiled eventually as well.
  19. Thanks to AmanoJyaku's input, there's now a hacky workaround for decompiling most of the problematic Tatooine and Manaan scripts. Some still won't decompile, but these should be all of the relevant ones that fail specifically due to one of the globals in the Tatooine/Manaan includes. Tatooine_Swoop_Registration_(tat_m17ae)_Scripts_Using_Include.7z Manaan_Ahto_East_(manm26ab)_Scripts_Using_Include.7z
  20. Depends on how exactly the BarkString function works. Since, results-wise, it performs exactly the same as calling a DLG with a single node, it's probably just passing the StrRef to the engine's conversation system in the same manner as when it parses a DLG.
  21. What happens if you call it as a BarkString? I assume the same thing, which would presumably mean it only works in a DLG.
  22. GetScriptParameter is a TSL function. Salk is talking about K1.
  23. Add new lines to the TLK that are just the <CUSTOMxx> identifiers. Then use GetStringByStrRef(nStrRef) to pull the value as a string. You can use GetStringLeft/GetStringRight and StringToInt if you need to break it up into its mins/secs/milliseconds components.