DarthParametric

MOD:TOR Ports: Handon's Enhanced Waistline

Recommended Posts

TOR Ports: Handon's Enhanced Waistline


This mod adds a new fat commoner male model, ported from The Old Republic MMO. It replaces the generic appearance used by Handon Guld on Dantooine, who, judging by the dialogue he is involved with, was originally intended to be an overweight character.

Additionally, there are several other changes that have been made to the Calder Nettic murder investigation sequence:

  • Handon now sports an injured idle animation to conform to dialogue mentioning he is holding his injured side
  • Two erroneous fades to black in penultimate dialogue lines have been removed
  • When the player solely accuses either Handon or Rickard, the other will now run off after being given permission to leave rather than standing around
  • Master Bolook has had his appearance changed to a green Twi’lek to match one of Rickard’s lines of dialogue referring to him as a “green-skinned nerfherder” (apparently he was green in the original Xbox version, but was changed to orange for the PC version)

 

N.B. - You will need to load a save prior to entering the Dantooine Grove for the first time in order for this mod to take full effect.

 

Acknowledgements:

  • This mod was inspired by Merkuri22's episode of her "KOTOR 1 Experience" series dealing with this quest
  • Very special thanks to @JCarter426 for writing the custom scripts and doing lots of troubleshooting to get them working correctly
  • Thanks to @bead-v for KOTORMax and MDLEdit
  • Thanks to @ndix UR for TGA2TPC and normal map normalizer tool
  • Original models and textures ported from The Old Republic MMO
  • Thanks to zaramot on the Xentax forums for the TOR GR2 Max import script

 

  • Like 1

Share this post


Link to post
Share on other sites

Congratulations on this new release.

I have taken the liberty of adapting it to my personal preference (removing the import of the TOR model because I find the difference in quality and style to be jarring) and when doing that I noticed something that you may want to include in your next version.

In the Murder quest, it is possible to accuse Handon to have lied about knowing Calder well without Handon himself ever mentioning anything about it. It happens if the player speaks with the droid and asks about the relationship between Handon and Calder.

I remedied by making a small change (actually extending it also to Rickard, although in his case it is less important) in the dan14_idroid.dlg file.

I created a new script:

Spoiler

int StartingConditional() {
    int int1 = (GetGlobalBoolean("Dan_HandRelate") == TRUE);
    return int1;
}

that would replace k_pdan_state1+.ncs at R11.

As I mentioned, I did the same also for Rickard so that the Droid won't offer info about Rickard and Calder before the Player has asked Rickard how well he knew the victim. Second custom script replacing k_pdan_state1+.ncs at R8:

Spoiler

int StartingConditional() {
    int int1 = (GetGlobalBoolean("Dan_RickRelate") == TRUE);
    return int1;
}

I just thought of leaving it here, in case it may be of any interest to you, hoping to return in a small way all the help you have been giving me in these months.

Cheers!

EDIT:

I also noticed that the quest is seriously bugged because four scripts use GetGlobalBoolean() instead of GetGlobalNumber() (k_pdan_murder56.nss,  k_pdan_murder57.nss, k_pdan_murder58.nss, k_pdan_murder62.nss) practically giving the player infinite chances to make wrong deductions. I fixed this locally as well.

  • Like 1

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.