UNPKG

ggejs

Version:

A powerful JavaScript library for interacting with the server of Goodgame Empire: Four Kingdoms

11 lines 314 B
module.exports.name = "wsp"; /** * @param {Socket} socket * @param {string} playerName */ module.exports.execute = function (socket, playerName) { const C2SSearchPlayerVO = { getCmdId: "wsp", params: {PN: playerName} } require('../data').sendCommandVO(socket, C2SSearchPlayerVO); }