Send Vote
Allows you send votes to a server as a player.
Overview
Methods
sendVote()
sendVote()const util = require('minecraft-server-util');
util.sendVote('localhost', 8192, {
token: '', // the token configured in the server plugin
username: 'PassTheMayo',
serviceName: 'my-application',
uuid: '85e5f06e-ff89-4c11-8050-329e8fdc29de', // player UUID, recommended but optional
timestamp: Date.now(), // current time
timeout: 1000 * 5 // timeout in milliseconds
})
.catch((error) => console.error(error));Last updated