PDA

View Full Version : Pathfinder custom class - how do I set class proficiency?



RitchieB87
May 18th, 2020, 10:34
Hi All,

I’m making a custom class in a pathfinder campaign in Fantasy Grounds Unity and I can’t see where to set the weapon/Armour proficiency. In the standard classes it seems to be set as a lvl 1 class feature but copying that setup doesn’t work for me.

When I add the class to a Character the Proficiency section is blank.

Thanks in advance.

Trenloe
May 18th, 2020, 13:32
Moved to the 3.5E/Pathfinder forum. Pathfinder Society (where this was originally posted) is for the Paizo Organized Play campaign.

RitchieB87
May 18th, 2020, 14:27
Ok thanks.

bmos
May 19th, 2020, 12:18
You mention "copying that setup" doesn't work for you.
How are you copying it?

RitchieB87
May 19th, 2020, 12:19
Just by typing it out exactly. Is there a proper way to copy?

bmos
May 19th, 2020, 14:01
EDIT: disregard

RitchieB87
May 19th, 2020, 14:15
That was my first thought and what I tried first. I tried dragging the title of the ability "which does nothing", the "i" icon which drags but does not create anything in the custom class. So what am I supposed to drag?

Info:
I am making a Buccaneer class so I am dragging the 1st level ability "Weapon and Armour Proficiency" from Bard. I have the edit mode enabled for the class abilities under the "other" tab.

Note: I tried this again just before posting.

Talyn
May 19th, 2020, 14:27
He's making a custom class so words are all he has. :) And therein lies your clue: the manager_char.lua script is looking for a few specific strings to parse in order to create those proficiency records. So for your custom class, try to duplicate the phraseology that Paizo has used in their classes.

The parser has a few variances but it isn't perfect.

See the Barbarian (https://aonprd.com/ClassDisplay.aspx?ItemName=Barbarian) which combines proficiencies (weapon and armor) into a single line:

A barbarian is proficient with all simple and martial weapons, light armor, medium armor, and shields (except tower shields).

The Fighter (https://aonprd.com/ClassDisplay.aspx?ItemName=Fighter) also uses a single line of text, and the parser catches that with an 'All' label on the character sheet:

A fighter is proficient with all simple and martial weapons and with all armor (heavy, light, and medium) and shields (including tower shields).

Then the Bard (https://aonprd.com/ClassDisplay.aspx?ItemName=Bard) has multiple sentences, but the parser only looks for specifically armor and weapons:

A bard is proficient with all simple weapons, plus the longsword, rapier, sap, short sword, shortbow, and whip. Bards are also proficient with light armor and shields (except tower shields). A bard can cast bard spells while wearing light armor and use a shield without incurring the normal arcane spell failure chance. Like any other arcane spellcaster, a bard wearing medium or heavy armor incurs a chance of arcane spell failure if the spell in question has a somatic component. A multiclass bard still incurs the normal arcane spell failure chance for arcane spells received from other classes.

Then look at the Cleric (https://aonprd.com/ClassDisplay.aspx?ItemName=Cleric). The parser catches the normal weapon and armor proficiency text just fine, but doesn't know what to do with the bit about the favored weapon, so you would have to add that manually either as a separate record or just add the text to the weapon proficiency record:

Clerics are proficient with all simple weapons, light armor, medium armor, and shields (except tower shields). Clerics are also proficient with the favored weapon of their deity.

So bottom line is, try as best you can to match/mimic the text Paizo used and play around with it until the parser is able to work with it. :)

Oh, and welcome to Fantasy Grounds! :)

RitchieB87
May 19th, 2020, 14:30
Thanks, that’s kind of how I thought it was working. Perhaps I didn’t type it out as exactly as I thought. I’ll double check later.

And thanks! I’m liking the tool so far, looking forward to getting my group on it.

RitchieB87
May 19th, 2020, 14:46
Right, I found the issue. I was using UK spelling for the word “Armour” in the title of the class feature. I just changed it to “Armor” as in the Bard class and now it works.

Thanks for the help.

Kelrugem
May 19th, 2020, 16:23
Right, I found the issue. I was using UK spelling for the word “Armour” in the title of the class feature. I just changed it to “Armor” as in the Bard class and now it works.

Thanks for the help.

ah, yes, the UK/US differences with respect to spelling also sometimes hits me, too :) Glad that you got it sorted :)