ggejs
Version:
A powerful JavaScript library for interacting with the server of Goodgame Empire: Four Kingdoms
12 lines • 372 B
JavaScript
module.exports.name = "core_avl";
/**
* @param {Socket} socket
* @param {string} name
* @param {string} password
*/
module.exports.execute = function (socket, name, password) {
const CoreC2SVerifyLoginDataVO = {
getCmdId: "core_avl", params: {LN: name, P: password}
}
require('../data').sendCommandVO(socket, CoreC2SVerifyLoginDataVO);
}