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

    Duplicate skills showing up in debug selection

    I'm creating a skill that is similar to Pathfinder's Craft skills. I've intentionally used many of the same Helper and identity tags as Pathfinder. Everything visually works (viewing skills, adding skills) but looping on pick in hero show duplicate records. foreach pick in hero from Skill...
  2. R

    Two Questions: isagent and pathfinder style class tab

    I've seen discussion on agents being a new way to do things. Using "isagent <> 0" and agent.field[] with a configurable. Is there a link to docs for this? What is the advantage of this new feature? I'd like to make a class tab for a custom game system that uses the list from the pathfinder...
  3. R

    Change alignment a familiar requires?

    I'm trying to alter the alignment of a familiar: perform focus.delete[AlgnMaster.LawEvil] perform focus.assign[AlgnMaster.LawNeut] But the code to test if the alignment is correct: @message = "Master's Alignment not matched. Required alignment: " & altthing.tagnames[AlgnMaster.?]...
  4. R

    Trying to add an existing animal companion to all classes

    I've looked at Ashvawg Tamer, Ooze Companion, Beast Rider, Mammoth Rider Steed for inspiration. I need to tag Axe Beak as an allowed for all classes that get mount or animal companion instead of just Druid and Paladin, and do it in such a way that I'm not updating a list every time a new...
  5. R

    How to stop the redundant array of endless redudancy?

    I have a vanity. It chooses an option between two things. Depending on what is chosen one of the two things are bootstrapped. The things have two options. The Vanity adds the name of the thing to the end of the vanity. The bootstrapped items add their chosen items to the name of themselves and...
  6. R

    Vanity showing up in "Gear" column in Hero Lab but not in Gear Tab

    I have a PFS Vanities and they are showing up in the "Gear" Column but they are not gear. They don't show up in the Gear tab. Anyone have any idea why?
  7. R

    Tag to hide in search?

    Is there a tag that hides an item from search but allows me to bootstrap the item? I'd like to add something that I can bootstrap, but I don't want it visible to be added directly if possible.
  8. R

    How to do things I don't know how to do?

    Transition to a bootstrap from the bootstrapper? Say I bootstrap 'booted' and assign it a tag 'User.bootme'. This doesn't seem to work: perform this.child[boostrapid].assign[User.Something] Also I'd also like to ammend the description, and I've tried everything I can think to do: 1) perform...
  9. R

    Duplicate tags, ignore or prune?

    I've got something that I'm doing pulltags on, and sometimes I'll get duplicates of the same tags. I've got questions on this: 1) Do I care enough to prune the tags? The duplicates don't seem to be causing a problem. 2) Can I get pulltags to ignore tags that already exist? 3) Is there a way to...
  10. R

    Change Tracked Resource name of an item

    I've got an item I'd like to have the Tracked Resource name be different than the name in the Magic tab. But if I change livename, it changes both. I've also tried the following and none change the same name is used for both the Magic tab and the Tracked Resource list (for example livename)...
  11. R

    Scripted Alignment change

    I'm trying to reduce the alignment on the Evil/Good axis: ~ reduce alignment one step on evil alignment hero.child[Totals].field[tGoodVEvil].value -= 3 But I get an error: Only Derived Fields can generally be modified via scripts (field tGoodVEvil) Does anyone know how to script...
  12. R

    Custom Expression adds to thing name, prevent?

    If I have a custom expression blah with "All Picks on Hero", when something is chosen it changes from (Choose) to what was chosen. How can I prevent that? So it doesn't display the chosen item?
  13. R

    "Enable Data File Debugging" not working on Mac?

    I've been out of the coding for a while. I'm back into using HeroLab when I last used in August and I haven't used it on Mac much. I seemed to recall an option on Windows "Enable Data File Debugging" that allowed right clicking to see more info. I enabled this on mac and restarted herolab app...
  14. R

    Changing abSumm or CustDesc doesn't change hover text or PDF printout

    This problem is present in both d20 and Pathfinder data sets. If you have an object (say a Feat) and it's text in the editor under Descriptive Text is set to one thing but you make a script to modify that text via changing either abSumm (xSumm in d20) or CustDesc, these changes show up in the...
  15. R

    Can't modify CustDesc for printing out on character sheet?

    I can't seem to find where the Print Character Sheet samples the CustDesc field to print on the sheet. It doesn't seem to ever look at the object, and simply takes the static assignment from the editor? It displays properly in an open por file, it just display the junk text in the thing id...
  16. R

    Disable effects of any item in a script.

    I need to disable the effects of items suppressed by script: I tried this: foreach pick in hero from BaseEquip if (each.field[gIsEquip].value <> 0) then each.field[gIsEquip].value = 0 endif nexteach This didn't work because it said it was derived. I also tried these: perform...
  17. R

    Adding/Removing Class Skills for one Class

    I seem to always run into the difficult problems. I need to add a class skill to a single class in a script and at the same time remove a class skill from the same class. I can't use the D20 Variant Class structure. I have "field[pChosen].chosen" as the Class in question. But when I try...
  18. R

    Wild Shape Forms

    I've been trying for a while to get a wild shape form feature that can select from available templates or specials that are each individual form. Then when the form is selected, it applies the proper changes to your character (removing Claws from base race, adding bite from new form. adding...
  19. R

    Adjustment to select from a list?

    I'd like to make a selection that allows a pull down menu of a number of options, all new options. I created a new thing in the selection that normally says "none", but how do I tell it how to determine if things are of that type? The adjustment is here, and I just realized this was post in...
  20. R

    Search and Replace text in a String?

    Is there a way to search and replace text in a string? Is there a list of built in functions? Like compare() doneif() etc?
Back
Top