The Secret Key to Sharing Your Island
verse-library
// 6. Set your budget and start date.
// 7. Click Submit.
// Done! Now wait for approval.
Submit<public>(Agent: agent): void
Submits an event for `Agent`.
// 6. Set your budget and start date.
// 7. Click Submit.
// Done! Now wait for approval.
OnAgentEntered(Agent:agent):void= {
# We take the 'Agent' (the player) and tell the Analytics device to record it.
# It's like handing the bouncer the player's ID card.
AnalyticsRef.Submit(Agent)
}
}
# Submit round analytics for each player.
SubmitRoundAnalytics(Players:[]player):void=
for (Player : Players, AnalyticsDevice := RoundAnalytics[GetRound[]]):
AnalyticsDevice.Submit(Player)
# Play the cinematic lineup and player intros based on the number of players.
PlayCinematicLineup(Players:[]agent)<suspends>:void=