• 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. F

    Ability Focus Target tag question

    I am trying to create a monster with the Ability Focus feat. The feat is targeted on one of the monster's racial specials. I have added the tag Target.XXXX (where XXX is the id of the special) to the Ability Focus feat, but I keep getting the error that the tag Target.XXXX is not defined. What...
  2. F

    Request: Inner workings of LycanAttr and LycanForm

    Could one of the developers chime in on how the calls LycanAttr and LycanForm work? I am trying to understand how the attributes for Hybrid and Animal forms are calculated so I can write some scripts that effect them through adjustments. Thanks!
  3. F

    Modifying a lycanthrope's ability scores

    When a lycanthrope is in hybrid or animal form some of its ability scores are fixed. The usual adjustments to change an ability score does not work to modify these fixed scores. Any hints on how I can code up an adjustment to do this?
  4. F

    Limiting racial spells

    I am working on a monster that casts spells as a sorcerer but is limited to the Illusion and Necromancy schools as well as the spells from the Evil domain. I have tried the following script: Final Phase/10000 ~ only allow Sor spells from the Illusion and Necromancy schools and the Evil...
  5. F

    Showing Melee and Ranged Flurry Attacks

    I am working on racial abilities that mimic monk abilities (for monsters/races that have monk abilities but not monk levels). I have gotten them all working except for Flurry of Blows. I can get the correct display in the Specials tab (basically cribbing the scripts in the Flurry of Blows class...
  6. F

    Double Weapon Mastery help needed

    The Atamahuta Oni (from AP #51) has a feature Double Weapon Mastery which does the following: While making a full attack, an atamahuta controls its arms with both heads and does not take a penalty on attack or damage rolls for attacking with a double weapon. So when using a double weapon (in...
  7. F

    Disabling Feats not fully working

    I noticed a quirk when disabling feats when assigning the Helper.FtDisable tag. If the feat affects CMB or CMD (for examaple Improved Bull Rush) the bonuses are still applied even if the feat is disabled. Is there any way to fix this?
  8. F

    Class Spell List question

    Have a question about making a spell list for a new class. I know according to the tutorials that one normalls makes copies of each spell and assigns them to the new class. However, is there any reason I couldn't do this in a script via the following in the class's cHelpXXX Post-Levels/5000...
  9. F

    Timing question

    I am trying to add an ability that when activated adds the character's CHA modifer to attack rolls. I am having issues with the proper timing for the script. Here is the code: ~ If we're not shown, just get out now doneif (tagis[Helper.ShowSpec] = 0) ~ If we're not enabled, get out now...
  10. F

    Overriding a derived field

    Is there a way to override the value in a derived field? I am working on defining a dragon's age catagories via a configurable tab. I have gotten it working except for displaying the starting HP. I want the value of that field to be dependent on which age catagory the user selects. Here is the...
  11. F

    Detecting abilities linked to skills

    I am trying to implement the various insanities as adjustments. Some of them require a penalty to all skills with a certain base attribute, CHA for example. Is there a way to pick out all skills that are linked to specific attribute?
  12. F

    True Dragons as a Monster Class

    I am experimenting in trying to make true dragons a monster class with 12 levels for the age categories. (I want to try to do it this way because of some templates that have dragon age categories as requirements for certain abilities granted) I have it mostly working, however it does not...
  13. F

    Comparing damage values

    Is there a way to compare damage dice from wMain to determine which one is better? This is for a template that has a damage table for a granted attack, but if the base creature already has the attack it uses either the damage value it already has or the table value depending which one is better.
  14. F

    Damage Attribute Bonus

    Is there a way to suppress the attribute bonus for a weapon? In other words have its damage show from the wDamNoAttr field and not the wDamage field?
  15. F

    Monster selecting domains

    The Advodaza Devil (from AP#30) has a ability called False Divinity. It allows it to choose any domain and cast the chosen domain's spells (up to 5th level) 3/day as a spell-like ability. Any ideas on how to implement this?
  16. F

    Doubling Powerful Build

    I am working on the War Machine template from the Advanced Bestiary. It has the following quality: The war machine can wield weapons up to two size categories larger than the base creature could without taking penalties. I tried assigning Hero.PowerfulBuild twice to the hero, but the tag...
  17. F

    List of Helpers available?

    Is there a list of all the Helpers available? There are some listed in the FAQ and the Pathfinder Manual pages, but it is not the complete list.
  18. F

    Template: Removing Languages and Spells

    I am working on the corspsespun template (from Tome of Horrors). The template needs to remove all supernatural, spell-like and languages from the target creature. I am able to remove supernatural and spell-like abilities using a mechanism smiliar to the Zombie template. However, I cannot remove...
  19. F

    Customizing Damage with Size

    hello again, I am trying to implement a natural attack that has a slightly different damage with size progession than the standard. Fine 1 Dim. 1d2 Tiny 1d3 Sml. 1d4 Med. 1d6 Lrg. 1d8 Hug. 2d6 Gar. 2d8 Col. 3d8 I have implemented it as an "Other Melee Attack" but its progression with size is...
  20. F

    Bootstrap condition - Swim speed

    I am implementing a template and am trying to put a condition on a bootstrap that only applies if the target creature has a swim speed. However, I cannot figure out how to do it. Can someone point me int he right direction?
Back
Top