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

error

I have a character in a game named "Arcane" with all the macros for arcane spells. I have another macro that lists a lists of spells you can click on to cast the spells off of the "Arcane" character. I made them buttons like this:  [Magic Missile](~{Arcane|MagicMissile})  The buttons work, they run the macro but there is always a line in chat like this: No character was found for '{Arcane' What am I doing wrong? Magic Missile Macro: &{template:default} {{name=@{selected|token_name} casts Magic Missile}} {{duration:=1 Turn}} {{range: =150 '}} {{effect: =[[[[(floor(@{selected|level}/5)*2+1)]]d6+[[(floor(@{selected|level}/5)*2+1)]]]] damage}} {{ Description: =This spell conjures a glowing dart of energy that the caster may choose to shoot at a visible target within range. %NEWLINE% ▶ Hit: The missile hits unerringly (no attack roll or saving throw is required). %NEWLINE% ▶ Damage: The missile inflicts 1d6+1damage.  %NEWLINE% ▶ Higher level casters: May conjure more missiles: two additional missiles are conjured per five experience levels the caster has gained (i.e. three missiles at 6th–10th level, five missiles at 11th–15th level, etc.). Multiple missiles may be directed at a single target.}} {{Notes: =}} /fx missile-holy @{selected|token_id} @{target|Target of spell|token_id} Spell Book Macro: /w @{selected|character_name} &{template:default} {{name=**@{selected|token_name}'s glorious spell selection**}}  {{0 Level=[Cantrips](`#cantrips)}} {{1st Level=[Detect Magic](~Arcane|DetMag) [Magic Missile](~{Arcane|MagicMissile}) [Read Magic](~Arcane|ReadMag)}} {{2nd Level=[Phantasmal Force](~Arcane|PhantForce) [Web](~Arcane|Web)}} {{3rd Level = [Fireball](~Arcane|Fireball) }} {{Special=[Wand of Cold](~Arcane|wand-of-cold) [Breath Weapon](~Arcane|Breath)}}
When using an Ability command in a button, the format changes slightly from an Ability call  by removing the braces: %{Arcane|ability_call} becomes [Button Name](~Arcane|ability_call) not [Button Name](~ { Arcane|ability_call } )
Thanks bro!  That squared it up.