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

How to add extreme success , failure, solid success and regular success on call of chtullu macro

Can someone know if this can be done using macros ? 
1643152066
timmaugh
Roll20 Production Team
API Scripter
Not everyone is familiar with those mechanics. Can you explain how they would work, and then we could point you in the right direction?
The official CoC 7th Edition character sheet has them built in as part of the rolls when you select the action via the sheet. If you have Verbose switched on it will always do it. To @timmaugh 's question. CoC is a % based roll low system. A "regular" success is achieved by rolling equal to or below your skill level. A Hard success is achieved by rolling equal to or below HALF your skill level. An Extreme success is achieved by rolling equal to or below ONE FIFTH of your skill level. Here's the syntax generated by a combat roll by a PC with Verbose enabled. @{Alexander MacRae|roll_whisper} &{template:callofcthulhu} {{name=@{Alexander MacRae|character_name}}} {{title=brawl}} @{Alexander MacRae|roll_option} {{roll_target=[[floor(30/@{Alexander MacRae|dice_toggle}}} {{roll_half=[[floor(30/2)]]}} {{roll_fifth=[[floor(30/5)]]}} {{roll_fifth_1=[[floor(30/5)+1]]}} {{target_tens=[[floor(30/10)]]}} {{target_digits=[[30%10]]}} {{target_tens_2=[[floor((30/2)/10)]]}} {{target_digits_2=[[floor((30/2))%10]]}} {{target_tens_5=[[floor((30/5)/10)]]}} {{target_digits_5=[[(floor(30/5))%10]]}} {{weapon_name=Fighting}} {{weapon_damage=[[1d3 + @{Alexander MacRae|damage_bonus}]]}} {{weapon_damage_extreme=[[3 + ]]}} {{weapon_range=}} {{weapon_attacks=1}} {{text=}} {{roll_bonus=[@{Alexander MacRae|translation_bonuspenalty}](~@{Alexander MacRae|character_id}|bonus)}}
1643205526
timmaugh
Roll20 Production Team
API Scripter
BSmith, does that cover what you're looking for?
Yes, I used this roll. Thanks everybody