Lone Wolf Development Forums  

Go Back   Lone Wolf Development Forums > Hero Lab Forums > HL - D&D 5th Edition SRD

Notices

Reply
 
Thread Tools Display Modes
Brolthemighty
Senior Member
 
Join Date: Jan 2013
Posts: 273

Old February 5th, 2020, 08:25 AM
Alright, so my DM has given my a ring that grants a 1/short rest spell from the Warlock class list (am not a Warlock). But I can change out which spell it is, as long as it's of a level I can cast.

I thought creating a little selector like the Bard's arcane secrets on the ring would work. I got the ring to have a selector where I chose what class, but it wouldn't pull up any spells.

I would REALLY rather not have to create a whole new configurable/tab for a single spell selection and was hoping for a better solution (although if I must, I must). Anyone able to help?

Wondrous Item: Ring of Blending
Requires: Attunement and equipped
Grants:
- Alter Self CHA/long rest
- Floating Warlock Spell 1/short rest
- Spell can be of any level I can cast, and it's changeable.

Last edited by Brolthemighty; February 5th, 2020 at 01:05 PM.
Brolthemighty is offline   #1 Reply With Quote
Brolthemighty
Senior Member
 
Join Date: Jan 2013
Posts: 273

Old February 5th, 2020, 08:28 AM
Details on the item on what I've done so far:

Needs Attunement
Show in Tracked Resources List
Automatic Calculation: Attr Only
Charge Calc: Charisma
Usage: /long rest
Castable Spell: Alter Self

Item Selection:
Select from: Classes
Restrict First list to: All things

Second Selection from: Spells level 1-9
Restricted to: All picks on container.

I'm not worried about building in rule-outs to check on whether it's a spell of a level castable, I'll just manually keep that in check.


Edited: Added everything I have programmed to include the Alter Self bit.

Last edited by Brolthemighty; February 5th, 2020 at 01:07 PM.
Brolthemighty is offline   #2 Reply With Quote
dungeonguru
Senior Member
 
Join Date: May 2016
Posts: 608

Old February 5th, 2020, 12:29 PM
If you are OK with locking it down to a warlock spell only you can do the following:

Item Selection:
Select From: - None -
Custom Expression: (component.BaseSpell & sClass.cHelpWlk)
Restrict First List to: All Things

That will list all basic warlock spells (not any added from a particular patron), which is still a lot of spells.

This will get you the spells listed. I'm not sure what your end goal is, you will likely have to play with scripting to get any information from the usrChosen1 object passed on to the character sheet or parent item.

Spell selection is most easily handled by the configurable logic since a configurable does a lot of things "behind the scenes" that makes it easier when you're basically trying to dynamically bootstrap something to a hero.
dungeonguru is offline   #3 Reply With Quote
Brolthemighty
Senior Member
 
Join Date: Jan 2013
Posts: 273

Old February 5th, 2020, 12:47 PM
End goal is to have a 1/shirt rest warlock spell tied to the item. Should show up on the in-play tab so I can track its use. I appreciate the help and see how it goes!

Edit: Alright, so it looks like the little bit broke the rest of the Ring. Looks like I need to fiddle with this some more. I'm editing the OP with the entire item's abilities since it doesn't seem it'll be as easy as I thought, and all the abilities might end up getting in each other's way.

The biggest reason I wasn't using a configurable is mostly cause I didn't want to add even more tabs/confiurables to the character for just a floating spell. If I must, I must though. Just trying different avenues. I was looking at the Arcane Secrets ability coding to try and glean a way to do it.

Last edited by Brolthemighty; February 5th, 2020 at 01:15 PM.
Brolthemighty is offline   #4 Reply With Quote
Brolthemighty
Senior Member
 
Join Date: Jan 2013
Posts: 273

Old February 9th, 2020, 02:24 PM
At the moment I’m just using and adjustment to add the floating warlock spell, and manually doing it. I couldn’t figure out how to have both the Alter Self added with CHA/day, and the Warlock Spell per shirt rest. Was t having any luck finding an item that had two spell likes with different charges/tracking sets.
Brolthemighty is offline   #5 Reply With Quote
dungeonguru
Senior Member
 
Join Date: May 2016
Posts: 608

Old February 10th, 2020, 04:00 AM
This item is a tough one.

