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 .
×

3.5 spell macro help for small change

1638046882

Edited 1638046930
so i have a macro fully written out it should roll 1d4&nbsp; per two levels max of 5d4 the issue i'm having is as a level 3 caster its rolling two dice instead of 1 is there a way to fix it current code below made bold where i'm hoping the issue is &amp;{template:DnD35StdRoll} {{spellflag=true}} {{name= @{character_name} casts [Frost Breath]( <a href="https://dndtools.net/spells/spell-compendium--86/frost-breath--4540/" rel="nofollow">https://dndtools.net/spells/spell-compendium--86/frost-breath--4540/</a> )}} {{School:=Evocation }} {{Level:=2}} {Compnts:=V,S,M}} {{Casting Time:= 1 std action}} {{Range:= 30ft}} {{Target:= (Creature) }} {{Area:= Cone}} {{Duration:= Instantaneous}} {{Saving Throw:= Ref for Half DC [[ @{spelldc2} + @{sf-evocation} ]]}} {{Spell Resist.:= Yes }} {{ Caster level check: = [[ 1d20+@{casterlevel}+@{spellpen} ]] vs spell resistance.}} {{compcheck= Conc: [[ {1d20 + [[ @{concentration} ]] }&gt;?{Concentration DC=15+Spell Level or 10+Damage Received|0} ]] }} {{succeedcheck=Success! She casts her spell!}} {{failcheck=She fails :( }} {{damage1=[[([[{@{arcanecasterlevel}/2,5}kl1]])d4]]}}&nbsp; {{notes= Giving a forceful exhale across your cupped hand, your breath shoots forth tinged with frost and crystals of ice. You breathe a cone of intense cold at your foes. The spell deals 1d4 points of cold damage per two caster levels (maximum 5d4). In addition, all creatures damaged by the frost breath that fail their Reflex save are dazed for 1 round by the sudden shock of cold. Material Component: Three drops of water or fragments of ice (which are held in a cupped palm and blown toward the target). }} sheet i am using is D&amp;D3.5e Character Sheet v2. 7.9 01/07/19 by Diana P.
1638181810
Ziechael
Forum Champion
Sheet Author
API Scripter
You just need to use the 'floor' command: {{damage1=[[([[{ floor(@{arcanecasterlevel}/2) ,5}kl1]])d4]]}}
Thank you i just use macro helpers and know how to make small changes for some things worked perfect