• 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

Bladebound Magus Weapons

Kaleb

Well-known member
Is it possible to add weapons to the list of weapons for a blade bound magus to choose from through the editor?
 
Yes, you'll have to go into the Black Blade gizmo with an eval script and change the candidate expression to allow certain other weapons. For example, here is the script which sets the black blade's candidate expression at Final 20000:

Code:
      ~ Our weapon list includes only 1 hand Slashing, Rapier, or Sword Cane
      gizmo.child[gCustMagic].field[gItemExpr].text = #magicgearexpr[] & " & (IsWeapon.wRapier | IsWeapon.wSwordCane | (wClass.OneHanded & wType.S))"

So yours will have to run slightly later and overwrite it

Final 21000
Code:
hero.childfound[iBlackBla].gizmo.child[gCustMagic].field[gItemExpr].text = #magicgearexpr[] & " & (WHATEVER TAG EXPRESSION YOU WOULD PREFER)"
 
Back
Top