Lone Wolf Development Forums

Lone Wolf Development Forums (http://forums.wolflair.com/index.php)
-   HL - Pathfinder Roleplaying Game (http://forums.wolflair.com/forumdisplay.php?f=62)
-   -   Help w/ adjustment (http://forums.wolflair.com/showthread.php?t=61051)

Kaleb August 9th, 2018 12:54 AM

Help w/ adjustment
 
I am trying to make an adjustment for a new spell called focused strike thee spell doubles the base weapon damage how would I modify the below script.

~ If we're not enabled, get out now
doneif (field[pIsOn].value = 0)

~ Modify all melee weapons
foreach pick in hero from BaseWep where "wCategory.Melee & !Ability.ipImpact"
~ Only modify size if we are not a natural attack or unarmed strike
if (eachpick.tagis[wGroup.Natural] + eachpick.tagis[thingid.wUnarmed] = 0) then
~ Increase damage dice by one size
eachpick.field[wDamage].value += 1
endif
nexteach

~ Oddly enough, the monk's unarmed strike counts as a manufactured weapon
~ for spell effects, so apply a DamageUp tag to the unarmed strike if we
~ have monk levels.
doneif (hero.tagexpr[Classes.Monk | Classes.MonkUnc] = 0)

perform hero.childfound[wUnarmed].assign[Helper.DamageUp]

would I do something like this
eachpick.field[wDamage].value *2

TCArknight August 9th, 2018 07:04 AM

I would probably do it like this -

Right before the foreach loop:
Code:

var myDmg as number
Then in the loop:
Code:

myDmg = eachpick.field[wDamage].value
eachpick.field[wDamage].value += myDmg



All times are GMT -8. The time now is 10:13 AM.

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