Character Vault
Any Concept / Any System
Compendium
Your System Come To Life
Roll20 for Android
Streamlined for your Tablet
Roll20 for iPad
Streamlined for your Tablet

Personal tools

Difference between revisions of "Covert Ops"

From Roll20 Wiki

Jump to: navigation, search
(Macro for a D00 Die Roll)
m
 
(6 intermediate revisions by 3 users not shown)
Line 1: Line 1:
[[Category:Guides]]
+
{{revdate}}
 +
 
 
=== Macro for a D00 Die Roll ===
 
=== Macro for a D00 Die Roll ===
  
 
Covert Ops is utilizes the D00lite rule engine that uses rolls of 0-99 instead of the usual D100 results of 1-100. This means you need to create a simple macro to roll this properly:
 
Covert Ops is utilizes the D00lite rule engine that uses rolls of 0-99 instead of the usual D100 results of 1-100. This means you need to create a simple macro to roll this properly:
  
<div class='diceroller'>
+
<pre data-language="javascript">
 
/r 1d100 -1
 
/r 1d100 -1
</div>
+
</pre>
  
 
You can make it a bit more useful by including a pop up asking for the modifier to apply to the roll. The result is then final.  
 
You can make it a bit more useful by including a pop up asking for the modifier to apply to the roll. The result is then final.  
  
<div class='diceroller'>
+
<pre data-language="javascript">
 
/r (1d100) + ?{Mod|0} -1
 
/r (1d100) + ?{Mod|0} -1
</div>
+
</pre>
  
 
The same as an Inline Roll.
 
The same as an Inline Roll.
 
+
<pre data-language="javascript">
<div class='diceroller'>
+
 
/em rolls a [[1d100 + ?{Mod|0} -1]]
 
/em rolls a [[1d100 + ?{Mod|0} -1]]
</div>
+
</pre>
  
 
=== Macro for Initiative ===
 
=== Macro for Initiative ===
Line 24: Line 24:
 
Initiative uses a "Roll number of dice, keep highest" mechanic. This macro will open a pop up window and ask you to input your initiative value. The result will be added to the turn tracker for the currently selected token.
 
Initiative uses a "Roll number of dice, keep highest" mechanic. This macro will open a pop up window and ask you to input your initiative value. The result will be added to the turn tracker for the currently selected token.
  
 
+
<pre data-language="javascript">
 
/r ?{Initiative}d10k1 &{tracker}
 
/r ?{Initiative}d10k1 &{tracker}
 
+
</pre>
  
 
The same as an inline roll:
 
The same as an inline roll:
  
 
+
<pre data-language="javascript">
 
/em rolls initiative [[?{Initiative}d10k1 &{tracker} ]]
 
/em rolls initiative [[?{Initiative}d10k1 &{tracker} ]]
 +
</pre>
  
 +
=== Creating A Custom Deck for Bones===
  
 +
# In order to easily track Bones, you can create a custom card deck ({{Collections}}-tab, "Add" button).
 +
# Pick an image to use as the card background and upload it, and then create a card.
 +
# Upload an image to use as the card front.
 +
# Set "Cards in deck are infinite." Shuffle the deck once and your basic bones deck is complete.
  
 
+
[[Category:Macros]]
=== Creating A Custom Deck for Bones===
+
[[Category:Games]]
 
+
In order to easily track Bones, you can create a custom card deck (decks and tables tab, "Add" button). Pick an image to use as the card background and upload it, and then create a card. Upload an image to use as the card front. Set "Cards in deck are infinite." Shuffle the deck once and your basic bones deck is complete.
+

Latest revision as of 15:14, 23 October 2021

[edit] Macro for a D00 Die Roll

Covert Ops is utilizes the D00lite rule engine that uses rolls of 0-99 instead of the usual D100 results of 1-100. This means you need to create a simple macro to roll this properly:

/r 1d100 -1

You can make it a bit more useful by including a pop up asking for the modifier to apply to the roll. The result is then final.

/r (1d100) + ?{Mod|0} -1

The same as an Inline Roll.

/em rolls a [[1d100 + ?{Mod|0} -1]]

[edit] Macro for Initiative

Initiative uses a "Roll number of dice, keep highest" mechanic. This macro will open a pop up window and ask you to input your initiative value. The result will be added to the turn tracker for the currently selected token.

/r ?{Initiative}d10k1 &{tracker}

The same as an inline roll:

/em rolls initiative [[?{Initiative}d10k1 &{tracker} ]]

[edit] Creating A Custom Deck for Bones

  1. In order to easily track Bones, you can create a custom card deck (l Collections-tab, "Add" button).
  2. Pick an image to use as the card background and upload it, and then create a card.
  3. Upload an image to use as the card front.
  4. Set "Cards in deck are infinite." Shuffle the deck once and your basic bones deck is complete.