Details! Damage Meter

Details! Damage Meter

243M Downloads

Macros to switch What the Window Shows does not work anymore

bawe opened this issue ยท 8 comments

commented

Game and Details! version

DETAILS! VERSION: WD 10730 RELEASE 10.0.7

Describe the bug
Macro with:

/script Details:GetWindow(1):SetDisplay( DETAILS_SEGMENTID_CURRENT,6, 5 )
/script Details:GetWindow(2):SetDisplay( DETAILS_SEGMENTID_OVERALL,6, 5 )

commented

There have been reports of this, but they shouldn't error at all. The functions have not changed arguments at all.

commented

Although it appears when looking at your code, there is no attribute 6. That code, no matter what it actually is, will set it to Damage Done.

Edit: Ahh, found the reasoning. The function is being moved internally. Currently set to return instantly due to it erroring.

commented

Ok, you are right, the params are not correct, but had worked until the last days.

Both windows should display "Damage Done" - CURRENT and OVERALL:

/script Details:GetWindow(1):SetDisplay( DETAILS_SEGMENTID_CURRENT,1, 1 )
/script Details:GetWindow(2):SetDisplay( DETAILS_SEGMENTID_OVERALL,1, 1 )

But also don't work.

thanks

commented

Try:
/script Details:SetDisplay(Details:GetWindow(1), DETAILS_SEGMENTID_CURRENT,1, 1 )
/script Details:SetDisplay(Details:GetWindow(2), DETAILS_SEGMENTID_OVERALL,1, 1 )

commented

unfortunately no change. no error message/output

commented

right, so, could you update to latest alpha version and try again?

--set the window 1 to show current segment > damage done
/script Details:GetWindow(1):SetDisplay( DETAILS_SEGMENTID_CURRENT,1, 1 )
--set the window 2 to show overall data > damage done
/script Details:GetWindow(2):SetDisplay( DETAILS_SEGMENTID_OVERALL,1, 1 )

commented

with version WD 10730 ALPHA 1 10.0.7 it works
<3

commented

works again with release version
thanks!