Lone Wolf Development Forums
>
Search Forums
Search Results
User Name
Remember Me?
Password
Register
FAQ
Members List
Search
Today's Posts
Mark Forums Read
Notices
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
Page 1 of 20
1
2
3
11
>
Last
»
Showing results 1 to 25 of 500
Search took
0.05
seconds.
Search:
Posts Made By:
dungeonguru
Forum:
HL - D&D 5th Edition SRD
December 2nd, 2020, 05:35 AM
Replies:
4
Automatic calculations help???
Views:
659
Posted By
dungeonguru
In the editor's local help files you can find an...
In the editor's local help files you can find an example in the eval scripts link:
In your specific case it would be something like this for Intelligence:
field[abValue].value = 1 +...
Forum:
HL - D&D 5th Edition SRD
November 23rd, 2020, 08:46 AM
Replies:
15
Spell Less Ranger as a Class Variant
Views:
952
Posted By
dungeonguru
One problem is that Spell-Less Ranger is a...
One problem is that Spell-Less Ranger is a different class than Ranger - at least from a code standpoint.
I think what will have to happen is that you'll have to make copies of all the procedures...
Forum:
HL - D&D 5th Edition SRD
November 20th, 2020, 01:09 PM
Replies:
16
Disabling Spells
Views:
1,159
Posted By
dungeonguru
One thing to try to is to look into the floating...
One thing to try to is to look into the floating info windows and choose Show Selection Tasks and find the copies of your spell.
Those windows show when scripts run against the pick, sometimes...
Forum:
HL - D&D 5th Edition SRD
November 19th, 2020, 09:10 AM
Replies:
16
Disabling Spells
Views:
1,159
Posted By
dungeonguru
Here's and example of how I might set up the...
Here's and example of how I might set up the foreach.
var searchexpr as string
searchexpr = "thingid.(spellID) & Helper.Memorized"
foreach pick in hero from BaseSpell where searchexpr...
Forum:
HL - D&D 5th Edition SRD
November 18th, 2020, 05:37 PM
Replies:
16
Disabling Spells
Views:
1,159
Posted By
dungeonguru
The spell in the spellbook will have a tag:...
The spell in the spellbook will have a tag: Spellbook.cHelpWiz
The prepared spell will have a tag: Helper.Memorized
You might want to find the one with Helper.Memorized and remove the Helper tag....
Forum:
HL - D&D 5th Edition SRD
November 18th, 2020, 05:31 PM
Replies:
13
Increasingly Magical Weapons
Views:
1,001
Posted By
dungeonguru
Timing is important for every script not just for...
Timing is important for every script not just for In-Play tasks. It really depends on what is being touched.
Forum:
HL - D&D 5th Edition SRD
November 18th, 2020, 08:18 AM
Replies:
13
Increasingly Magical Weapons
Views:
1,001
Posted By
dungeonguru
I'm not sure why you're calling a child object in...
I'm not sure why you're calling a child object in your script. If you're running scripts on the weapon itself shouldn't it be just
field[Bonus].value += 1
also, check the timing. The Defender...
Forum:
HL - D&D 5th Edition SRD
November 17th, 2020, 06:29 AM
Replies:
4
Testing for Proficiency with any Martial Weapon
Views:
791
Posted By
dungeonguru
Elemental Adept over in feats is a good thing to...
Elemental Adept over in feats is a good thing to look at - it shows how to put a complex script/procedure like 5CHasSpell (located in the procedures validate .user file) into a pre-req as a...
Forum:
HL - D&D 5th Edition SRD
November 16th, 2020, 10:47 AM
Replies:
3
Amulet of Protection from Good
Views:
734
Posted By
dungeonguru
I'm not sure how you're wanting to see the...
I'm not sure how you're wanting to see the conditional work, generally speaking, trying to check alignments of other "entities" in the portfolio is complex. I've not seen any code examples aside from...
Forum:
HL - D&D 5th Edition SRD
November 15th, 2020, 04:28 PM
Replies:
2
Custom Diety
Views:
710
Posted By
dungeonguru
Did you create a Deity Category header and assign...
Did you create a Deity Category header and assign it a Deity Category Order Group number not in use - and do the same for your deity?
Basically there's a process for each pantheon you create...
Forum:
HL - D&D 5th Edition SRD
November 5th, 2020, 07:30 AM
Replies:
1
Background Page Cut Off
Views:
814
Posted By
dungeonguru
Have you tried opening an official Lone Wolf...
Have you tried opening an official Lone Wolf support ticket (http://forums.wolflair.com/showthread.php?t=54821) on it? Ask if you can get a character limit increase on the printout of those fields. ...
Forum:
HL - D&D 5th Edition SRD
October 21st, 2020, 03:18 PM
Replies:
13
Adding a floating spell from another class
Views:
4,092
Posted By
dungeonguru
In order to narrow down a spell to a particular...
In order to narrow down a spell to a particular class you could probably look for the tags spells get from the selection portal.
Like the High Elf cantrip usually has the tag portal.RacSplLst...
Forum:
HL - D&D 5th Edition SRD
October 16th, 2020, 06:29 AM
Replies:
2
Script for AC = DEX mod + CHA mod
Views:
959
Posted By
dungeonguru
You can try something like: ...
You can try something like:
field[abValue].value = #attrmod[aCHA]
hero.childfound[ArmorClass].field[Bonus].value += field[abValue].value
This would add the charisma modifier as an additional...
Forum:
HL - D&D 5th Edition SRD
October 15th, 2020, 03:54 PM
Replies:
4
Giving Ranger Caompanion Bonus Hit Points
Views:
1,051
Posted By
dungeonguru
I vaguely remember that there was no perfect way...
I vaguely remember that there was no perfect way to fix the minion hit points.
I do know that if you add a companion through the minion method you can reach into the minion with calls like:
...
Forum:
HL - D&D 5th Edition SRD
October 2nd, 2020, 07:55 AM
Replies:
2
Help getting the Eldritch Weapon extra Chaotic Damage Working for the gunsmith Patron
Views:
1,197
Posted By
dungeonguru
You would need to have a script on the class...
You would need to have a script on the class feature that runs post-attribute so that you have a final modifier from charisma (like post-attribute/10000 timing or later phase).
In that script you...
Forum:
HL - D&D 5th Edition SRD
September 17th, 2020, 01:31 PM
Replies:
2
Need Help on Matt Mecer's Gunslinger Archetype
Views:
1,269
Posted By
dungeonguru
You can look at this thread...
You can look at this thread (http://forums.wolflair.com/showthread.php?t=64398) for some 5th table examples and how Enforcer and me talked about looking for the abCategory tags to filter out other...
Forum:
HL - D&D 5th Edition SRD
September 12th, 2020, 12:58 PM
Replies:
5
HLC In Play
Views:
1,410
Posted By
dungeonguru
I use it on my laptop from time to time when I...
I use it on my laptop from time to time when I don't have an internet connection to help me track initiative/monter hit points as a DM.
My players that have it refuse to use the PC or iPad...
Forum:
HL - D&D 5th Edition SRD
September 8th, 2020, 09:13 AM
Replies:
2
Conditional spell known, and taking damage on activation
Views:
1,423
Posted By
dungeonguru
So, trying to break down the questions: 1....
So, trying to break down the questions:
1. How do I hide the bootstrapped spell until activated?
On your bootstrapped spell you can set a conditional that looks for the activation field.
...
Forum:
HL - D&D 5th Edition SRD
September 4th, 2020, 07:06 AM
Replies:
2
Field for total level
Views:
1,146
Posted By
dungeonguru
I thought the total level variable were only used...
I thought the total level variable were only used for certain contexts, I can't remember the rule of thumb though.
There is a useful macro: #totallevelcount[] that you can use where the context is...
Forum:
HL - D&D 5th Edition SRD
August 31st, 2020, 11:01 AM
Replies:
4
Considering purchasing 5E SRD
Views:
1,163
Posted By
dungeonguru
All of the community stuff is free. LW doesn't...
All of the community stuff is free. LW doesn't have any official WotC add-ons to purchase. Kobold Press has the most purchasable stuff available.
The community pack has the Oath of the Crown...
Forum:
HL - D&D 5th Edition SRD
August 27th, 2020, 11:37 AM
Replies:
1
Creating Custom Racial Trait
Views:
1,100
Posted By
dungeonguru
You might want to look at the half-elf variants...
You might want to look at the half-elf variants from the Sword Coast Adventurer's Guide (COM_5ePack_SCAG - Races.user) in the Community pack. This might be more simplified than you want, but it might...
Forum:
HL - D&D 5th Edition SRD
August 17th, 2020, 05:14 AM
Replies:
3
This time I really am stuck...Free Memorization Spell
Views:
1,387
Posted By
dungeonguru
I think one method to try would be to have a...
I think one method to try would be to have a script along the lines of:
foreach pick in hero from BaseSpell where "thingid.ofspell"
perform eachpick.pushtags[Helper.Free]
nexteach
...
Forum:
HL - D&D 5th Edition SRD
August 2nd, 2020, 11:25 AM
Replies:
1
Vehicles
Views:
996
Posted By
dungeonguru
I'm not sure how they are doing it in the...
I'm not sure how they are doing it in the community pack, but one way to do it would be to:
Step 1: Make a NPC monster containing the ship stats like you would create a normal monster.
Step 2:...
Forum:
HL - D&D 5th Edition SRD
June 21st, 2020, 09:10 AM
Replies:
4
Help getting error after last update
Views:
2,802
Posted By
dungeonguru
This if for gmanor - I think davystyles may have...
This if for gmanor - I think davystyles may have had a different issue.
If you are creating homebrew items and saving them into an pre-existing community file your changes will always be lost...
Forum:
HL - D&D 5th Edition SRD
June 17th, 2020, 08:40 AM
Replies:
3
Adding bootstraps based on another thing's Activation Level
Views:
2,054
Posted By
dungeonguru
If you want to create tags with a more meaningful...
If you want to create tags with a more meaningful group.tag rather than Custom.tag look at the COM_5ePack - Tags.1st file.
You can create a custom tag group ID and various tags in a 1st file that...
Showing results 1 to 25 of 500
Page 1 of 20
1
2
3
11
>
Last
»
Forum Jump
User Control Panel
Private Messages
Subscriptions
Who's Online
Search Forums
Forums Home
Lone Wolf Development Web Site
Announcements
Realm Works Forums
Realm Works Discussion
Realm Works in Action
Realm Works Feature Requests
Realm Works in Action
Realm Works Feature Requests
Hero Lab Online Forums
Hero Lab Online Discussion
HLO - Pathfinder 1st Edition
HLO - Pathfinder 2nd Edition
HLO - Starfinder
HLO - Shadowrun
Hero Lab Forums
HL - Pathfinder Roleplaying Game
HL - D&D 5th Edition SRD
HL - Shadowrun
HL - Mutants & Masterminds
HL - d20 System
HL - World of Darkness
HL - Call of Cthulhu
HL - 4th Edition
HL - Savage Worlds
HL - Cortex System
HL - Authoring Kit
HL - User Projects
HL - Alternity (user-created)
Hero Lab Discussion
Army Builder Forums
Army Builder
Army Builder Data Files
Babylon 5: A Call to Arms
Battlefleet Gothic
Blood Bowl
Black Powder, Bolt Action, Hail Caesar, Judge Dredd, and Pike & Shotte
Confrontation - English
Kings of War (2nd Edition)
Lord of the Rings (Tabletop)
Mordheim
Necromunda
Starship Troopers
Star Wars: X-Wing and Armada Miniatures Game
The 9th Age
Warhammer Ancient Battles
Warhammer 40,000
Warhammer Fantasy 8th Ed.
Warhammer Historical: The Great War
Warhammer Fantasy 3rd Ed.
Warlord
Warmachine & Hordes
Warmaster
Card Vault Forums
Card Vault
Card Vault Data Files
MLB Showdown
Lord of the Rings CCG
.hack//ENEMY
Vs. System
Yu-Gi-Oh!
D&D Miniatures
All times are GMT -8. The time now is
10:29 PM
.
-- Default Style
-- Majestic
Contact Us
-
Lone Wolf Development Forums
-
Archive
-
Top
Powered by vBulletin® - Copyright ©2000 - 2021, vBulletin Solutions, Inc.
wolflair.com copyright ©1998-2016 Lone Wolf Development, Inc. View our
Privacy Policy
here.