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

[SR] 5e Shadowrun Character sheet issues

I'm having huge issues with this sheet and cannot get spells to work properly. I suspect either I or my players have configured something poorly. Is there some conditional modifier or requirement that prevents them from working like the weapons? Those work fine.
1467345879

Edited 1495420543
Hi, Frodric . It might help determine exactly what the issue is if you could post the malfunctioning code output by one of the Sheet Roll Buttons . Check out Sheet Roll Buttons for instructions on how to acquire the macro code output by sheet buttons.
Thank for the reply, here is the code from a roll. @{Ulfhednar|gmonlyrolls}&{template:@{Ulfhednar|templatechoice}} {{shownotes=@{Ulfhednar|configshownotes}}} {{name=@{Ulfhednar|name}}} {{roll_header=Chill}} {{v1=Force}} {{v1_num=?{Force?|0}}} {{v2=Willpower}} {{v2_num=@{Ulfhednar|willpower}}} {{v3=Drain Attribute}} {{v3_num=@{Ulfhednar|drainfadeattribute}}} {{v4=Magic/Resonance}} {{v4_num=@{Ulfhednar|magicresonance}}} {{v5=Skill}} {{v5_num=@{Ulfhednar|spellsoftskillvalue}}} {{v6=Specialized}} {{v6_num=2}} {{v7=Spell Drain}} {{v7_num=FF-1}} {{v8=Misc}} {{v8_num=D}} {{v9=Drain Modifier}} {{v9_num=?{Drain Modifiers?|0}}} {{v10=Situational Modifier}} {{v10_num=?{Situational Modifiers?|0}}} {{woundpenalty=[[@{Ulfhednar|calcwoundmod}]]}} {{result1_label=Casting Success}} {{result1=[[(@{Ulfhednar|spellsoftskillvalue}+D+@{Ulfhednar|magicresonance}-@{Ulfhednar|calcwoundmod}+2+?{Situational Modifiers?|0})d6>5sk?{Force?|0}]]}} {{result2_label=Incoming Drain (min 2)}} {{result2=[[(?{Force?|0}+F-1)]]}} {{limit=?{Force?|0}}} {{result3_label=Drain Resisted}} {{result3=[[(@{Ulfhednar|willpower}+@{Ulfhednar|drainfadeattribute}+?{Drain Modifiers?|0})d6>5s]]}} {{description=Wolf}}
This calls up 3 modifier tables 1 for force one for drain one for situational, the entries for this roll were 6, -2, and 0
Frodric said: {{result1=[[(@{Ulfhednar|spellsoftskillvalue}+ D +@{Ulfhednar|magicresonance}-@{Ulfhednar|calcwoundmod}+2+?{Situational Modifiers?|0})d6>5sk?{Force?|0}]]}} {{result2=[[(?{Force?|0}+ F -1)]]}} Here are the issues; two broken inline rolls. I found the corresponding section within the sheet's HTML : <button type="roll" name="roll_spellroll" value="@{gmonlyrolls}&{template:@{templatechoice}}{{shownotes=@{configshownotes}}}{{name=@{name}}}{{roll_header=@{spellname}}}{{v1=Force}} {{v1_num=?{Force?|0}}}{{v2=Willpower}} {{v2_num=@{willpower}}}{{v3=Drain Attribute}} {{v3_num=@{drainfadeattribute}}} {{v4=Magic/Resonance}} {{v4_num=@{magicresonance}}} {{v5=Skill}} {{v5_num=@{spellsoftskillvalue}}} {{v6=Spell Drain}} {{v6_num=F@{spelldrain}}} {{v7=Misc}} {{v7_num=@{spellmisc}}} {{v8=Drain Modifier}} {{v8_num=?{Drain Modifiers?|0}}}{{v9=Situational Modifier}} {{v9_num=?{Situational Modifiers?|0}}} {{woundpenalty=[[@{calcwoundmod}]]}} {{result1_label=Casting Success}} {{result1=[[(@{spellsoftskillvalue}+ @{spellmisc} +@{magicresonance}-@{calcwoundmod}+?{Situational Modifiers?|0})d6>5sk?{Force?|0}]]}} {{result2_label=Incoming Drain (min 2)}} {{result2=[[(?{Force?|0}+ @{spelldrain} )]]}} {{result3_label=Drain Resisted}} {{limit=?{Force?|0}}}{{result3=[[(@{willpower}+@{drainfadeattribute}+?{Drain Modifiers?|0})d6>5s]]}} {{description=@{spelldesc}}}" title="Spell Roll" /> To fix this issue, you would locate the corresponding "spellmisc" and "spelldrain" fields for this spell and replace their contents with 0 (for no misc. modifier) and -1 (for F-1) accordingly.
ok I tried that for another spell using the proper codes but got nada @{Ulfhednar|gmonlyrolls}&{template:@{Ulfhednar|templatechoice}} {{shownotes=@{Ulfhednar|configshownotes}}} {{name=@{Ulfhednar|name}}} {{roll_header=Ice Spear}} {{v1=Force}} {{v1_num=?{Force?|0}}} {{v2=Willpower}} {{v2_num=@{Ulfhednar|willpower}}} {{v3=Drain Attribute}} {{v3_num=@{Ulfhednar|drainfadeattribute}}} {{v4=Magic/Resonance}} {{v4_num=@{Ulfhednar|magicresonance}}} {{v5=Skill}} {{v5_num=@{Ulfhednar|spellsoftskillvalue}}} {{v6=Specialized}} {{v6_num=2}} {{v7=Spell Drain}} {{v7_num=FF-3}} {{v8=Misc}} {{v8_num=I}} {{v9=Drain Modifier}} {{v9_num=?{Drain Modifiers?|0}}} {{v10=Situational Modifier}} {{v10_num=?{Situational Modifiers?|0}}} {{woundpenalty=[[@{Ulfhednar|calcwoundmod}]]}} {{result1_label=Casting Success}} {{result1=[[(@{Ulfhednar|spellsoftskillvalue}+I+@{Ulfhednar|magicresonance}-@{Ulfhednar|calcwoundmod}+2+?{Situational Modifiers?|0})d6>5sk?{Force?|0}]]}} {{result2_label=Incoming Drain (min 2)}} {{result2=[[(?{Force?|0}+F-3)]]}} {{limit=?{Force?|0}}} {{result3_label=Drain Resisted}} {{result3=[[(@{Ulfhednar|willpower}+@{Ulfhednar|drainfadeattribute}+?{Drain Modifiers?|0})d6>5s]]}} {{description=Wolf}}
I see a similar issue; it looks like this spell's "spellmisc" field is set to "I", and its "spelldrain" field is set to "F-3". To fix this particular spell, you'll need to find the fields on your sheet that have "I" and "F-3" written in them, and replace them with numbers.
Ahhh. Perfect. So it was a configuration issue after all, thanks so much. I even got the rituals to cast. Thank you for your help.
You're very welcome; happy rolling!
1469049489

Edited 1469049754
Hello. I have just started a Shadowrun 5E campaing and one of my players has Enhanced Articulation which raises his Physical Limit. Is there a way I can change the sheet to increase on of the limits? I cannot find any such way so far.