Lone Wolf Development Forums

Lone Wolf Development Forums (http://forums.wolflair.com/index.php)
-   HL - d20 System (http://forums.wolflair.com/forumdisplay.php?f=46)
-   -   Bug Reports - Community Created 3.5 D&D data set (http://forums.wolflair.com/showthread.php?t=12785)

Bloodwolf June 7th, 2020 11:18 AM

Found another one in the White Dragon. Not sure this even shows at any time but it is there.

The Very Old category again. The CR is set in the same script. It is supposed to be 17 but is set to 21.

Another super easy fix.

Bloodwolf June 7th, 2020 12:08 PM

Ok. Really, really, really unimportant bug in the white dragon.

In the ~ statement in the 3rd script in the statement "Dragon flight speeds are based on size." Categories is spelled wrong. It is "cagegories" instead.

Illyahr June 7th, 2020 12:25 PM

Depths of the Void class skill for Inkyo (Rokugan Campaign), the Condition for the bootstrap needs to be changed from 100 to 500. 100 is too early for it to recognize when conditions are met.

Bloodwolf June 8th, 2020 06:36 PM

Oops wrong thread. Moving.

Sendric June 10th, 2020 04:16 AM

Quote:

Originally Posted by Bloodwolf (Post 289062)
Found another one in the White Dragon. Not sure this even shows at any time but it is there.

The Very Old category again. The CR is set in the same script. It is supposed to be 17 but is set to 21.

Another super easy fix.

Fixed.

Quote:

Originally Posted by Bloodwolf (Post 289064)
Ok. Really, really, really unimportant bug in the white dragon.

In the ~ statement in the 3rd script in the statement "Dragon flight speeds are based on size." Categories is spelled wrong. It is "cagegories" instead.

Fixed.

Quote:

Originally Posted by Illyahr (Post 289065)
Depths of the Void class skill for Inkyo (Rokugan Campaign), the Condition for the bootstrap needs to be changed from 100 to 500. 100 is too early for it to recognize when conditions are met.

Fixed.

Thanks for the reports.

startal July 3rd, 2020 05:50 AM

Need to add class variant from book Unearthed Arcane page 58.
Thanks :)

startal July 4th, 2020 08:32 AM

cant find the enchantment "Splitting" from Champions of Ruin can somebody help me find it?

Illyahr July 9th, 2020 01:15 PM

The coding for the Hida Defender's Critical Focus ability (Oriental Adventures) doesn't function quite right. Please adjust to the following:

Code:

if (field[usrChosen1].chosen.tagis[thingid.wBattleaxe] <> 0) then
  foreach pick in hero from BaseWep where "WepFocus.? & IsWeapon.wBattleaxe"
    perform each.delete[wCritMult.?]
    perform each.assign[wCritMult.4]
  nexteach
elseif (field[usrChosen1].chosen.tagis[thingid.wWarhammer] <> 0) then
  foreach pick in hero from BaseWep where "WepFocus.? & IsWeapon.wWarhammer"
    perform each.delete[wCritMult.?]
    perform each.assign[wCritMult.4]
  nexteach
elseif (field[usrChosen1].chosen.tagis[thingid.wGreatclub] <> 0) then
  foreach pick in hero from BaseWep where "WepFocus.? & IsWeapon.wGreatclub"
    perform each.delete[wCritMult.?]
    perform each.assign[wCritMult.3]
  nexteach
endif

Also, the coding for the binder's Binding ability (Tome of Magic, xBind) is still calculating wrong. Please change to:
Code:

      var level as number
      var check as number
      var difficulty as number
      level = hero.childfound[xBind].field[Value].value
      check = level + #attrmod[aCHA]
      difficulty = round(level/2,0,-1)
      difficulty = difficulty + 10 + #attrmod[aCHA]

      field[xSumm].text = "EBL = " & level & ", Binding Check 1d20 + " & check & ", Special DC = " & difficulty & "."


Dami July 10th, 2020 02:00 AM

Quote:

Originally Posted by startal (Post 289465)
Need to add class variant from book Unearthed Arcane page 58.
Cant find the enchantment "Splitting" from Champions of Ruin can somebody help me find it?

These aren't bug reports. The splitting weapon enhancement (FR: Champions of Ruin) has not been coded - it's not in HL. You can request that things be added to the community files (in the thread: Community Created 3.5 D&D data set, for for example), but that doesn't mean that they will be. Someone needs to have the book they come from, and both the time and interest to create it in HL. You can always try to create them yourself using the editor.

Sendric July 11th, 2020 04:35 AM

Quote:

Originally Posted by Illyahr (Post 289557)
The coding for the Hida Defender's Critical Focus ability (Oriental Adventures) doesn't function quite right. Please adjust to the following:

Code:

if (field[usrChosen1].chosen.tagis[thingid.wBattleaxe] <> 0) then
  foreach pick in hero from BaseWep where "WepFocus.? & IsWeapon.wBattleaxe"
    perform each.delete[wCritMult.?]
    perform each.assign[wCritMult.4]
  nexteach
elseif (field[usrChosen1].chosen.tagis[thingid.wWarhammer] <> 0) then
  foreach pick in hero from BaseWep where "WepFocus.? & IsWeapon.wWarhammer"
    perform each.delete[wCritMult.?]
    perform each.assign[wCritMult.4]
  nexteach
elseif (field[usrChosen1].chosen.tagis[thingid.wGreatclub] <> 0) then
  foreach pick in hero from BaseWep where "WepFocus.? & IsWeapon.wGreatclub"
    perform each.delete[wCritMult.?]
    perform each.assign[wCritMult.3]
  nexteach
endif


foreach loops are powerful, but also notoriously slow. As a modification, please try this:

Code:

~ Assign the appropriate tag to all weapons that meet the criteria
  foreach pick in hero where "WepFocus.? & (thingid.wBattleaxe | thingid.wWarhammer | thingid.wGreatclub)"
        perform each.delete[wCritMult.?]
    if (eachpick.tagis[thingid.wGreatclub] <> 0) then
        perform eachpick.assign[wCritMult.3]
    else
        perform eachpick.assign[wCritMult.4]
    endif
  nexteach



All times are GMT -8. The time now is 03:40 AM.

Powered by vBulletin® - Copyright ©2000 - 2024, vBulletin Solutions, Inc.
wolflair.com copyright ©1998-2016 Lone Wolf Development, Inc. View our Privacy Policy here.