So basically, what I’m asking for is a panel that only the host can access, and it activates the moment the game starts. Not when they click a button. Help.
1 Like
Do you mean like an admin panel? like to control game modes/power-ups?
Jhan: Use an overlay and set it to “Active on game start”. Make sure it is set to player scope only.
Here is a solution from another topic:
place a lifecycle device and set its event to game start
place an overlay device which will be your admin menu
set the overlays visibility scope to player
set it to be not active on game start
wire the lifecycle to the overlay
lifecycle (game starts) —overlay(show overlay), this makes the overlay appear for the host only
inside the overlay, use button device (or call to actions in a pop-up if you have Gimkit season ticket) to trigger the commands
Grant Money Command:
place a button in your admin overlay and label it “grant money”
place an item granter device and set it to grant cash with your amount you choose
wire the button to the item granter
button (button Pressed) —item granter (grant item), the item will be granted only to the player who pressed the button (the host)
More Speed COmmand:
place a button in your admin overlay and label it “more speed”
place a speed modifier device and set the speed to what you want (2 for double speed)
wire the button to the speed modifier
button(button Pressed)—speed modifier(set player to configured speed)
End Game Command:
place button in your admin overlay and label it “end Game”
place an end Game device
button (button Pressed)—end game device (end Game)
3 Likes
Make sure to click the solution box on Nagi’s reply if it answered your question.