Hi, I honestly don't have an answer to this. I don't even know why this was changed... Let me ping the coders and see what pushed that decision. ... -- Andrew...
23142
James Dempsey
james_dempse...
Feb 14, 2013 7:29 am
Hi, Here is a reference to the removal: http://wiki.pcgen.org/Token_Change_Proposals_for_5.13_Alpha search for or scroll down to the ADDPROF row. I'm not able...
23143
FerretDave
dave_the_ferret
Feb 14, 2013 11:42 am
Greetings, They are working fine now, was just the issue with them not appearing on any OS. Many thanks Drew - your speedy resolution of the MSRD OS has...
23144
Tom Parker
thpr
Feb 14, 2013 3:21 pm
No, I can't see it. All I could find was a discussion and vote on _exp but even that was post-hoc the change. The closest thing I can find to a relevant...
23145
Andrew
Drew0500
Feb 14, 2013 3:35 pm
Hi, Tracking down 5 year old conversations isn't how I want to spend the time. I'd like to agree with Tom, what rules construct are we being asked to support...
23146
pshipley@...
pshipley...
Feb 14, 2013 9:37 pm
It certainly worked when I tested it before committing the dataset ;-) Albeit that was under the 6.0.0 setup, and quite a bit has changed in the underlying...
23147
Andrew
Drew0500
Feb 14, 2013 9:45 pm
Hi, It looked correct to me. Should work fine. ... -- Andrew Maitland (LegacyKing) Admin Silverback - PCGen Board of Directors Data 2nd, Docs Tamarin, OS Lemur...
23148
rogerwllco
Feb 15, 2013 1:21 am
From Magic of Faerun, but it appears on some other Faerun books as well: Heavy Weapons, such as those made from gold or platinum, are unwieldy but inflict...
23149
madartiste
Feb 15, 2013 4:49 pm
Hey all, Our DM has a house rule that lets a person spend a certain amount of unused skill points to buy a feat. I was attempting to code this up, but seem to...
23150
Max Paige
blind_monkey...
Feb 16, 2013 3:10 am
I'm making a 3.5e race that has an option for a bonus to either Dex or Con, and I can't figure out the documentation for the CHOOSE tag. After playing around...
23151
Andrew
Drew0500
Feb 16, 2013 3:17 am
Hi, Skill Pool is a beast to alter unless leveling. What I would recommend is setting up a new skill Buy Feat TYPE:FEAT VISIBLE:GUI...
23152
Andrew
Drew0500
Feb 16, 2013 3:23 am
Hi, Well, CHOOSE:PCSTAT|DEX|CON is the first tag, BONUS:STAT|%LIST|2 is the second tag Since it's a race I'd do this on the ra: BONUS:ABILITYPOOL|RaceName Stat...
23153
Max Paige
blind_monkey...
Feb 16, 2013 5:35 am
Thanks! I played with this for a bit and I got it to work. Only problem I'm having now is that PCGen is throwing 2 errors when it loads sources - both related...
23154
Max Paige
blind_monkey...
Feb 16, 2013 5:35 am
Nevermind, I fixed it. I had extra spaces in those lines somewhere. I thought I had googled the error message I was getting, but it turns out I had not - the...
23155
madartiste
Feb 16, 2013 5:44 pm
Ah! That's excellent! I hadn't even thought of making a new skill! Thank you very much....
23156
rogerwllco
Feb 17, 2013 10:30 am
Can someone explain the difference between CHOOSE:SKILL|ALL and CHOOSE:SKILL|ANY They seem to do the same thing to me as far as I understand the documentation....
23157
Henk Slaaf
henkslaaf
Feb 17, 2013 11:14 am
Hey Andrew, I've become bogged with work at home and at the office. So I haven't been able to put in time. Sorry, Henk ... [Non-text portions of this message...
23159
rogerwllco
Feb 17, 2013 3:14 pm
I'm reading the documentation for CHOOSE:FEAT|x|y|y[x]|y[x,x]|x,y,y[x],y[x,x] ...
23160
Eric C Smith
maredudd800
Feb 17, 2013 3:18 pm
Hi Folks! The docs for CHOOSE:FEATLIST give a conversion example and the CHOOSE:FEAT docs cover the syntax in question and provide examples. ...
23161
rogerwllco
Feb 17, 2013 3:24 pm
Sorry, I deleted the original message, as I figured it out soon after posting the question. It did lead to a new related question. Thanks for still answering...
23162
Eric C Smith
maredudd800
Feb 17, 2013 3:26 pm
Hi Folks! Andrew or James can correct me if I get this wrong . . . ... This tag says choose a feat that the PC has with the TYPE SpellLike ... This tag says...
23163
rogerwllco
Feb 17, 2013 3:31 pm
So I have this CMP dataset with lot's of SpellLike abilities coded as FEATs, some just as SAB. Now there is the new ABILITIES mechanic that allows more...
23164
Eric C Smith
maredudd800
Feb 17, 2013 3:31 pm
Uh, I think my last note is wrong. The first and second examples produce the same list. Its too early for me to properly grasp logical combinations, especially...
23165
Eric C Smith
maredudd800
Feb 17, 2013 3:38 pm
Hi Adriaan, You are correct. You will need to convert the feats to abilities. Fortunately that isn't that difficult. Just extensive. We have a LST File class...
23166
rogerwllco
Feb 17, 2013 3:40 pm
So '|' functions like AND and ',' functions like OR and '[]' seems to be some special kind of AND? Looking at it like that makes so much sense. Cheers, Adriaan...
23167
Eric C Smith
maredudd800
Feb 17, 2013 3:49 pm
It's the other way around. The pipe (|) is the logical OR and the comma (,) is the logical AND. Maredudd...
23168
Eric C Smith
maredudd800
Feb 17, 2013 3:54 pm
Still no coffee! :-) Or rather I should say that the pipe functions as an AND in that PCGen will include "these feats AND these feats" in the list, but as part...
23169
rogerwllco
Feb 17, 2013 3:59 pm
Ok, let's see if I understand that. Suppose I have: Character with Feats: Power Attack and Darkness (Sp) Other Feats: Dimension Door (Sp), Breath Weapon (Su) ...
23170
rogerwllco
Feb 17, 2013 4:20 pm
Ugh, sounds like a lot of work, maybe I can write a script for it. I'm reading that guide and I have two questions: ...
23171
Eric C Smith
maredudd800
Feb 17, 2013 4:25 pm
Hi Adriaan, ... Correct. ... Plus Power attack Using PC,TYPE=SpellLike|TYPE=SpellLike would exclude Power Attack but include Dimension Door. ... Correct. ... ...