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 .
×
Create a free account

using pathfinder skills in drop-down query?

February 06 (6 years ago)

Edited February 06 (6 years ago)

I'm pretty new to using this coding stuff. Hoping someone is able to explain how I can fix this or why it's not do-able

I'm attempting to make a skills drop-down query which, when an option is selected, rolls the skill as though clicking on the skill roll in the character sheet. Here's how I have it laid out (showing only one skill for brevity's sake): EDITED:

?{Skill

| Acrobatics, @{selected|whispertype} &{template:pc} {{name=^{acrobatics}}} {{type=skill}} {{showchar=@{selected|rollshowchar}}} {{charname=@{selected|character_name}}} {{roll=[[1d20+@{selected|acrobatics}[MOD]+(@{selected|skill_condition})[CONDITION]+@{selected|rollmod_skill}[QUERY]]]}} {{shownotes=@{selected|rollnotes_skill}}} {{notes=@{selected|acrobatics_notes}}} {{conditionsflag=[[@{selected|skill_condition}]]}} {{conditions=@{selected|conditions_display}}} {{conditionsnote=@{selected|skill_condition_note}}}}

February 06 (6 years ago)

Edited February 06 (6 years ago)
GiGs
Pro
Sheet Author
API Scripter

What is likely your issue is too many html replacements. You never replace characters in an attribute: things like this 

{{charname=@{selected|character_name}}}

should (probably) be

{{charname=@{selected|character_name}}}

I dont know about the rest of your html substitutions, but attributes should definitely be unaltered.

February 06 (6 years ago)

Edited February 06 (6 years ago)

Oh okay! So far when I try using the macro, instead of a drop down query, I get a field with this

Acrobatics, /w gm  &{template:pc}
{{name=^{acrobatics}}} {{type=skill}}
{{showchar=[[1]]}} {{charname=Character Name}}
{{roll=[[1d20+1[MOD]+(0)[CONDITION]+0[QUERY]]]}}
{{shownotes=[[1]]}} {{notes=}} {{conditionsflag=[[0]]}} {{conditions= }} {{conditionsnote=}

But I also don't get error messages like I was before. So for some reason it's not separating the value from the label.

February 06 (6 years ago)
GiGs
Pro
Sheet Author
API Scripter

You've hit my limit I'm afraid. html entities are a bit too much hassle. One solution a lot of people do is replace the dropdown with a Chat Menu of API buttons. You can whisper the buttons to yourself to avoid cluttering chat for everyone, and click the skill to roll.

The technique is described here; https://app.roll20.net/forum/post/5899495/stupid-roll20-tricks-and-some-clever-ones/?pageforid=5927072#post-5927072

with a few examples later in the thread.

Hmm. Thanks for trying to help anyway! I'm trying to make this into a universal token command for my players, a lot of them are new and I'm hoping to make things as simple as possible without cluttering chat. Currently I just have multiple buttons for groups of skills, but each rolls several skills at once, sometimes more than fits in the chat window. That's why I want to make this one button with a drop-down work lol

February 06 (6 years ago)
keithcurtis
Forum Champion
Marketplace Creator
API Scripter

You might have some luck with Scott C's Drop Down Nester spreadsheet.

February 06 (6 years ago)

Edited February 06 (6 years ago)


keithcurtis said:

You might have some luck with Scott C's Drop Down Nester spreadsheet.


Ah, I already tried that, but the drop-down still gets replaced with a text box with both the Name and Value. Am I missing something that should be around or before the Value to separate it from the Name? Like aside from the ',' ? Or maybe I'll have to make each skill into a separate ability so the Value isn't so cluttered..

Edit: just tried that, but changes nothing


February 06 (6 years ago)
keithcurtis
Forum Champion
Marketplace Creator
API Scripter

I am the wrong person to ask about drop-down nesting. I always get help. :D. Hopefully one of the folks who is a wizard at it will be along before too long.


keithcurtis said:

I am the wrong person to ask about drop-down nesting. I always get help. :D. Hopefully one of the folks who is a wizard at it will be along before too long.


Oh I actually just figured it out!! Haha! it was mostly just the space between the ',' and the '@' messing it up. The finished product:

?{Skill | Acrobatics,@{selected|whispertype} &{template:pc} {{name=^{acrobatics}}} {{type=skill}} {{showchar=@{selected|rollshowchar}}} {{charname=@{selected|character_name}}} {{roll=[[1d20+@{selected|acrobatics}[MOD]+(@{selected|skill_condition})[CONDITION]+@{selected|rollmod_skill}[QUERY]]]}} {{shownotes=@{selected|rollnotes_skill}}} {{notes=@{selected|acrobatics_notes}}} {{conditionsflag=[[@{selected|skill_condition}]]}} {{conditions=@{selected|conditions_display}}} {{conditionsnote=@{selected|skill_condition_note}}} | Appraise,@{selected|whispertype} &{template:pc} {{name=^{appraise}}} {{type=skill}} {{showchar=@{selected|rollshowchar}}} {{charname=@{selected|character_name}}} {{roll=[[1d20+@{selected|appraise}[MOD]+(@{selected|skill_condition})[CONDITION]+@{selected|rollmod_skill}[QUERY]]]}} {{shownotes=@{selected|rollnotes_skill}}} {{notes=@{selected|appraise_notes}}} {{conditionsflag=[[@{selected|skill_condition}]]}} {{conditions=@{selected|conditions_display}}} {{conditionsnote=@{selected|skill_condition_note}}} | Bluff,@{selected|whispertype} &{template:pc} {{name=^{bluff}}} {{type=skill}} {{showchar=@{selected|rollshowchar}}} {{charname=@{selected|character_name}}} {{roll=[[1d20+@{selected|bluff}[MOD]+(@{selected|skill_condition})[CONDITION]+@{selected|rollmod_skill}[QUERY]]]}} {{shownotes=@{selected|rollnotes_skill}}} {{notes=@{selected|bluff_notes}}} {{conditionsflag=[[@{selected|skill_condition}]]}} {{conditions=@{selected|conditions_display}}} {{conditionsnote=@{selected|skill_condition_note}}} | Climb,@{selected|whispertype} &{template:pc} {{name=^{climb}}} {{type=skill}} {{showchar=@{selected|rollshowchar}}} {{charname=@{selected|character_name}}} {{roll=[[1d20+@{selected|climb}[MOD]+(@{selected|skill_condition})[CONDITION]+@{selected|rollmod_skill}[QUERY]]]}} {{shownotes=@{selected|rollnotes_skill}}} {{notes=@{selected|climb_notes}}} {{conditionsflag=[[@{selected|skill_condition}]]}} {{conditions=@{selected|conditions_display}}} {{conditionsnote=@{selected|skill_condition_note}}} | Craft,@{selected|whispertype} &{template:pc} {{name=^{craft}}} {{type=skill}} {{showchar=@{selected|rollshowchar}}} {{charname=@{selected|character_name}}} {{roll=[[1d20+@{selected|craft}[MOD]+(@{selected|skill_condition})[CONDITION]+@{selected|rollmod_skill}[QUERY]]]}} {{shownotes=@{selected|rollnotes_skill}}} {{notes=@{selected|craft_notes}}} {{conditionsflag=[[@{selected|skill_condition}]]}} {{conditions=@{selected|conditions_display}}} {{conditionsnote=@{selected|skill_condition_note}}} | Diplomacy,@{selected|whispertype} &{template:pc} {{name=^{diplomacy}}} {{type=skill}} {{showchar=@{selected|rollshowchar}}} {{charname=@{selected|character_name}}} {{roll=[[1d20+@{selected|diplomacy}[MOD]+(@{selected|skill_condition})[CONDITION]+@{selected|rollmod_skill}[QUERY]]]}} {{shownotes=@{selected|rollnotes_skill}}} {{notes=@{selected|diplomacy_notes}}} {{conditionsflag=[[@{selected|skill_condition}]]}} {{conditions=@{selected|conditions_display}}} {{conditionsnote=@{selected|skill_condition_note}&#125} | Disable Device,@{selected|whispertype} &{template:pc} {{name=^{disable_device}}} {{type=skill}} {{showchar=@{selected|rollshowchar}}} {{charname=@{selected|character_name}}} {{roll=[[(1d20+@{selected|disable_device}[MOD]+(@{selected|skill_condition})[CONDITION]+@{selected|rollmod_skill}[QUERY])*(ceil(@{selected|disable_device_ranks}/100))]]}} {{shownotes=@{selected|rollnotes_skill}}} {{notes=@{selected|disable_device_notes}}} {{conditionsflag=[[@{selected|skill_condition}]]}} {{conditions=@{selected|conditions_display}}} {{conditionsnote=@{selected|skill_condition_note}}} | Disguise,@{selected|whispertype} &{template:pc} {{name=^{disguise}}} {{type=skill}} {{showchar=@{selected|rollshowchar}}} {{charname=@{selected|character_name}}} {{roll=[[1d20+@{selected|disguise}[MOD]+(@{selected|skill_condition})[CONDITION]+@{selected|rollmod_skill}[QUERY]]]}} {{shownotes=@{selected|rollnotes_skill}}} {{notes=@{selected|disguise_notes}}} {{conditionsflag=[[@{selected|skill_condition}]]}} {{conditions=@{selected|conditions_display}}} {{conditionsnote=@{selected|skill_condition_note}}} | Escape Artist,@{selected|whispertype} &{template:pc} {{name=^{escape_artist}}} {{type=skill}} {{showchar=@{selected|rollshowchar}}} {{charname=@{selected|character_name}}} {{roll=[[1d20+@{selected|escape_artist}[MOD]+(@{selected|skill_condition})[CONDITION]+@{selected|rollmod_skill}[QUERY]]]}} {{shownotes=@{selected|rollnotes_skill}}} {{notes=@{selected|escape_artist_notes}}} {{conditionsflag=[[@{selected|skill_condition}]]}} {{conditions=@{selected|conditions_display}}} {{conditionsnote=@{selected|skill_condition_note}}} | Fly,@{selected|whispertype} &{template:pc} {{name=^{fly}}} {{type=skill}} {{showchar=@{selected|rollshowchar}}} {{charname=@{selected|character_name}}} {{roll=[[1d20+@{selected|fly}[MOD]+(@{selected|skill_condition})[CONDITION]+@{selected|rollmod_skill}[QUERY]]]}} {{shownotes=@{selected|rollnotes_skill}}} {{notes=@{selected|fly_notes}}} {{conditionsflag=[[@{selected|skill_condition}]]}} {{conditions=@{selected|conditions_display}}} {{conditionsnote=@{selected|skill_condition_note}}} | Handle Animal,@{selected|whispertype} &{template:pc} {{name=^{handle_animal}}} {{type=skill}} {{showchar=@{selected|rollshowchar}}} {{charname=@{selected|character_name}}} {{roll=[[(1d20+@{selected|handle_animal}[MOD]+(@{selected|skill_condition})[CONDITION]+@{selected|rollmod_skill}[QUERY])*(ceil(@{selected|handle_animal_ranks}/100))]]}} {{shownotes=@{selected|rollnotes_skill}}} {{notes=@{selected|handle_animal_notes}}} {{conditionsflag=[[@{selected|skill_condition}]]}} {{conditions=@{selected|conditions_display}}} {{conditionsnote=@{selected|skill_condition_note}}} | Heal,@{selected|whispertype} &{template:pc} {{name=^{heal}}} {{type=skill}} {{showchar=@{selected|rollshowchar}}} {{charname=@{selected|character_name}}} {{roll=[[1d20+@{selected|heal}[MOD]+(@{selected|skill_condition})[CONDITION]+@{selected|rollmod_skill}[QUERY]]]}} {{shownotes=@{selected|rollnotes_skill}}} {{notes=@{selected|heal_notes}}} {{conditionsflag=[[@{selected|skill_condition}]]}} {{conditions=@{selected|conditions_display}}} {{conditionsnote=@{selected|skill_condition_note}}} | Intimidate,@{selected|whispertype} &{template:pc} {{name=^{intimidate}}} {{type=skill}} {{showchar=@{selected|rollshowchar}}} {{charname=@{selected|character_name}}} {{roll=[[1d20+@{selected|intimidate}[MOD]+(@{selected|skill_condition})[CONDITION]+@{selected|rollmod_skill}[QUERY]]]}} {{shownotes=@{selected|rollnotes_skill}}} {{notes=@{selected|intimidate_notes}}} {{conditionsflag=[[@{selected|skill_condition}]]}} {{conditions=@{selected|conditions_display}}} {{conditionsnote=@{selected|skill_condition_note}}} | Know Arcana,@{selected|whispertype} &{template:pc} {{name=^{knowledge_arcana}}} {{type=skill}} {{showchar=@{selected|rollshowchar}}} {{charname=@{selected|character_name}}} {{roll=[[(1d20+@{selected|knowledge_arcana}[MOD]+(@{selected|skill_condition})[CONDITION]+@{selected|rollmod_skill}[QUERY])*(ceil(@{selected|knowledge_arcana_ranks}/100))]]}} {{shownotes=@{selected|rollnotes_skill}}} {{notes=@{selected|knowledge_arcana_notes}}} {{conditionsflag=[[@{selected|skill_condition}]]}} {{conditions=@{selected|conditions_display}}} {{conditionsnote=@{selected|skill_condition_note}}} | Know Dungeoneering,@{selected|whispertype} &{template:pc} {{name=^{knowledge_dungeoneering}}} {{type=skill}} {{showchar=@{selected|rollshowchar}}} {{charname=@{selected|character_name}}} {{roll=[[(1d20+@{selected|knowledge_dungeoneering}[MOD]+(@{selected|skill_condition})[CONDITION]+@{selected|rollmod_skill}[QUERY])*(ceil(@{selected|knowledge_dungeoneering_ranks}/100))]]}} {{shownotes=@{selected|rollnotes_skill}}} {{notes=@{selected|knowledge_dungeoneering_notes}}} {{conditionsflag=[[@{selected|skill_condition}]]}} {{conditions=@{selected|conditions_display}}} {{conditionsnote=@{selected|skill_condition_note}}} | Know Engineering,@{selected|whispertype} &{template:pc} {{name=^{knowledge_engineering}}} {{type=skill}} {{showchar=@{selected|rollshowchar}}} {{charname=@{selected|character_name}}} {{roll=[[(1d20+@{selected|knowledge_engineering}[MOD]+(@{selected|skill_condition})[CONDITION]+@{selected|rollmod_skill}[QUERY])*(ceil(@{selected|knowledge_engineering_ranks}/100))]]}} {{shownotes=@{selected|rollnotes_skill}}} {{notes=@{selected|knowledge_engineering_notes}}} {{conditionsflag=[[@{selected|skill_condition}]]}} {{conditions=@{selected|conditions_display}}} {{conditionsnote=@{selected|skill_condition_note}}} | Know Geography,@{selected|whispertype} &{template:pc} {{name=^{knowledge_geography}}} {{type=skill}} {{showchar=@{selected|rollshowchar}}} {{charname=@{selected|character_name}}} {{roll=[[(1d20+@{selected|knowledge_geography}[MOD]+(@{selected|skill_condition})[CONDITION]+@{selected|rollmod_skill}[QUERY])*(ceil(@{selected|knowledge_geography_ranks}/100))]]}} {{shownotes=@{selected|rollnotes_skill}}} {{notes=@{selected|knowledge_geography_notes}}} {{conditionsflag=[[@{selected|skill_condition}]]}} {{conditions=@{selected|conditions_display}}} {{conditionsnote=@{selected|skill_condition_note}}} | Know History,@{selected|whispertype} &{template:pc} {{name=^{knowledge_history}}} {{type=skill}} {{showchar=@{selected|rollshowchar}}} {{charname=@{selected|character_name}}} {{roll=[[(1d20+@{selected|knowledge_history}[MOD]+(@{selected|skill_condition})[CONDITION]+@{selected|rollmod_skill}[QUERY])*(ceil(@{selected|knowledge_history_ranks}/100))]]}} {{shownotes=@{selected|rollnotes_skill}}} {{notes=@{selected|knowledge_history_notes}}} {{conditionsflag=[[@{selected|skill_condition}]]}} {{conditions=@{selected|conditions_display}}} {{conditionsnote=@{selected|skill_condition_note}}} | Know Local,@{selected|whispertype} &{template:pc} {{name=^{knowledge_local}}} {{type=skill}} {{showchar=@{selected|rollshowchar}}} {{charname=@{selected|character_name}}} {{roll=[[(1d20+@{selected|knowledge_local}[MOD]+(@{selected|skill_condition})[CONDITION]+@{selected|rollmod_skill}[QUERY])*(ceil(@{selected|knowledge_local_ranks}/100))]]}} {{shownotes=@{selected|rollnotes_skill}}} {{notes=@{selected|knowledge_local_notes}}} {{conditionsflag=[[@{selected|skill_condition}]]}} {{conditions=@{selected|conditions_display}}} {{conditionsnote=@{selected|skill_condition_note}}} | Know Nature,@{selected|whispertype} &{template:pc} {{name=^{knowledge_nature}}} {{type=skill}} {{showchar=@{selected|rollshowchar}}} {{charname=@{selected|character_name}}} {{roll=[[(1d20+@{selected|knowledge_nature}[MOD]+(@{selected|skill_condition})[CONDITION]+@{selected|rollmod_skill}[QUERY])*(ceil(@{selected|knowledge_nature_ranks}/100))]]}} {{shownotes=@{selected|rollnotes_skill}}} {{notes=@{selected|knowledge_nature_notes}}} {{conditionsflag=[[@{selected|skill_condition}]]}} {{conditions=@{selected|conditions_display}}} {{conditionsnote=@{selected|skill_condition_note}}} | Know Nobility,@{selected|whispertype} &{template:pc} {{name=^{knowledge_nobility}}} {{type=skill}} {{showchar=@{selected|rollshowchar}}} {{charname=@{selected|character_name}}} {{roll=[[(1d20+@{selected|knowledge_nobility}[MOD]+(@{selected|skill_condition})[CONDITION]+@{selected|rollmod_skill}[QUERY])*(ceil(@{selected|knowledge_nobility_ranks}/100))]]}} {{shownotes=@{selected|rollnotes_skill}}} {{notes=@{selected|knowledge_nobility_notes}}} {{conditionsflag=[[@{selected|skill_condition}]]}} {{conditions=@{selected|conditions_display}}} {{conditionsnote=@{selected|skill_condition_note}}} | Know Planes,@{selected|whispertype} &{template:pc} {{name=^{knowledge_planes}}} {{type=skill}} {{showchar=@{selected|rollshowchar}}} {{charname=@{selected|character_name}}} {{roll=[[(1d20+@{selected|knowledge_planes}[MOD]+(@{selected|skill_condition})[CONDITION]+@{selected|rollmod_skill}[QUERY])*(ceil(@{selected|knowledge_planes_ranks}/100))]]}} {{shownotes=@{selected|rollnotes_skill}}} {{notes=@{selected|knowledge_planes_notes}}} {{conditionsflag=[[@{selected|skill_condition}]]}} {{conditions=@{selected|conditions_display}}} {{conditionsnote=@{selected|skill_condition_note}}} | Know Religion,@{selected|whispertype} &{template:pc} {{name=^{knowledge_religion}}} {{type=skill}} {{showchar=@{selected|rollshowchar}}} {{charname=@{selected|character_name}}} {{roll=[[(1d20+@{selected|knowledge_religion}[MOD]+(@{selected|skill_condition})[CONDITION]+@{selected|rollmod_skill}[QUERY])*(ceil(@{selected|knowledge_religion_ranks}/100))]]}} {{shownotes=@{selected|rollnotes_skill}}} {{notes=@{selected|knowledge_religion_notes}}} {{conditionsflag=[[@{selected|skill_condition}]]}} {{conditions=@{selected|conditions_display}}} {{conditionsnote=@{selected|skill_condition_note}}} | Linguistics,@{selected|whispertype} &{template:pc} {{name=^{linguistics}}} {{type=skill}} {{showchar=@{selected|rollshowchar}}} {{charname=@{selected|character_name}}} {{roll=[[(1d20+@{selected|linguistics}[MOD]+(@{selected|skill_condition})[CONDITION]+@{selected|rollmod_skill}[QUERY])*(ceil(@{selected|linguistics_ranks}/100))]]}} {{shownotes=@{selected|rollnotes_skill}}} {{notes=@{selected|linguistics_notes}}} {{conditionsflag=[[@{selected|skill_condition}]]}} {{conditions=@{selected|conditions_display}}} {{conditionsnote=@{selected|skill_condition_note}}} | Perception,@{selected|whispertype} &{template:pc} {{name=^{perception}}} {{type=skill}} {{showchar=@{selected|rollshowchar}}} {{charname=@{selected|character_name}}} {{roll=[[1d20+@{selected|perception}[MOD]+(@{selected|skill_condition})[CONDITION]+@{selected|rollmod_skill}[QUERY]]]}} {{shownotes=@{selected|rollnotes_skill}}} {{notes=@{selected|perception_notes}}} {{conditionsflag=[[@{selected|skill_condition}]]}} {{conditions=@{selected|conditions_display}}} {{conditionsnote=@{selected|skill_condition_note} @{selected|perception_condition_note}}} | Perform,@{selected|whispertype} &{template:pc} {{name=^{perform}}} {{type=skill}} {{showchar=@{selected|rollshowchar}}} {{charname=@{selected|character_name}}} {{roll=[[1d20+@{selected|perform}[MOD]+(@{selected|skill_condition})[CONDITION]+@{selected|rollmod_skill}[QUERY]]]}} {{shownotes=@{selected|rollnotes_skill}}} {{notes=@{selected|perform_notes}}} {{conditionsflag=[[@{selected|skill_condition}]]}} {{conditions=@{selected|conditions_display}}} {{conditionsnote=@{selected|skill_condition_note}}} | Profession,@{selected|whispertype} &{template:pc} {{name=^{profession}}} {{type=skill}} {{showchar=@{selected|rollshowchar}}} {{charname=@{selected|character_name}}} {{roll=[[1d20+@{selected|profession}[MOD]+(@{selected|skill_condition})[CONDITION]+@{selected|rollmod_skill}[QUERY]]]}} {{shownotes=@{selected|rollnotes_skill}}} {{notes=@{selected|profession_notes}}} {{conditionsflag=[[@{selected|skill_condition}]]}} {{conditions=@{selected|conditions_display}}} {{conditionsnote=@{selected|skill_condition_note}}} | Ride,@{selected|whispertype} &{template:pc} {{name=^{ride}}} {{type=skill}} {{showchar=@{selected|rollshowchar}}} {{charname=@{selected|character_name}}} {{roll=[[1d20+@{selected|ride}[MOD]+(@{selected|skill_condition})[CONDITION]+@{selected|rollmod_skill}[QUERY]]]}} {{shownotes=@{selected|rollnotes_skill}}} {{notes=@{selected|ride_notes}}} {{conditionsflag=[[@{selected|skill_condition}]]}} {{conditions=@{selected|conditions_display}}} {{conditionsnote=@{selected|skill_condition_note}}} | Sense Motive,@{selected|whispertype} &{template:pc} {{name=^{sense_motive}}} {{type=skill}} {{showchar=@{selected|rollshowchar}}} {{charname=@{selected|character_name}}} {{roll=[[1d20+@{selected|sense_motive}[MOD]+(@{selected|skill_condition})[CONDITION]+@{selected|rollmod_skill}[QUERY]]]}} {{shownotes=@{selected|rollnotes_skill}}} {{notes=@{selected|sense_motive_notes}}} {{conditionsflag=[[@{selected|skill_condition}]]}} {{conditions=@{selected|conditions_display}}} {{conditionsnote=@{selected|skill_condition_note}}} | Sleight of Hand,@{selected|whispertype} &{template:pc} {{name=^{sleight_of_hand}}} {{type=skill}} {{showchar=@{selected|rollshowchar}}} {{charname=@{selected|character_name}}} {{roll=[[(1d20+@{selected|sleight_of_hand}[MOD]+(@{selected|skill_condition})[CONDITION]+@{selected|rollmod_skill}[QUERY])*(ceil(@{selected|sleight_of_hand_ranks}/100))]]}} {{shownotes=@{selected|rollnotes_skill}}} {{notes=@{selected|sleight_of_hand_notes}}} {{conditionsflag=[[@{selected|skill_condition}]]}} {{conditions=@{selected|conditions_display}}} {{conditionsnote=@{selected|skill_condition_note}}} | Spellcraft,@{selected|whispertype} &{template:pc} {{name=^{spellcraft}}} {{type=skill}} {{showchar=@{selected|rollshowchar}}} {{charname=@{selected|character_name}}} {{roll=[[(1d20+@{selected|spellcraft}[MOD]+(@{selected|skill_condition})[CONDITION]+@{selected|rollmod_skill}[QUERY])*(ceil(@{selected|spellcraft_ranks}/100))]]}} {{shownotes=@{selected|rollnotes_skill}}} {{notes=@{selected|spellcraft_notes}}} {{conditionsflag=[[@{selected|skill_condition}]]}} {{conditions=@{selected|conditions_display}}} {{conditionsnote=@{selected|skill_condition_note}}} | Stealth,@{selected|whispertype} &{template:pc} {{name=^{stealth}}} {{type=skill}} {{showchar=@{selected|rollshowchar}}} {{charname=@{selected|character_name}}} {{roll=[[1d20+@{selected|stealth}[MOD]+(@{selected|skill_condition})[CONDITION]+@{selected|rollmod_skill}[QUERY]]]}} {{shownotes=@{selected|rollnotes_skill}}} {{notes=@{selected|stealth_notes}}} {{conditionsflag=[[@{selected|skill_condition}]]}} {{conditions=@{selected|conditions_display}}} {{conditionsnote=@{selected|skill_condition_note}}} | Survival,@{selected|whispertype} &{template:pc} {{name=^{survival}}} {{type=skill}} {{showchar=@{selected|rollshowchar}}} {{charname=@{selected|character_name}}} {{roll=[[1d20+@{selected|survival}[MOD]+(@{selected|skill_condition})[CONDITION]+@{selected|rollmod_skill}[QUERY]]]}} {{shownotes=@{selected|rollnotes_skill}}} {{notes=@{selected|survival_notes}}} {{conditionsflag=[[@{selected|skill_condition}]]}} {{conditions=@{selected|conditions_display}}} {{conditionsnote=@{selected|skill_condition_note}}} | Swim,@{selected|whispertype} &{template:pc} {{name=^{swim}}} {{type=skill}} {{showchar=@{selected|rollshowchar}}} {{charname=@{selected|character_name}}} {{roll=[[1d20+@{selected|swim}[MOD]+(@{selected|skill_condition})[CONDITION]+@{selected|rollmod_skill}[QUERY]]]}} {{shownotes=@{selected|rollnotes_skill}}} {{notes=@{selected|swim_notes}}} {{conditionsflag=[[@{selected|skill_condition}]]}} {{conditions=@{selected|conditions_display}}} {{conditionsnote=@{selected|skill_condition_note}}} | Use Magic Device,@{selected|whispertype} &{template:pc} {{name=^{use_magic_device}}} {{type=skill}} {{showchar=@{selected|rollshowchar}}} {{charname=@{selected|character_name}}} {{roll=[[(1d20+@{selected|use_magic_device}[MOD]+(@{selected|skill_condition})[CONDITION]+@{selected|rollmod_skill}[QUERY])*(ceil(@{selected|use_magic_device_ranks}/100))]]}} {{shownotes=@{selected|rollnotes_skill}}} {{notes=@{selected|use_magic_device_notes}}} {{conditionsflag=[[@{selected|skill_condition}]]}} {{conditions=@{selected|conditions_display}}} {{conditionsnote=@{selected|skill_condition_note}}}}
February 06 (6 years ago)
keithcurtis
Forum Champion
Marketplace Creator
API Scripter

"Yer a wizard, Seph!"