kahoot.js-latest
Version:
Answer, Join Kahoot Quizzes with nodejs
25 lines (22 loc) • 706 B
JavaScript
/**
* @fileinfo This is the podium module
* - Loads the Podium event
*/
module.exports = function(){
/**
* podium - Handles the Podium event
* @param {Object} message The websocket message
*/
this.handlers.podium = (message)=>{
if(message.channel === "/service/player" && message.data && message.data.id === 13){
/**
* Emitted at the end of the game (After "QuizEnd")
*
* @event Client#Podium
* @type {Object}
* @property {String} podiumMedalType A string about the podium medal. "gold", "silver", "bronze" are possible values. May be nonexistent or null.
*/
this._emit("Podium",JSON.parse(message.data.content));
}
};
};