-
April 23rd, 2022, 19:32 #21
Correct. FG doesn't save the contents of the textboxes as you type. I like to press escape on my keyboard when I'm done typing to leave the field without having to enter another.
Unrelated note: Advanced Item Actions also lets you set remaining charges on a wand via the name such as "Wand of Cure Light [12 charges]".
These syntax styles are just mirroring what I saw used in officially published Paizo APs in FG (specifically Return of the Runelords which I was playing at the time).
Once the CL and charges have been obtained by the extension, they can be removed from the name (happens automatically for charges) as they're saved internally.Last edited by bmos; April 24th, 2022 at 02:25.
bmos' extensions
he/him | Matrix: @wil-thieme:matrix.org | Discord: wil.thieme#3396
-
April 24th, 2022, 02:19 #22
Wow, ok these were awesome! Trenloe, Thankyou for the initial extension, super helpful. MostTornBrain, Thankyou for the added code to that ext. (testing it out now), that is awesome. Bmos, Thanks for that additional tid bit. basically it allows my DM to set the CL of a scroll to a higher level if he wants and have it automatically come across. Thank you everyone.
as an aside to show what I was looking to do with scrolls, potions and such: The Green at the top is what I want to do but can't because all 5 items have different CL. The red is how it comes in and works great but takes up more real estate. If there was a way to add CL to an individual spell like you can CLC and have it override the CL set for the Spell Class that would let this happen, but I assume that is a much more complicated Idea.
Adding CL to Individual spells.pngLast edited by Morenu; April 24th, 2022 at 02:28.
Vote for Extension setup saves
60+ PF1e Extensions & Modules I use, with links plus more I have tried.
PF1e Effect List (BETA). PM me to edit. Includes: 3.5 Wiki - Aura Effect - Better Combat Effects - Extended automation and overlays - Live HP - Size Changes - Size Matters - Spell Failure - Remove Effect , and Temporal Fixation
Discord Tag: Morenu#8382
-
April 24th, 2022, 02:26 #23bmos' extensions
he/him | Matrix: @wil-thieme:matrix.org | Discord: wil.thieme#3396
-
April 24th, 2022, 02:41 #24
Trenloe and MostTornBrain, May I add the following to my first Post for people so they don't have to search? unless you want to put it in Forge yourselves.
Alphabetize The Spell Classes on the Actions Tab By Trenloe -
PF1 - Spellclass Sort
Add a Note Field to all spell level sections under the Spell Class. Added to Trenloe's Extension above by MostTornBrain
PF1-Spellclass Sort and notesLast edited by Morenu; April 24th, 2022 at 12:24.
Vote for Extension setup saves
60+ PF1e Extensions & Modules I use, with links plus more I have tried.
PF1e Effect List (BETA). PM me to edit. Includes: 3.5 Wiki - Aura Effect - Better Combat Effects - Extended automation and overlays - Live HP - Size Changes - Size Matters - Spell Failure - Remove Effect , and Temporal Fixation
Discord Tag: Morenu#8382
-
April 24th, 2022, 03:04 #25Vote for Extension setup saves
60+ PF1e Extensions & Modules I use, with links plus more I have tried.
PF1e Effect List (BETA). PM me to edit. Includes: 3.5 Wiki - Aura Effect - Better Combat Effects - Extended automation and overlays - Live HP - Size Changes - Size Matters - Spell Failure - Remove Effect , and Temporal Fixation
Discord Tag: Morenu#8382
-
April 24th, 2022, 12:19 #26bmos' extensions
he/him | Matrix: @wil-thieme:matrix.org | Discord: wil.thieme#3396
-
April 24th, 2022, 16:08 #27Private Messages: My inbox is forever filling up with PMs. Please don't send me PMs unless they are actually private/personal messages. General FG questions should be asked in the forums - don't be afraid, the FG community don't bite and you're giving everyone the chance to respond and learn!
-
April 24th, 2022, 20:06 #28
-
April 28th, 2022, 00:33 #29
I was wondering If there is a way to have what is typed on the Note Line you added, show up on an NPC when you lock the NPC and also on the MINI sheet (the more condensed character sheet)
NPC Locked Note line.pngVote for Extension setup saves
60+ PF1e Extensions & Modules I use, with links plus more I have tried.
PF1e Effect List (BETA). PM me to edit. Includes: 3.5 Wiki - Aura Effect - Better Combat Effects - Extended automation and overlays - Live HP - Size Changes - Size Matters - Spell Failure - Remove Effect , and Temporal Fixation
Discord Tag: Morenu#8382
-
April 28th, 2022, 01:46 #30
It's definitely doable - it's more a question of how to best format the row. The level values are currently centered. The easiest thing to do is make that level label include the notes and let the whole thing be centered as it already is. It will look like this:
Screen Shot 2022-04-27 at 8.33.30 PM.png
To get that, add the following extra code to your extension:
Code:<windowclass name="spell_level_mini" merge="join"> <script> function onInit() super.updateLabel = myUpdateLabel; if super.onInit then super.onInit(); end end function myUpdateLabel() local node = getDatabaseNode(); local sLabel = ""; Debug.chat("node:", DB.getValue(node, "notes", 0)); if minisheet then sLabel = "Level " .. DB.getValue(node, "level", 0) .. " - " .. DB.getValue(node, "notes", 0); else sLabel = "Level " .. DB.getValue(node, "level", 0); end label.setValue(sLabel); end </script> </windowclass>
I've only been tinkering with extensions since the beginning of this year, so this might not be the best way to go about the changes you wanted. Perhaps someone else has some suggestions for alternative ways this could be done.
I'm usually hesitant to override an existing function since if the core ruleset changes it might break, but in this instance, the original updateLabel() function was only 2 lines long, so hopefully doesn't come with a huge amount of risk.
Cheers,
BrianLast edited by MostTornBrain; April 28th, 2022 at 01:49.
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks