Lone Wolf Development Forums  

Go Back   Lone Wolf Development Forums > Search Forums

Notices

Showing results 1 to 25 of 54
Search took 0.01 seconds.
Search: Posts Made By: Elindor
Forum: HL - D&D 5th Edition SRD June 27th, 2017, 01:25 AM
Replies: 3
Views: 2,831
Posted By Elindor
Here's around half of the code, which changes the...

Here's around half of the code, which changes the weapon damage and attacks to use Dex if Dex is higher. I set the priority to Post-Attributes, 1000.

doneif (tagis[Helper.ShowSpec] = 0)

doneif...
Forum: HL - D&D 5th Edition SRD February 29th, 2016, 03:13 AM
Replies: 4
Views: 3,501
Posted By Elindor
The 5e system was split off from the Pathfinder...

The 5e system was split off from the Pathfinder system a while back, and that doesn't have the capability to add custom descriptive text to individual items from within the portfolio. I'm not...
Forum: HL - D&D 5th Edition SRD February 27th, 2016, 10:08 PM
Replies: 4
Views: 3,168
Posted By Elindor
For starting equipment, you go to the relevant...

For starting equipment, you go to the relevant tab, click the "add new gear" object, and check the "add for free" box when adding the starting equipment - this will add it for no gold cost. Weapons...
Forum: HL - D&D 5th Edition SRD February 19th, 2016, 01:30 AM
Replies: 93
Views: 29,848
Posted By Elindor
Dual Wielder doesn't affect damage - it's a hack...

Dual Wielder doesn't affect damage - it's a hack to let non-light weapons be wielded without penalty in the off hand, by making the client see them as light, and only the weapon in the off-hand. Not...
Forum: HL - D&D 5th Edition SRD February 15th, 2016, 07:39 PM
Replies: 59
Views: 37,273
Posted By Elindor
If you're using Feats, they have actually...

If you're using Feats, they have actually supplied 2 feats for you - Grappler and Custom, which can be changed however you want. The Custom feat won't do code, however, so the effects would need to...
Forum: HL - D&D 5th Edition SRD February 15th, 2016, 02:25 PM
Replies: 59
Views: 37,273
Posted By Elindor
Out of the box, it lets you play a character that...

Out of the box, it lets you play a character that can be created within the confines of the 5th Edition Dungeons and Dragons System Reference Document. Additionally, they have supplied the tools...
Forum: HL - D&D 5th Edition SRD February 15th, 2016, 12:08 PM
Replies: 8
Views: 3,724
Posted By Elindor
If you're proficient in a skill, the...

If you're proficient in a skill, the Helper.Proficient flag is added. So, you need to check for the flag not being there.

component.BaseSkill & !Helper.Proficient
Forum: HL - D&D 5th Edition SRD February 14th, 2016, 03:54 AM
Replies: 93
Views: 29,848
Posted By Elindor
Dual Wielder - Post-Attributes, 100 doneif...

Dual Wielder - Post-Attributes, 100
doneif (tagis[Helper.ShowSpec] = 0)

doneif (tagis[Helper.Disable] <> 0)

field[abValue].value = 0

foreach pick in hero from BaseWep where...
Forum: HL - D&D 5th Edition SRD February 14th, 2016, 02:30 AM
Replies: 93
Views: 29,848
Posted By Elindor
How about this? just check to see if there are...

How about this? just check to see if there are any spells? That way, it will work for all classes and races, and will detect them when added by Feats

foreach pick in hero from BaseSpell where...
Forum: HL - D&D 5th Edition SRD February 14th, 2016, 01:37 AM
Replies: 11
Views: 9,862
Posted By Elindor
There's a community effort here...

There's a community effort here (http://forums.wolflair.com/showthread.php?t=54917) to organize adding the missing content. They actually have quite a bit of work done, based on the status update on...
Forum: HL - D&D 5th Edition SRD February 14th, 2016, 01:25 AM
Replies: 4
Views: 3,284
Posted By Elindor
Actually, double checking the Dual Wielder feat,...

Actually, double checking the Dual Wielder feat, you can probably remove the "!wProperty.Heavy &" form the validation text - not that there's much in the way of Heavy One Handed Weapons.
Forum: HL - D&D 5th Edition SRD February 14th, 2016, 01:19 AM
Replies: 4
Views: 3,284
Posted By Elindor
If you don't want to wait for a community file,...

If you don't want to wait for a community file, here's an evaluation script to get you through.

I've got it set at Post-Attributes.

doneif (tagis[Helper.ShowSpec] = 0)

doneif...
Forum: HL - D&D 5th Edition SRD February 13th, 2016, 12:55 AM
Replies: 1
Views: 2,365
Posted By Elindor
On the Configure Hero window, there's a drop list...