Pushing separate trackers on each spell isn't that hard if you can figure out how to access them, but it's that dynamic spell that I can't figure out how to add without a configurable. I've been trying to figure out if a gizmo might be able to do it, like how magic weapons have this gizmo that lets you choose a weapon but I've hit my limit on knowledge there.

I'm almost at the point of suggesting as a workaround creating a "spell template" spell.

What you would do is bootstrap alter self and the spell template spell to this item.

In a script that runs post attributes you could do something like:

~ set the tracker on Alter Self to CHA/LongRest
container.child[spAlteSelf].field[trkMax].value = maximum(1,#attrmod[aCHA])
perform container.child[spAlteSelf].assign[Usage.LongRest]

~ set the tracker on the spell template to 1/ShortRest
~ you could do this directly on the bootstrap if you wanted.
container.child[spNEWID].field[trkMax].value = 1
perform containter.child[spNEWID].assign[Usage.ShortRest]

Then in a second script probably in the Render timing section.

Grab all the name/description of the spell chosen in your dropdown and "overwrite" your spell template fields/tags.

container.child[spNEWID].field[livename].text = field[usrChosen1].chosen.field[livename].text
container.child[spNEWID].field[CustDesc].text = field[usrChosen1].chosen.field[CustDesc].text
etc....
and do pulltags /pushtags for any tags

It's very much a workaround though.

Last edited by dungeonguru; February 10th, 2020 at 04:03 AM.
dungeonguru is offline   #6 Reply With Quote
Brolthemighty
Senior Member
 
Join Date: Jan 2013
Posts: 273

Old February 10th, 2020, 02:49 PM
Interesting. I’ll play around with what you’ve provided, thank you. I have a feeling the easiest thing to do is just cave and create a configurable and to just stop being so stubborn about it. Thank you.
Brolthemighty is offline   #7 Reply With Quote
Brolthemighty
Senior Member
 
Join Date: Jan 2013
Posts: 273

Old February 16th, 2020, 01:07 PM
Alright, I'm either having a huge brainfart...or I'm just burnt out looking at all the coding right now. I caved and decided I was just going to use a configurable....and still couldn't figure out how to get it to work. Bleh.
Brolthemighty is offline   #8 Reply With Quote
Brolthemighty
Senior Member
 
Join Date: Jan 2013
Posts: 273

Old March 7th, 2020, 08:19 PM
Bump on a sorta necro post.

Finally sitting down to try and make this a bit of a cleaner workup. What I currently have is the ring broken down to its individual parts as multiple rings. It's pretty rough. I realized that I need to go ahead and make this a full-on configurable. So now that's what I'm doing. I went over the full text of the item and such, and listed the multiple things it does that would need a tracker/selector.

Alter Self: CHa mod/long rest
Bootstrap Alter Self
Eval: Post-Att/10000/1

set the tracker on Alter Self to CHA/LongRest
container.child[spAlteSelf].field[trkMax].value = maximum(1,#attrmod[aCHA])
perform container.child[spAlteSelf].assign[Usage.LongRest]


Floating Sorcerer Cantrip
- Looking at either the Magic Initiate scrips, or the half-elf variant scripts for this.

Floating Sorcerer/Warlock Spell: 1/short rest

Going back through what was already done, it was using the various little menu options and stuff in an item...which doesn't seem to be the same in the configurable. So I'm mashing stuff together and just seeing if it works. Any help or guidance is appreciated.

For the Sorcerer Cantrip, I was looking at the coding from either Magic Initiate or from the half-elf variant. Both go about it differently.

Last edited by Brolthemighty; March 7th, 2020 at 09:37 PM.
Brolthemighty is offline   #9 Reply With Quote
Brolthemighty
Senior Member
 
Join Date: Jan 2013
Posts: 273

Old March 7th, 2020, 09:40 PM
For the floating spell and the Cantrip, I think I need to split it up into two parts. The Cantrip that comes from the sorcerer spell list, and then the level 1+ spell/long rest that comes from the Sorcerer Warlock list.

Technically, using the Spell Sniper scripting, I can add a Sorcerer cantrip...although looking at it, it looks like it allows for the selecting of a level 1+ spell as well and have that be set to 1/long rest by the way of Racial spell....but I don't see where all that leads into or how to populate it. So I'm going to try and leave the script as it is and see how it goes.
Brolthemighty is offline   #10 Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -8. The time now is 04:00 AM.


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