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 "D00Lite"

From Roll20 Wiki

Jump to: navigation, search
(D00lite Games)
m (category fix)
(3 intermediate revisions by 3 users not shown)
Line 2: Line 2:
  
 
The d00Lite system (BareBones Fantasy, Covert Ops) 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:
 
The d00Lite system (BareBones Fantasy, Covert Ops) 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:
 
 
<pre data-language="javascript">
 
<pre data-language="javascript">
 
/r 1d100 -1
 
/r 1d100 -1
 
</pre>
 
</pre>
 
 
You can make it a bit more useful by including a pop up asking for a modifier to apply to the roll. Your GM will let you know if there are an modifiers to your roll. The result is then final.  
 
You can make it a bit more useful by including a pop up asking for a modifier to apply to the roll. Your GM will let you know if there are an modifiers to your roll. The result is then final.  
 
 
<pre data-language="javascript">
 
<pre data-language="javascript">
 
/r (1d100) + ?{Mod|0} -1
 
/r (1d100) + ?{Mod|0} -1
Line 18: Line 15:
 
</pre>
 
</pre>
 
Example output:<br>
 
Example output:<br>
Oink Meow rolls a 33
+
Bilbo Baggins rolls a 33
  
 
=== Macro for Initiative ===
 
=== Macro for Initiative ===
Line 53: Line 50:
 
* BareBones Fantasy Role Playing Game
 
* BareBones Fantasy Role Playing Game
 
* Covert Ops, a Barebones Role-Playing game of espionage and paramilitary adventure
 
* Covert Ops, a Barebones Role-Playing game of espionage and paramilitary adventure
 +
* FrontierSpace, A roleplaying game of science fiction action and adventure
  
[[Category:Guides]]
+
[[Category:Macros]]
 
[[Category:Games]]
 
[[Category:Games]]

Revision as of 09:58, 29 January 2021

Contents

Macro for a D00 Die Roll

The d00Lite system (BareBones Fantasy, Covert Ops) 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 a modifier to apply to the roll. Your GM will let you know if there are an modifiers to your roll. The result is then final.

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

The same as an Inline Roll.

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

Example output:
Bilbo Baggins rolls a 33

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} ]]

Select Token and Click INIT

This macro lets you select a token, and then click on INIT button in the macro bar. It also adds the tokens initiative to the Tracker.
Requirements: Attribute called "INIT". Make sure you have selected "Show as a Token Action?".

/em @{selected|token_name} INIT = [[@{selected|INIT}d10k1 &{tracker}]]

Output Example: Tree Imp INIT: 5

Note: If you are using Rollable Tables to display different tokens for the same Character the Tracker will display the picture along with the initiative roll. For instance, it might be important that 3 hobgoblins act on their own initiative.

Creating A Custom Deck for Bones

In order to easily track Bones in Covert Ops, 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.

D00Lite Games

There are currently two released games that use the D00Lite engine.

  • BareBones Fantasy Role Playing Game
  • Covert Ops, a Barebones Role-Playing game of espionage and paramilitary adventure
  • FrontierSpace, A roleplaying game of science fiction action and adventure