On the Configure Hero window, there's a drop list under the Hero/NPC toggle - there's Standard Arraw, Point Buy (27 points) and Roll/Pick. Select the one you want, and it'll work.
Forum: HL - D&D 5th Edition SRD February 8th, 2016, 12:49 AM
Replies: 14
Views: 5,875
Posted By Elindor
Almost there - that folder has a solder called...

Almost there - that folder has a solder called "Data" in it, which holds the game systems. The .user file needs to go into the 5e folder.

Once you have it, go to the Personal tab on the character,...
Forum: HL - D&D 5th Edition SRD February 8th, 2016, 12:46 AM
Replies: 4
Views: 3,037
Posted By Elindor
I'm fairly certain that official 5e support will...

I'm fairly certain that official 5e support will be coming within a fortnight of Lone Wolf securing a licence from Wizards of the Coast. I'm not going to hold my breath.
Forum: HL - D&D 5th Edition SRD February 3rd, 2016, 02:23 PM
Replies: 7
Views: 3,300
Posted By Elindor
Ok, my solution - under Human (Variant) have a...

Ok, my solution - under Human (Variant) have a subrace for each feat, and bootstrap the feat there. Has the advantage that I can hook the feat description in the subrace description, and pull in the...
Forum: HL - D&D 5th Edition SRD February 3rd, 2016, 05:07 AM
Replies: 93
Views: 29,848
Posted By Elindor
Defensive Duelist Eval Script Tick "Show in...

Defensive Duelist Eval Script
Tick "Show in Activated Abilities list"

Run Post-Attributes

doneif (tagis[Helper.ShowSpec] = 0)

doneif (tagis[Helper.Disable] <> 0)

doneif...
Forum: HL - D&D 5th Edition SRD February 3rd, 2016, 05:01 AM
Replies: 7
Views: 3,300
Posted By Elindor
I'm about 90% of the way to building in...

I'm about 90% of the way to building in everything I need to build in for the PCs (and the 2 lower leveled GMPCs who are ostensibly there to provide a couple of key skills no-one in the group took)....
Forum: HL - D&D 5th Edition SRD February 3rd, 2016, 04:38 AM
Replies: 22
Views: 8,579
Posted By Elindor
Here's my code for Bladesong. First Eval...

Here's my code for Bladesong.

First Eval Script - Post-Attributes Phase

field[abValue].value = #attrbonus1[aINT]

Second Script - Post-Attributes Phase, priority must be greater than the...
Forum: HL - D&D 5th Edition SRD February 3rd, 2016, 02:48 AM
Replies: 22
Views: 8,579
Posted By Elindor
I modified the code from the Weapon Proficiency...

I modified the code from the Weapon Proficiency Adjustment

~If we're not selected, get out

doneif (tagis[Helper.Disable] <> 0)

perform hero.assign[ProfSkill.skPerform]
...
Forum: HL - D&D 5th Edition SRD February 3rd, 2016, 12:22 AM
Replies: 22
Views: 8,579
Posted By Elindor
Got it component.BaseWep &...

Got it

component.BaseWep & !wProperty.TwoHanded & wCategory.Melee & !wGroup.Natural & !Helper.Helper

!Helper.Helper removes the weapons which are Helper Only (that is, those added for Magic...
Forum: HL - D&D 5th Edition SRD February 2nd, 2016, 11:31 PM
Replies: 59
Views: 37,273
Posted By Elindor
And as that can be done as a custom background in...

And as that can be done as a custom background in the character creator, I'd say you're set!

Only half way through implementing a Bladesinger...
Forum: HL - D&D 5th Edition SRD February 2nd, 2016, 11:30 PM
Replies: 9
Views: 4,285
Posted By Elindor
Oh, and gear sets are just text fields, which...

Oh, and gear sets are just text fields, which display on the equipment tabs that are relevant (if you sort them properly). You have to manually add the gear in character creation.
Forum: HL - D&D 5th Edition SRD February 2nd, 2016, 11:28 PM
Replies: 9
Views: 4,285
Posted By Elindor
I'm on a train right now, so I can't pull out my...

I'm on a train right now, so I can't pull out my laptop to check, but look at the tags and bootstraps on Infernal Legacy - the spells should be there with additional tags indicating the level they...
Forum: HL - D&D 5th Edition SRD February 2nd, 2016, 11:26 PM
Replies: 4
Views: 3,486
Posted By Elindor
I think I know the issue - thieves tools...

I think I know the issue - thieves tools proficiency from Rogue class does not appear on the character sheet. Tool proficiency from background appears, however, but only as a text item, not a skill...
Showing results 1 to 25 of 54

 
Forum Jump

All times are GMT -8. The time now is 10:16 PM.


Powered by vBulletin® - Copyright ©2000 - 2024, vBulletin Solutions, Inc.
wolflair.com copyright ©1998-2016 Lone Wolf Development, Inc. View our Privacy Policy here.