Hero Lab 4e

General Category => General Discussion => Topic started by: Sean Abel on June 18, 2015, 01:25:17 AM

Title: Encounter powers
Post by: Sean Abel on June 18, 2015, 01:25:17 AM
Just started a new D&D campaign and I noticed that the Encounter powers are now green in the title power area with a "Red" box on the left with a E inside. Is there a way to change them so that the entire title area is red again?
Title: Re: Encounter powers
Post by: Cryptoknight on July 09, 2015, 03:30:27 PM
Well crap... it seems they've changed changed how herolab renders character sheets...

Splendid...
Title: Re: Encounter powers
Post by: Sean Abel on July 12, 2015, 11:16:50 PM
Was that LW or something that we have done to the code?
Title: Re: Encounter powers
Post by: Sean Abel on July 17, 2015, 10:50:25 PM
There has been a post about it on LW site http://forums.wolflair.com/showthread.php?t=53015 just as an fyi. I have no idea how to fix this  does anyone else?

Title: Re: Encounter powers
Post by: Daphne on July 27, 2015, 08:57:48 PM
Quote from: SAbel on July 17, 2015, 10:50:25 PM
There has been a post about it on LW site http://forums.wolflair.com/showthread.php?t=53015 just as an fyi. I have no idea how to fix this  does anyone else?

I would suggest taking a look at styles_output.aug, see outTitleAt vs outTitleEn in particular. And a sheet_powercards.dat ( lines 272 - 286 ) which has logic to set styles. I'm wondering if the perform portal[letter].setstyle[outTitleEn] is somehow preventing the other two setstyles in the block from running.

See also Dynamically Changing Styles (http://hlkitwiki.wolflair.com/index.php5?title=Dynamically_Changing_Styles)

Edit: I almost think it might be a bug in hero lab itself.
Title: Re: Encounter powers
Post by: Sean Abel on August 01, 2015, 05:30:25 PM
So under styles_output.aug lines 238-256 have the following

<!-- title & keyword text for encounter powers - red background -->
  <style
    id="outTitleEn">
    <style_output
      textcolor="f0f0f0"
      backcolor="600000"
      font="ofnttitle"
      alignment="center">
      </style_output>
    </style>
  <style
    id="outKeyEn">
    <style_output
      textcolor="f0f0f0"
      backcolor="600000"
      font="ofntkeywrd"
      alignment="center">
      </style_output>
    </style>

when in Sheet_pwercards.dat lines 276-286 may have something to do with color (which Daphne mentioned)

      ~otherwise, if this is an encounter or at-will power, change the style
      ~appropriately.
      elseif (tagis[PowerUse.Encounter] <> 0) then
        perform portal[letter].setstyle[outTitleEn]
        perform portal[name].setstyle[outTitleEn]
        perform portal[keywords].setstyle[outKeyEn]
      elseif (tagis[PowerUse.AtWill] <> 0) then
        perform portal[letter].setstyle[outTitleAt]
        perform portal[name].setstyle[outTitleAt]
        perform portal[keywords].setstyle[outKeyAt]
        endif

WARNING don t mess with the (backcolor="600000")!
Something happened and it effect the Core so I am fixing that right now :)
Title: Re: Encounter powers
Post by: Sean Abel on August 01, 2015, 05:42:41 PM
Not sure what happened but I have 4E back working
I was running a test to see if the color would change and SMACK it effected the Core.hlz file causing a corruption.
Well if anyone is at GenCon and can talk with Colen and ask him if he can help with power cards that would be GREAT!

Thanks all
Title: Re: Encounter powers
Post by: Daphne on August 11, 2015, 08:54:19 PM
Quote from: SAbel on August 01, 2015, 05:30:25 PM
So under styles_output.aug lines 238-256 have the following

<!-- title & keyword text for encounter powers - red background -->
  <style
    id="outTitleEn">
    <style_output
      textcolor="f0f0f0"
      backcolor="600000"
      font="ofnttitle"
      alignment="center">
      </style_output>
    </style>
  <style
    id="outKeyEn">
    <style_output
      textcolor="f0f0f0"
      backcolor="600000"
      font="ofntkeywrd"
      alignment="center">
      </style_output>
    </style>

when in Sheet_pwercards.dat lines 276-286 may have something to do with color (which Daphne mentioned)

      ~otherwise, if this is an encounter or at-will power, change the style
      ~appropriately.
      elseif (tagis[PowerUse.Encounter] <> 0) then
        perform portal[letter].setstyle[outTitleEn]
        perform portal[name].setstyle[outTitleEn]
        perform portal[keywords].setstyle[outKeyEn]
      elseif (tagis[PowerUse.AtWill] <> 0) then
        perform portal[letter].setstyle[outTitleAt]
        perform portal[name].setstyle[outTitleAt]
        perform portal[keywords].setstyle[outKeyAt]
        endif

WARNING don t mess with the (backcolor="600000")!
Something happened and it effect the Core so I am fixing that right now :)

I played arround earlier with removing some of the setstyle[outTitleAt] earlier, and it fixed the corresponding encounter power at the price of breaking the at-will coloring. Which is why I think it might be Hero Lab bug. I wonder if other work arounds could be tried, like making three different headers for the power cards, with the styles fixed and just hiding the ones that are not valid from the layout.
Title: Re: Encounter powers
Post by: Sean Abel on August 16, 2015, 07:34:14 PM
I think you are correct Daphne, different headers would make everything work on its own instead of off of each other, that could even lead to color for items (that is if we can figure out how to make item cards for all items.) Unfortunately its a bit pass my abilities, at this time.
Title: Re: Encounter powers
Post by: millertgh on October 11, 2016, 02:04:25 PM
First off I apologize for reviving and old topic but it wasn't closed and I did not want to muck up the forums with duplicate topics.

I was curious if a fix for this had been found? I have played around with the files mentioned above a bit but appear to be stuck. From my testing I did discover that it seems the AtWill settings are overriding the Encounter settings after the encounter settings have been put into place. I do not know if that helps any. I look forward to any response and/or progress.

Thanks