When this is emitted, we recommend saving the player's UID to handle the kick feature gracefully.
Automatically sent when a user connects using socket.connect().
socket.on('connected', data => {
// Do stuff to set up the game, like hiding host only buttons
if(sessionStorage.getItem('uid') == uid) {
if(!document.getElementsByClassName('hostOnly')) return
for(const el of document.getElementsByClassName('hostOnly')){
el.style.display = 'inline-block'
}
}
sessionStorage.setItem('uid', data.user.uid)
})
Parameters
Name
Type
About
data
Object
Object with game and user info. See structure below.
The modes with one question will return the card content as a string. The ones with more than one will return an object, where opt1 is the first option and opt2 is the second.
socket.on('players', data => {
// show your player list
})
Parameters
Name
Type
About
data
Array
See structure below.
{
id:"uid",
name:"User",
vote:0
}
Kicking a User
socket.on('removed', (id) => {
if(id == /* get saved uid from start_data */) // change the page
}
Additional Word Wreck Events
Since Word Wreck has more components to it, it has a few extra events.
Vote
This will emit when everyone has submitted an answer to vote on.
Do not confuse this with votes for the other modes. Word Wreck involves 2 components to a round, with the 2nd being voting. This is for this 2nd round, not to get votes.