Turns out (while researching team creation) the profile ext id is just the aime id. After creating a team a profile discovery request is immediately issued with the "profile id" in the field that holds the aime id during initial profile load.
14 lines
342 B
TypeScript
14 lines
342 B
TypeScript
import { RequestCode } from "./_defs";
|
|
import { LoadTeamRequest } from "../request/loadTeam";
|
|
|
|
loadTeam.msgCode = 0x0077 as RequestCode;
|
|
loadTeam.msgLen = 0x0010;
|
|
|
|
export function loadTeam(buf: Buffer): LoadTeamRequest {
|
|
return {
|
|
type: "load_team_req",
|
|
aimeId: buf.readUInt32LE(0x0004),
|
|
teamId: buf.readUInt32LE(0x0008),
|
|
};
|
|
}
|