Lone Wolf Development Forums  

Go Back   Lone Wolf Development Forums > Hero Lab Forums > HL - d20 System

Notices

Reply
 
Thread Tools Display Modes
Bloodwolf
Senior Member
 
Join Date: Dec 2013
Posts: 166

Old 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 is offline   #991 Reply With Quote
Bloodwolf
Senior Member
 
Join Date: Dec 2013
Posts: 166

Old 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.
Bloodwolf is offline   #992 Reply With Quote
Illyahr
Senior Member
 
Join Date: Feb 2013
Posts: 357

Old 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.
Illyahr is offline   #993 Reply With Quote
Bloodwolf
Senior Member
 
Join Date: Dec 2013
Posts: 166

Old June 8th, 2020, 06:36 PM
Oops wrong thread. Moving.

Last edited by Bloodwolf; June 9th, 2020 at 01:19 PM.
Bloodwolf is offline   #994 Reply With Quote
Sendric
Senior Member
 
Join Date: Jul 2010
Posts: 3,144

Old June 10th, 2020, 04:16 AM
Quote:
Originally Posted by Bloodwolf View Post
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 View Post
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 View Post
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.
Sendric is offline   #995 Reply With Quote
startal
Junior Member
 
Join Date: Jul 2020
Posts: 4

Old July 3rd, 2020, 05:50 AM
Need to add class variant from book Unearthed Arcane page 58.
Thanks
startal is offline   #996 Reply With Quote
startal
Junior Member
 
Join Date: Jul 2020
Posts: 4

Old July 4th, 2020, 08:32 AM
cant find the enchantment "Splitting" from Champions of Ruin can somebody help me find it?
startal is offline   #997 Reply With Quote
Illyahr
Senior Member
 
Join Date: Feb 2013
Posts: 357

Old 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 & "."

Last edited by Illyahr; July 9th, 2020 at 01:53 PM.
Illyahr is offline   #998 Reply With Quote
Dami
Senior Member
 
Join Date: Mar 2013
Location: Melbourne, Australia
Posts: 1,082

Old July 10th, 2020, 02:00 AM
Quote:
Originally Posted by startal View Post
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.

Current RPG's: Pathfinder (GM), Pathfinder (Player), Gamma World (GM, Pathfinder homebrew).
HeroLab: 3.5 & Pathfinder. HL User Files for PF: Greyhawk Setting, Gamma World (WIP).

DM and player of D&D since 1980.
Dami is offline   #999 Reply With Quote
Sendric
Senior Member
 
Join Date: Jul 2010
Posts: 3,144

Old July 11th, 2020, 04:35 AM
Quote:
Originally Posted by Illyahr View Post
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
Sendric is offline   #1000 Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -8. The time now is 05:09 PM.


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