• 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

Help creating content from The Mind's Eye archive

Prieto

New member
Hey guys, I'm hoping to get a little help with creating one specific alternate class feature from WoTC's The Mind's Eye online blog.

The ACF I was after was from Expanded Classes, Part Three: http://archive.wizards.com/default.asp?x=dnd/psm/20070411a, the Telepath section for Telepathic Communication.

It replaces your 5th level feat and gives you supernatural Telepathy at 5ft + 5ft per level. Can only be taken by Psion Telepaths of 5th level, and has some math involved for the range of the telepathy for your level. It seemed simple enough.

But for the life of me, I cannot wrap my head around the editor enough to create a working feat. If anyone can lend a hand or point me to an already completed file that would be super.
 
Telepathy has it's own thingid so you'd just have to Bootstrap it and use an Eval script to calculate level into its value. Something like

Code:
var level as number
level = #levelcount[Psion]
level = (level*5)+5

hero.child[xTelepathy].field[Value].value = level

That should get you in the ballpark
 
Back
Top