Jump to content

suggestion how to implement kits in EET


Recommended Posts

I'm trying to do something a bit complicated: I'm adding a kit to the game, which will not be available in the character generation menus. Instead you will have a chance to switch into the kit at some point during BG1.

 

However, in BG2 the kit should be available in character generation menus, since you might have chosen the kit in BG1.

 

In the regular games, this is easy, simply delete the kit from K_X_Y.2da if [ GAME_IS ~bgee~ ] But in EET BG1 is just an extra campaign, and all of the campaigns use the same version of the K_X_Y.2da files. Any ideas for whether/how I can make the kit unavailable in the BG1 campaign in EET?

Link to comment

you would need to edit UI.MENU file, CHARGEN_KIT section. For example by additional "enabled" condition like this:

enabled "enable_kit(chargen.kit[currentChargenKit].id)"

that calls a function like this:

function enable_kit(id)
  if currentCampaign == const.START_CAMPAIGN_BG1 and id == 'id_of_the_kit' then
    return false
  end
  return true
end

untested, probably would need more effort to make it work as expected, but this is the general direction if you want to spend time on figuring out how to make it work.

 

edit: from what I see something like this exists in Lefreut's GUI, so refer to it for example code: https://forums.beamdog.com/discussion/61571/mod-lefreuts-enhanced-ui-for-bg1ee-sod-bg2ee-and-eet/p1

Edited by K4thos
Link to comment

I've never really paid much attention to the new 2.0+ UI customization, because my understanding has been you can't do it in Weidu and have cross-mod compatibility the way you can with regular mods.

 

Like, if my mod (Faiths & Powers, near the middle of a typical install order) does something like that to remove the kit from the menus in the BG1 campaign, and then players come along and install a UI mod, won't that later mod overwrite my change? In which case the effort will be wasted. ?

Link to comment

Join the conversation

You are posting as a guest. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

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.

×
×
  • Create New...