mirror of
https://github.com/billsonnn/nitro-renderer.git
synced 2024-11-26 17:30:52 +01:00
Merge branch 'oobjectt-composer-mysterybox-trophy'
This commit is contained in:
commit
07ce46215e
File diff suppressed because one or more lines are too long
@ -197,6 +197,7 @@ export class OutgoingHeader
|
|||||||
public static ROOM_FILTER_WORDS = 1911;
|
public static ROOM_FILTER_WORDS = 1911;
|
||||||
public static ROOM_FILTER_WORDS_MODIFY = 3001;
|
public static ROOM_FILTER_WORDS_MODIFY = 3001;
|
||||||
public static MYSTERYBOXWAITINGCANCELEDMESSAGE = 2012;
|
public static MYSTERYBOXWAITINGCANCELEDMESSAGE = 2012;
|
||||||
|
public static MYSTERYBOX_OPEN_TROPHY = 3074;
|
||||||
public static SECURITY_MACHINE = 2490;
|
public static SECURITY_MACHINE = 2490;
|
||||||
public static SECURITY_TICKET = 2419;
|
public static SECURITY_TICKET = 2419;
|
||||||
public static TRADE = 1481;
|
public static TRADE = 1481;
|
||||||
|
@ -0,0 +1,21 @@
|
|||||||
|
import { IMessageComposer } from '../../../../../../api';
|
||||||
|
|
||||||
|
export class OpenMysteryTrophyMessageComposer implements IMessageComposer<ConstructorParameters<typeof OpenMysteryTrophyMessageComposer>>
|
||||||
|
{
|
||||||
|
private _data: ConstructorParameters<typeof OpenMysteryTrophyMessageComposer>;
|
||||||
|
|
||||||
|
constructor(objectId: number, text: string)
|
||||||
|
{
|
||||||
|
this._data = [objectId, text];
|
||||||
|
}
|
||||||
|
|
||||||
|
public getMessageArray()
|
||||||
|
{
|
||||||
|
return this._data;
|
||||||
|
}
|
||||||
|
|
||||||
|
public dispose(): void
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
@ -9,6 +9,7 @@ export * from './FurniturePlacePaintComposer';
|
|||||||
export * from './FurniturePostItPlaceComposer';
|
export * from './FurniturePostItPlaceComposer';
|
||||||
export * from './logic';
|
export * from './logic';
|
||||||
export * from './mannequin';
|
export * from './mannequin';
|
||||||
|
export * from './OpenMysteryTrophyMessageComposer';
|
||||||
export * from './presents';
|
export * from './presents';
|
||||||
export * from './toner';
|
export * from './toner';
|
||||||
export * from './wall';
|
export * from './wall';
|
||||||
|
Loading…
Reference in New Issue
Block a user