Manalishi66
Well-known member
Got another feat, got most to work, but need to know how to make the chosen skill rank 10+ bonus to apply to the chosen skill not both?
Feat....
You get a +2 racial bonus on all Diplomacy checks. For this feat, choose either the Sense Motive skill or the Bluff skill. This choice is permanent. Gain a +2 racial bonus in the chosen skill. If you have 10 or more ranks in one of these skills, the bonus increases to +4 for that skill.
Code....
#skillbonus[skDiplo] += 2
~ If we're disabled, do nothing
doneif (tagis[Helper.SpcDisable] <> 0)
#applybonus[Bonus, field[usrChosen1].chosen, 2]
perform forward[ClassSkill.?]
~and another two once we're at 10 ranks
if (#skillranks[skBluff] >= 10) then
#skillbonus[skBluff] += 2
endif
if (#skillranks[skSenseMot] >= 10) then
#skillbonus[skSenseMot] += 2
endif
Feat....
You get a +2 racial bonus on all Diplomacy checks. For this feat, choose either the Sense Motive skill or the Bluff skill. This choice is permanent. Gain a +2 racial bonus in the chosen skill. If you have 10 or more ranks in one of these skills, the bonus increases to +4 for that skill.
Code....
#skillbonus[skDiplo] += 2
~ If we're disabled, do nothing
doneif (tagis[Helper.SpcDisable] <> 0)
#applybonus[Bonus, field[usrChosen1].chosen, 2]
perform forward[ClassSkill.?]
~and another two once we're at 10 ranks
if (#skillranks[skBluff] >= 10) then
#skillbonus[skBluff] += 2
endif
if (#skillranks[skSenseMot] >= 10) then
#skillbonus[skSenseMot] += 2
endif