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

    Script based on created User Tag

    So I have an Edge that applies a +1 to attack bonus for "light" swords only (aka rapier, heavy rapier, shortsword). Since I am nit using Standard Gear, all these weapons reside in my .user file. So I added a Tag: User Light, to each of these weapons. Then I applies this script to my Edge...
  2. G

    Displaying custom weapon damage

    Hopefully I ask this clearly. So I have a custom Wizard's Staff as equipment. The damage starts at Str+d4 and increases with each Rank of the wizard. My code for that works just fine: Traits/5000 minDam = herofield[acRank].value if (minDam = 0) then damage = "Str + 1d4" elseif (minDam = 1)...
  3. G

    Swim speed = Pace

    So I want to track Swim Speed to Pace. Traits/5000 var swim as number swim = hero.child[trPace].value if (#resmax[resLoadLim] < hero.child[resEncumb].field[resSpent].value) then swim -= 2 endif hero.child[trPace].field[trtSpecial].value = swim If I assign a number to the swim variable works...
  4. G

    Eberron Warforged

    Yes, I know it isn't technically a SW setting but some players seem interested in porting the setting over to SW. So I am the HeroLab guy who has to make it work :) Warforged have a a Racial Property called "Integrated Protection" that gives them natural armour of +2. Initialization/3000 ~set...
  5. G

    Armor as a container

    I ask this because of this thread: http://forums.wolflair.com/showthread.php?t=30998 Caped wrote this in response to question 3. Okay, that is cool. I can easily create armour as a container. How does one go about writing a validation script to "count" items linked/attached/out into it? I...
  6. G

    Setting "No Power Points"

    I have never though about Power Point Cost, with or without "No Power Points." Lankhmar setting uses No Power Points. There is an edge Strong Caster: I thought, easy enough. So I tried two versions of code and each gave the same error. herofield[powPrtPts].value -= 1 Error: Attempt to...
  7. G

    Weapons specific damage and attack bonuses

    So I have never tried to apply these bonuses to one particular weapon when equipped. Example, from the Fantasy Companion the "Pathblocker". It grants the wielder +2 to his Fighting and damage rolls... So this code works sort of: Pre-Traits/5000 if (field[grIsEquip].value <> 0) then...
  8. G

    Languages

    Yet another question. The various language rules are equal to Smarts or equal to Half Smarts etc. But is there a way to start with that but keep the languages from increasing every-time the character raises their Smarts. In other words, starting character gets the Smarts/Half-Smarts at...
  9. G

    Rewards vs Advancements

    I am not I realized these were different in HeroLab until I whipped up this code for Rewards. At character creation: 1. The setting allows a character to pick "Literate" as a Reward. 2. Pick a new Language as a Reward. After locking the Character, these should ALSO be options during...
  10. G

    Lankhmar - Reputation Edge

    Important part: He may add his Charisma to Intimidation rolls. A negative score is treated as positive for this (and the scoundrel has a bad reputation). Code: Pre-Traits 5000 var bonus as number bonus = #trait[trCharisma] if (field[abilActive].value <> 0) then perform...
  11. G

    Optional Wealth system

    Been away for awhile and looking over things see still waiting on updates and latest stuff from LoneWolf approval and/or Caped recovering from old dead computer (feel your pain, went through that awhile back). But as things slowly progress, will the optional Wealth system be implemented somehow...
  12. G

    Extra Fatigue

    Okay, so you can increase Wounds by this code: Setup/10000 herofield[acMaxWound].value += 1 I have an edge that gives an extra level of Fatigue with a -1 penalty. So there is no "acMaxFatigue" but is "acFatigue". Setup/10000 herofield[acFatigue].value += 1 So the Fatigue code gives no...
  13. G

    Creating Power Point pool in SWADE

    Beasts & Barbarians has an edge "Temptress". Gives the character boost/lower trait Power with its own power point pool. In Deluxe SW it is Charisma + 1/Rank Power Points. And my edge code worked and is this: #trkmax[trkPower] += ((herofield[acRank].value + 1) + #traitbonus[trCharisma]) var...
  14. G

    SWADE questions

    So finally have the time to purchase and start working on converting some files over to SWADE. Jumping in on Beasts & Barbarians and Crystal Heart. General questions: Are knowledge skills still a part of SWADE? I looked thru my book and seems to be no. But if I create a new toon from scratch...
  15. G

    Menu Source option on Edges

    So I have an Edge that will have two Menu Source options the user must select. Menu #1 Source = All Picks on Hero Menu #1 Tag Expression...where I fail. I need the list to just be the Attributes of character: Str, Agility, etc. Menu #2 Source = All Picks on Hero Menu #2 Tag Expression...next...
  16. G

    Settings Books I am working on

    I come and go here, depending on Life. Right now I am living in a state with everyone under quarantine so have more free times (also means I am out of a job for now). I haven't looked thru here in depth to see what people are looking for so thought I would list all the setting books I am...
  17. G

    Skill or Hindrance requirement for an Edge

    First time I have encountered this combination for an Edge, either a Skill level or Hindrance is a requirement. Illusionist Requirements: Spellcasting d6+ or the Only Illusions Hindrance So I have two versions of code I have tried and neither seems to work. No errors, just not working...
  18. G

    Racial Property bootstrap "best practices"

    So looking for a consensus from fellow content authors. When creating specific Racial Properties that essentially are a Hindrance, do you just create a stand-alone Racial Property or actually bootstrap the Hindrance in as well. An example would be Outsider, many races seem to have a version of...
  19. G

    Bootstrap a Hindrance (Minor or Major)

    For the love of Pete, I have been away for too long. And a new computer to boot with most of my old work gone, sigh. I just cannot seem to find the answer looking through the forums here. I have a Racial Property bootstrapping in a Hindrance (in this case Pacifist), what code do I need to...
  20. G

    Hiding Derived Traits from Creatures/Monsters

    So, a couple of different settings I am working on have some Derived Traits I created, like Beast & Barbarians > Savings and for Lankhmar > Corruption, and some others. All well in good, no problem there. The question, is it possible to tag such Traits as "character" only? Meaning they won't...
Back
Top