• 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

50 Fathoms - Oversize Weapon Master

A character who has the Oversize Weapon Master Edge from 50 Fathoms still gets warnings if they equip with a two-handed weapon + something else in their other hand - another weapon or a buckler, for example.

Hands: Equipped gear requires too many hands.

Also, a suggestion for the Trademark Weapon Edge: When you take this Edge, it should offer a dropdown list of your current weapons so you can select which weapon is the trademark weapon. Then this would show as (skill) + 1 under your weapons for that weapon on the character sheet. You can work around this with an in-play adjustment, but it seems more natural to make it part of the Edge.
 
Last edited:
I don't have code in either of those (although Trademark is a standard Edge at any rate) to do those things. I'm not really sure how, actually. I would note for the record, though, that that is a fan-created file (by me), not something Lone Wolf did so my not knowing how to do it shouldn't be taken as any indication that it can't be done!

At least for the Trademark weapon one, though, you might want to post that on on the What changes/enhancements would you like to see? tread to make sure it gets brought up to the right person and see if someone at Lone Wolf might be able to implement it. CapedCrusader usually handles those and he's definitely got a lot more know-how on this stuff than I do.
 
In Hellfrost, I cheated and did it like this (PreTraits/5000):

Code:
foreach pick in hero where "Armory.Melee"
  if (eachpick.tagis[Equipment.TwoHand] <> 0) then
    perform eachpick.delete[Equipment.TwoHand]
    endif
  nexteach
 
Back
Top