Files
djhackersdev_minime/src/idz/encoder/createTeam.ts
T
2019-11-06 17:28:29 -05:00

12 lines
297 B
TypeScript

import { CreateTeamResponse } from "../response/createTeam";
export function createTeam(res: CreateTeamResponse): Buffer {
const buf = Buffer.alloc(0x0010);
buf.writeUInt16LE(0x0072, 0x0000);
buf.writeUInt32LE(res.status, 0x0004);
buf.writeUInt32LE(res.teamId, 0x0008);
return buf;
}