minime/src/idz/encoder/loadStocker.ts
2019-11-06 17:28:29 -05:00

11 lines
247 B
TypeScript

import { LoadStockerResponse } from "../response/loadStocker";
export function loadStocker(res: LoadStockerResponse) {
const buf = Buffer.alloc(0x00a0);
buf.writeInt16LE(0x00a8, 0x0000);
buf.writeInt8(res.status, 0x0002);
return buf;
}