• Please note: In an effort to ensure that all of our users feel welcome on our forums, we’ve updated our forum rules. You can review the updated rules here: http://forums.wolflair.com/showthread.php?t=5528.

    If a fellow Community member is not following the forum rules, please report the post by clicking the Report button (the red yield sign on the left) located on every post. This will notify the moderators directly. If you have any questions about these new rules, please contact support@wolflair.com.

    - The Lone Wolf Development Team

Search results

  1. M

    Opposition schools

    Is there anyway to test for a specific opposition school? I tried using an eval rule but it didn't work. validif (hero.tagis[SplForbid.Necromancy] <> 0)
  2. M

    Improved Weapon Finesse Feat

    I am trying to script the above feat. What I have doesn't throw any errors at me but it also does not work. It should replace the str mod with the dex mod for damage on the chosen weapon. post attributes/10000 field[abValue].value += maximum(#attrmod[aDEX] - #attrmod[aSTR], 0) if...
  3. M

    Eval Rules - count number of abilities

    I am trying to create an eval rule that will count the number of times the ability has been added and if it has been added more than 3 times throw an error. Here is what I have. Any help with why it is turning the ability red and displaying the error message on every copy of the ability added...
  4. M

    Damage Reduction and Acid Resistance abilities

    I am trying to create two custom abilities. The first one adds damage reduction the second adds acid resistance. I don't get any errors but neither adds the DR or acid resistance to the character. Any suggestions would be hot. Thanks in advance. final phase/10500 ~These calculations...
  5. M

    Help with eval rule

    I am trying to add an eval rule that tests the greater spell focus feat to ensure that it matches the school of specialization. So that if you are an enchanter then you should also choose enchantment as your greater spell focus. This is what I have but it doesn't seem to work. Any help would be...
  6. M

    Prestige Class Help

    I am tyring to create a class special that will add +1 to the caster level of all arcane spell casting classes. I started by looking at the Magical Knack triat, but I can't figure out how to add it to all arcane classes. Any help would be hot. Thanks
  7. M

    Free Clothes

    Is there a way to add to/change the free clothes list? It's a minor annoyance that I can't change what outfits are given for free.
  8. M

    need help with xCount

    I am trying to create an ability that increases by +2 every time you recieve it. The first time works fine, but the second time is increasing the bonus to +6 instead of +4. The thrid and final time is supposed to increase to +6, but instead increases to +10. I can't seem to find the cause. Any...
  9. M

    Adding a pre-req with mechanics

    I created a mechanic that searches for a feat category and then adds a bonus feat if you choose a feat from that category (bascally you get the feat for free at first level). I also created certain pre-reqs for the feats such as you can only take them at first level and you can only have one. Is...
  10. M

    Favored Class round II

    Okay, so I thought I had this working (and it does, sort of). I am working on a feat hat gives you a favored class in addition to the one you get to choose (this one is chosen between the bard, sorcerer, or wizard). The script I have will make the chosen class a favored class, but only for one...
  11. M

    validate spell area

    I am trying to create a metamagic feat that requires the spell to have an area. I see that there is a field called sArea, but I can't figure how to validate it. Any help in that area would be great. I was working along these lines. Thanks validif (component.BaseSpell.field[sArea.?] <> 0)
  12. M

    New Mechanic

    I created a new mechanic that looks for a custom feat category that I created and if it finds it, it grants a bonus feat. I would prefer that it operate more like the Upbringing feats, in that it doesn't count towards your number of feats selected. Is that possible, and if so where would I begin?
  13. M

    Insight Bonus to AC

    How would one go about adding an insight bonus to ac via script. I have tried several phases/priorities (the latest being final 10000). ~If we are an arcane caster we get a +1 insight bonus to AC if (tagis[Hero.Arcane] <> 0) then #applybonus[BonInsight...
  14. M

    Weapon Proficiencies

    I am trying to add three weapon prof. via script. Here is what I have, but it doesn't add the weapon prof. Any help here would be appreciated. ~ Assign our weapon proficiencies perform hero.assign[WepProf.wCompShort] perform hero.assign[WepProf.wLance] perform...
  15. M

    Forgotten Realms

    Is anybody working on converting FR to Pathfinder. If anybody is or is interested, I have input all the human ethnicities and races from the FRCS book and the races of Faerun (I made them ethnicities that bootstrap all the racial abilities, hgt and wgt work as well). I have most of the regions...
  16. M

    Favored Enemy bonus

    I am trying to input the Foe Hunter feat. This basically gives you a favored enemy and if you are a ranger and choose the same favored enemy as your favored foe they stack. The issue is that I can not seem to get the bonus added to the ranger's favored enemy. Here is what I have: ~if we choose...
  17. M

    Help with metamagic

    I am trying to validate the sArea field on a metamagic feat but I keep getting an error. The metamagic is valid if the spell has a range of personal, touch, or has an area. Here is what I have so far. if (tagis[sRange.Personal] + tagis[sRange.Touch] + <> 0) then @valid = 1 elseif...
  18. M

    Spell DC help

    How would I add a bonus to the save dc of a spell. I am pretty sure that it has something to do with [sDC] but beyond that I can't figure it out. I either get a parsing error, syntax error, or invalid use of reserved word error. I want this to be able to stack with elemental focus and spell...
  19. M

    Favored class script?

    I am trying to add the Arcane Schooling feat from the Forgotten Realms. It lets you choose an arcane spellcasting class and then adds that class as a favored class in addition to any others that have. I was able to copy the script from the Half-elf's mutlitalented ability, but that lets you...
  20. M

    Elven Weapon Proficiency

    Is it possible to remove the elven racial weapons from elves. I have tried creating a new elf race with out the racial weapons picked, but the weapons are still there. Any help would be hot and thanks in advance. Michael
Back
Top