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 .
×
Create a free account

Page Toolbar & Player Placement Query

Hi All, Just a quick question. I have not needed to split players onto different maps as yet, however the campaign I am working on most likely require players to be on different maps at times throughout the game. When moving a player from the current map to a different map what will that player see? Do they remain on the 'Player' map but be unable to interact? Do they see the map they have been moved to without moving the 'Player' tag across? Will I need to move the 'Player' tag across to the map to let them see, but also let the other players see? Thanks.
1523096176
Ziechael
Forum Champion
Sheet Author
API Scripter
Martin M. said: Do they see the map they have been moved to without moving the 'Player' tag across?  This one, it's the same as moving the ribbon but for only the player you move... you can move multiple players to other maps and even have them on the same one independent from the ribbon. The ribbon is essentially just a 'party' flag to move everyone at once. You will need to return them to the ribbon (drag their avatar back onto the ribbon) for them to 'rejoin' the party however.
Ziechael, I have one player that I just can't reunite with the ribbon.  The others can be split off and returned as normal.  Any idea what could cause that?
Thanks Ziechael, was hoping this would be the case.
1523106939
The Aaron
Pro
API Scripter
Valerie M. said: Ziechael, I have one player that I just can't reunite with the ribbon.  The others can be split off and returned as normal.  Any idea what could cause that? That's super wierd.  I could come take a look if you want?  Or I can offer you this ConsolidateParty script: on('ready',function(){     'use strict';     on('chat:message',function(msg){         if('api' === msg.type && msg.content.match(/^!consolidate-party/) && playerIsGM(msg.playerid) ){              Campaign().set({playerspecificpages:false});             sendChat('Consolidate Party',`/w gm <code>Party Consolidated</code>`);         }     }); }); Join all players to the ribbon: !consolidate-party
Aaron, do I need the players to be present to join them up again?  I can try the code next time we get together. We're on a break for a couple weeks.
1523112859
The Aaron
Pro
API Scripter
Nope, that will join them regardless. 
1523119239

Edited 1523119341
keithcurtis
Forum Champion
Marketplace Creator
API Scripter
The Aaron said: Or I can offer you this ConsolidateParty script: Yoink!
Great, thanks!