Jump to content

DarthParametric

Modders
  • Posts

    4,900
  • Joined

  • Last visited

  • Days Won

    556

DarthParametric last won the day on June 13

DarthParametric had the most liked content!

About DarthParametric

  • Birthday 03/12/1976

Profile Information

  • Gender
    Male
  • Location
    : Oz

Recent Profile Visitors

181,535 profile views

DarthParametric's Achievements

Jedi Initiate

Jedi Initiate (4/15)

  • Well Followed Rare
  • Dedicated Rare
  • Very Popular Rare
  • First Post Rare
  • Collaborator Rare

Recent Badges

4k

Reputation

  1. The script's OnEnter appears to be: void main() { object trigger = GetObjectByTag("utt_belloq"); DestroyObject(trigger); ActionStartConversation(GetFirstPC(),"unk_belloq"); } So the issue is simple. You're destroying the script owning object (the trigger) while the script it is trying to execute is running. That instantly kills all commands in the script. I would suggest you look at some vanilla trigger OnEnters to get a better idea of how to do this. The two primary approaches are checking and setting a local boolean on the trigger (k_inc_utility has functions for this), or if you want to destroy the trigger either start the convo first and set the destroy on a delay, or signal an external object (invisible placeable typically) and have it fire the convo and destroy the trigger via its UserDefine. The other simple solution is to simply remove the destroy command from the OnEnter and move it to a script on the first node of the conversation.
  2. That's an engine limitation due to how globals are defined. People playing that much Pazaak is an extreme edge case, so not something K1CP will address.
  3. You'd need to edit the mod's texture, presumably a TGA given the age of the mod, in an image editor like Photoshop, Gimp, etc. There will presumably be two separate textures, one for females and one for males.
  4. Here you go. I'm not sure if your game being non-English will be a problem after being saved in my English version. Dantooine_Ruins_Door_Fix_xispect.zip Crash? There shouldn't be any crash. What you encountered is a "soft lock". You managed to break the script that triggers the cutscene, leaving you with no way to continue the main quest. I still don't know how people manage to break it, hence why it's not fixed. I can't replicate the problem on my end.
  5. Because it's a single model with a single texture that just plays two different animations.
  6. OK, nothing untoward sticks out in the Override. Only thing I have left is getting you to do an in-game check for me. You'll need to download and install this armband mod - https://deadlystream.com/files/file/1963-k1-party-herding-armband/ Once that is done, download the attached script, and move it to your Override folder. Overwrite when prompted. You'll need to add the armband via KSE or spawn it via console. Go to the torture room in your original screenshot, equip the armband, then activate it like you would a shield or stim. Open the Messages screen and switch to the Feedback tab where you should see some messages about searching for placeables. Take a screenshot and post that here. dp_ptyhrd_jump.ncs
  7. Jesus, that's a lot of mods. Well the good news is your placeables.2da looks fine. So I'm not sure how you managed to end up with what you did. You'll need to generate a file listing of everything in your Override folder. You can do this by opening a commandline window there and running dir /b /s > override.txt or if you're unable to do that, you can download the attached batch file, move it into the Override folder and double click it. After that, grab the override.txt file it generates and attach it here. FILE_LIST.bat That's unrelated to the issue at hand.
  8. You broke placeables.2da by the looks. The cage is a vanilla placeable, the mod doesn't add any. Attach the placeables.2da from your Override folder. Alternatively, some other mod overwrote my mod's script/s, which seems less likely but isn't out of the question. Post your mod list in the order you installed them.
  9. The Look In Override option just has it parse 2DAs in the Override whenever a 2DA is used in a template like a UTI, UTC, etc. It won't show up in the main asset browser. You'll have to open it manually via the 2DA editor (1st button under the top menu row). But KTool is old and creaky and not recommended to be used any more. There are multiple alternatives these days, including a new 2DA editor that was literally just released in the last 24 hours.
  10. Well the fact that it can generate TSLPatcher/HP ini data is pretty damn useful given how clunky ChangeEdit is. And HT is a complete mess and now officially dead, so new tools coming along isn't a bad thing, even if 2DAs aren't the most pressing use case.
  11. Jade Empire support.
  12. You need to send the entire folder of an individual save. For example, everything in saves\000051 - Game50. You'll need to archive it using something like 7-Zip, etc.
×
×
  • Create New...

Important Information

By using this site, you agree to our Guidelines.