Merge branch 'oobjectt-composer-get-talenttrack-level'

This commit is contained in:
dank074 2023-01-03 02:42:18 -06:00
commit 556b836fca
4 changed files with 25 additions and 1 deletions

File diff suppressed because one or more lines are too long

View File

@ -386,6 +386,7 @@ export class OutgoingHeader
public static SET_TARGETTED_OFFER_STATE = 2041;
public static SHOP_TARGETED_OFFER_VIEWED = 3483;
public static HELPER_TALENT_TRACK = 196;
public static TALENT_TRACK_GET_LEVEL = 2127;
public static FORWARD_TO_A_COMPETITION_ROOM = 172;
public static FORWARD_TO_A_SUBMITTABLE_ROOM = 1450;
public static FORWARD_TO_RANDOM_COMPETITION_ROOM = 865;

View File

@ -0,0 +1,21 @@
import { IMessageComposer } from '../../../../../api';
export class GetTalentTrackLevelMessageComposer implements IMessageComposer<ConstructorParameters<typeof GetTalentTrackLevelMessageComposer>>
{
private _data: ConstructorParameters<typeof GetTalentTrackLevelMessageComposer>;
constructor(name: string)
{
this._data = [name];
}
public getMessageArray()
{
return this._data;
}
public dispose(): void
{
return;
}
}

View File

@ -1 +1,2 @@
export * from './GetTalentTrackLevelMessageComposer';
export * from './TalentTrackComposer';