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 "Using Roll20 while Playing In-Person"

From Roll20 Wiki

Jump to: navigation, search
m (Hide the UI)
m (Add additional computers and/or a TV/Monitor)
Line 26: Line 26:
 
::'''b.''' '''Each player needs to control their own character.'''  
 
::'''b.''' '''Each player needs to control their own character.'''  
 
:::Option 1: Use multiple computers with each player logged in separately. Not much different than playing online, but you still get the face-to-face interaction.
 
:::Option 1: Use multiple computers with each player logged in separately. Not much different than playing online, but you still get the face-to-face interaction.
:::Option 2: Use a player's computer with or without an additional TV/Monitor, along with a very handy API script([https://app.roll20.net/account/supporter Pro Level]) authored by [https://app.roll20.net/users/48576 SkyCaptainVIII]
+
:::Option 2: Use a player's computer with or without an additional TV/Monitor, and install an API script ([https://app.roll20.net/account/supporter Pro Level])
::::[https://app.roll20.net/forum/permalink/3472238/ Face2Face Dynamic Lighting Helper]  
+
 +
::::[https://app.roll20.net/forum/permalink/3472238/ Face2Face Dynamic Lighting Helper] authored by [https://app.roll20.net/users/48576 SkyCaptainVIII]  
 
:::<div style="background-color:lightgray;padding:10px;width:80%;">''"The script will remove the controlledby setting on the character sheets specified in the script which will show vision only for the token at the top of the turn order. Unless it is an npc or other token or custom item."''</div>
 
:::<div style="background-color:lightgray;padding:10px;width:80%;">''"The script will remove the controlledby setting on the character sheets specified in the script which will show vision only for the token at the top of the turn order. Unless it is an npc or other token or custom item."''</div>
 +
 +
::::[https://app.roll20.net/forum/permalink/4128376/ Observer v0.1.1] authored by [https://app.roll20.net/users/104025 The Aaron]
 +
:::<div style="background-color:lightgray;padding:10px;width:80%;">''"I threw this together to allow GMs to designate a Player (probably an alternate account) to be an Observer.  Observers are kept on the ControlledBy list for all characters that have something else on that list (PCs)."''</div>
 
<br />
 
<br />
  

Revision as of 06:28, 18 October 2016

This page will offer tips and suggestions for using Roll20 to enhance your in-person game play. Please add additional tips and update this page as needed.

Use Roll20's VTT at your In-person gaming table

Roll20 offers many features for GM's and players. It's only natural to want to include them at our real-world gaming tables. Here are some tips and suggestions to help enhance your real-world table.

Add additional computers and/or a TV/Monitor

A common setup to enhance your home game with Roll20 is to add computers to your tabletop game. This typically consists of using two or more computers. One for the GM and at least one other computer for the player(s). You may also want to add a TV/Monitor as well.

1. GM Computer: Use one computer for the GM logged into the GM's account. Like a "GM's screen", this will be for the GM's eyes only.

Use Roll20 to quickly bring up NPC, monster, or character stats. Track initiative and turn order for combat. Roll dice and use custom macros to resolve various scenarios of your game. The list goes on. Including a GM's computer with Roll20 access may be all you require, however adding additional computers for players offers significantly more options.
Example: DIY Gaming table
Example: DIY Gaming table

2. Player Computer: Add additional screen(s) for the player's.

The best method for your group will depend on what you wish to accomplish.
a. Just show the player's information. ie Maps, images, handouts, initiative, dice rolls, etc.
Option 1: Add another computer and log into the game as a player. Just remember, all players will see what the logged-in player's character sees. You may want to create a "dummy" account that has permissions set to control/edit all the other PC's or just a single character that represents the party.
Option 2: Add a TV/Monitor to the player's computer. Connect to a 2nd viewing source using the appropriate cables, or connect wirelessly using Chromcast or similar device. You may want to include a wireless mouse and keyboard as well for convenience.


Some people have even made gaming tables that include a TV/Monitor as the actual tabletop.
Showing off my custom game table
TV + Roll20 = Awesome Sauce
Option 3: You can connect a TV/Monitor to the GM's computer and use a separate browser window/tab for the player account and send that view to the second screen.
b. Each player needs to control their own character.
Option 1: Use multiple computers with each player logged in separately. Not much different than playing online, but you still get the face-to-face interaction.
Option 2: Use a player's computer with or without an additional TV/Monitor, and install an API script (Pro Level)
Face2Face Dynamic Lighting Helper authored by SkyCaptainVIII
"The script will remove the controlledby setting on the character sheets specified in the script which will show vision only for the token at the top of the turn order. Unless it is an npc or other token or custom item."
Observer v0.1.1 authored by The Aaron
"I threw this together to allow GMs to designate a Player (probably an alternate account) to be an Observer. Observers are kept on the ControlledBy list for all characters that have something else on that list (PCs)."


Hide the UI

If you add a TV/Monitor to your game, you may want to hide the User Interface on the player's screen. You can create a bookmarklet (javascript used to temporarily alter a web page's appearance) to hide the UI.

example;
Create a bookmark in your browser and paste the code below into the URL field. To hide the Roll20 UI, simply click on the bookmark once the Roll20 editor has loaded. Refreshing the editor will restore the UI.
javascript:(function(){$("#zoomslider").css("display","none");$("#floatingtoolbar").css("display","none");$("#sidebarcontrol").css("display","none").click();$("#playerzone").css("display","none");$("#initiativewindow").parent().css("left","-10000px");$("#page-toolbar").css("display","none")})();
Adjust the parameters as needed. For example you could remove elements from the bookmarklet code above for sections of the UI you may not want hidden.