Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Due to an outage with an external service provider, we’re experiencing intermittent loading issues on Roll20. Please refresh if needed.
Create a free account

Pathfinder Toggle Bonus on Skills

I am looking to add a togglable macro to 3 skills Silver-Tongued Haggler (Su) : Whenever you make a Bluff, Diplomacy, or Sense Motive check, you can, as a free action, grant yourself a bonus on the roll equal to 1/2 your cleric level (minimum +1). You can use this ability a number of times per day equal to 3 + your Wisdom modifier. A very simple plus half class level +floor(@{level}/2 I want to add this: [[ ?{Silver Tongue?|Yes,1|No,0}*( +floor(@{level}/2 ) ]] To this: &{template:pf_generic} @{toggle_accessible_flag} @{toggle_rounded_flag} {{font=@{apply_specfont_chat}@{use_specfont}}} {{scroll_desc=@{scroll-desc}}} {{color=@{rolltemplate_color}}} {{header_image=@{header_image-pf_generic-skill}}} {{character_name=@{character_name}}} {{character_id=@{character_id}}} {{subtitle}} {{name=^{diplomacy}}} {{Check=[[ @{skill-query} + [[ @{Diplomacy} ]]  ]]}} @{Diplomacy-ut} @{skill_options} @{Diplomacy-cond-notes} {{generic_note=@{Diplomacy-note}}} Where would it be added?
1646553136

Edited 1646553146
vÍnce
Pro
Sheet Author
Hi Tristan, should be able to update the {{check}} portion like this; {{Check=[[ @{skill-query} + [[ @{Diplomacy} ]] +  [[ ?{Silver Tongue?|Yes,1|No,0}*(+floor(@{level}/2) ]] ]] }}
1646620742

Edited 1646621302
Thank you. It seems to give me the toggleable option but neither yes or no adds any bonus
1646630100
vÍnce
Pro
Sheet Author
Tristan C. said: Thank you. It seems to give me the toggleable option but neither yes or no adds any bonus Sorry, I just copied your query without looking it over... change the query from this; [[ ?{Silver Tongue?|Yes,1|No,0}*(+floor(@{level}/2) ]] to [[ ?{Silver Tongue?|Yes,1|No,0}*(floor(@{level}/2)) ]]
Worked beautifully, thank you as always