DarthParametric

Modders
  • Content Count

    4,567
  • Joined

  • Last visited

  • Days Won

    514

Everything posted by DarthParametric

  1. Because your AV is garbage. Check out a comparison on Virus Total. A heuristic detection is basically a wild guess that an executable might be malicious due to the way it works. False positives are common for low-end AV shovelware. The red flag that caused the detection here is likely due to wrapping the program as a single exe. This is apparently a problem for Holocron Toolset as well. It's a downside of using Python.
  2. Certain cutscenes use custom stunt animations, yes. For example, the Light Side ending ceremony.
  3. You should never convert models to ASCII with KTool full-stop. It uses the ancient, broken version of MDLOps. Just extract all the MDL/MDXs in one go rather than trying to do them individually. There's a button for "extract entire BIF sub-type" that will dump the selected category. As to your other questions: All KOTOR anims are 30fps. You can see some "human-friendly" names in TSL's animations.2da, but K1 lacks a similar column. But you can decipher the combat animations using this guide by JC. Odyssey doesn't use bones in the modern sense. It uses the oldschool approach of meshes as bones. Any animated mesh includes the bones in the model.
  4. Why are you converting the models at all? KBlender loads binary models directly. The use of MDLEdit/MDLOps is only required when using KMax.
  5. You should look at some vanilla scenes for examples of how to do things like this. You can find most of the source code for the game's scripts here. Also peruse nwscript.nss which holds all the script functions. In this case, you want the functions ActionPauseConversation and ActionResumeConversation. For example: void main() { ActionPauseConversation(); // Insert whatever commands you want for this node. DelayCommand(2.0, ActionResumeConversation()); } You can change the delay to any value you want, as long as it is a float not an integer (i.e. 2.0 not 2, 1.0 not 1, etc.).
  6. It didn't find the added appearance row for the Master. Did you actually install the optional Dantooine content from the main mod? The patch is only for that.
  7. You changed them to two factions that aren't hostile to one another (STANDARD_FACTION_FRIENDLY_1 and STANDARD_FACTION_FRIENDLY_2). They won't automatically fight. You can try something like: DelayCommand(0.1, AssignCommand(oMook1, ActionAttack(oMook2))); If you want them to fight with no further input, change them to two factions that are hostile to each other but neutral to the player, like STANDARD_FACTION_PREDATOR and STANDARD_FACTION_PREY.
  8. Then there's some issue with how your DLG is structured. You mentioned you used HT's editor. I would advise against this. HT is still very much a beta and prone to issues. Use DLGEditor instead. I would suggest that you ditch your existing DLG and recreate it from scratch in DLGEditor to ensure there are no underlying issues.
  9. A DLG will automatically skip through empty reply nodes. A cutscene should only ever have text for entries, not replies.
  10. The problem is likely that the module has been nuked by the special characters bug in the older version of TSLPatcher. So the starting conditional script no longer exists. This is not a K1CP issue. Something amongst whatever other mods you installed broke Tatooine and Korriban, and possibly a bunch of other planets. The only solution is to wipe the entire game, delete your saves, and start over with a clean install. And don't use any mod unless it has been vetted as working correctly.
  11. You have no VO - either custom or generic alien gobbledygook - specified. Since there also aren't any delays specified, the lines skip instantly.
  12. You could do whatever layout/form factor you wanted, that was just a quick and dirty mockup. The "drawers" were intended to be panels with buttons and so forth, I just didn't bother slapping a texture on it.
  13. The change is simple enough, but I don't think you'd want to make it that giant. You'd be better off making that panel an array of smaller individual monitors, like the ones that surround the player when they wake up on Peragus. Say like 3 or 4 rows of 3 monitors wide (depending on what the actual aspect ratio of the panel is). It would also make sense to have some buttons and keypads on it, like real-world medical monitoring gear. You could have alternative versions in the regular Hawk that are switched with a room animation if you wanted them to be in off and on states. Edit: Something like this, for example.
  14. Clearly 6, 7, or 8. Since simply opening the save in KSE does literally nothing, the problem was obviously user error.
  15. There's provision to ask her about Griff in her return-to branches: Open your save in KSE. Check the Globals -> Numerics section. Find the value of Mis_MissionTalk.
  16. Per the rules, only Silveredge can create a new version of this mod. However, I previously created a standalone installer that uses TSLPatcher to set up the appearance entries. You can grab it here. After installing it, you will need to grab the the textures from Silveredge's mod and paste them into the Override folder.
  17. Attention crew of the Endar Spire.

    After the ship's recent refit, the medical department has reported an increased incident rate of personnel encountering extremely cold floors when getting out of bed. To combat this, we are issuing new tactical footwear to all crew. Be sure to use them during our upcoming mission to escort members of the Jedi Order to the Outer Rim.

    That is all.

     

    Bunny_Slippers_01.jpg.812b583b1ccecbc3b5c3a02ac7e4de34.jpg     Bunny_Slippers_02.jpg.8e2a2d1a73b255a74004470d85cf11b3.jpg

  18. Depends on what you are using, the Workshop version or the standalone version. I haven't installed the standalone version for a while, but last time I did it still forcibly installed to Program Files. The Workshop version will obviously install in the Workshop directory of your Steam library where the game is installed. In either case you'll want to copy and paste its contents over the top of the game's directory (and then unsubscribe from the Workshop version, if you are using that). But this is not the place for tutorials on dealing with TSLRCM.
  19. It's spelled out in the description. It won't be compatible with any other mod that alters her head model or her hooded clothes model, but otherwise it should be fine.
  20. No. If you do that, you'll break your game. More than you already have. Either stick with what you have now, or nuke the entire thing - including your saves - and start from scratch with a fresh install.
  21. Yes. You should never use any Workshop mods. If you absolutely must, you can use TSLRCM or the combined TSLRCM/M4-78 Workshop mods. After that, every other standalone mod must be installed in TSLRCM's Workshop folder, not the game folder. If you use any Workshop mods with appearance.2da edits, whatever the last mod that was installed will take priority (and forcibly override any other appearance.2da in other Workshop mods and the game's folder). So just don't use Workshop mods. They are bad. Plus a bunch of assholes post stolen mods there.
  22. You can use this batch script to find and delete duplicate textures - https://www.nexusmods.com/kotor/mods/1384 Or just download this mod again and check what the filenames are.