#28 - RentableSpaceRentFailedMessageEvent added

This commit is contained in:
oobjectt 2022-12-25 20:43:25 +01:00
parent 26741b78a7
commit 14831fb6bf
6 changed files with 48 additions and 1 deletions

File diff suppressed because one or more lines are too long

View File

@ -414,4 +414,5 @@ export class IncomingHeader
public static SHOW_ENFORCE_ROOM_CATEGORY = 3896;
public static CUSTOM_USER_NOTIFICATION = 909;
public static NEW_USER_EXPERIENCE_GIFT_OFFER = 3575;
public static RENTABLE_SPACE_RENT_FAILED = 1868;
}

View File

@ -0,0 +1,16 @@
import { IMessageEvent } from '../../../../../../api';
import { MessageEvent } from '../../../../../../events';
import { RentableSpaceRentFailedMessageParser } from '../../../parser';
export class RentableSpaceRentFailedMessageEvent extends MessageEvent implements IMessageEvent
{
constructor(callBack: Function)
{
super(callBack, RentableSpaceRentFailedMessageParser);
}
public getParser(): RentableSpaceRentFailedMessageParser
{
return this.parser as RentableSpaceRentFailedMessageParser;
}
}

View File

@ -10,6 +10,7 @@ export * from './LoveLockFurniFinishedEvent';
export * from './LoveLockFurniFriendConfirmedEvent';
export * from './LoveLockFurniStartEvent';
export * from './OneWayDoorStatusMessageEvent';
export * from './RentableSpaceRentFailedMessageEvent';
export * from './RequestSpamWallPostItMessageEvent';
export * from './RoomDimmerPresetsMessageEvent';
export * from './wall';

View File

@ -0,0 +1,25 @@
import { IMessageDataWrapper, IMessageParser } from '../../../../../../api';
export class RentableSpaceRentFailedMessageParser implements IMessageParser
{
private _reason: number;
public flush(): boolean
{
return true;
}
public parse(wrapper: IMessageDataWrapper): boolean
{
if(!wrapper) return false;
this._reason = wrapper.readInt();
return true;
}
public get reason(): number
{
return this._reason;
}
}

View File

@ -10,6 +10,7 @@ export * from './LoveLockFurniFinishedParser';
export * from './LoveLockFurniFriendConfirmedParser';
export * from './LoveLockFurniStartParser';
export * from './OneWayDoorStatusMessageParser';
export * from './RentableSpaceRentFailedMessageParser';
export * from './RequestSpamWallPostItMessageParser';
export * from './RoomDimmerPresetsMessageData';
export * from './RoomDimmerPresetsMessageParser';