🆙 added latest changes

This commit is contained in:
duckietm
2024-07-04 15:03:26 +02:00
parent d5a3a05c40
commit bd09ea8b25
116 changed files with 2246 additions and 1794 deletions
@@ -1,5 +1,9 @@
export class IncomingHeader
{
// These packets do not belong to this revision, so these are custom packet ids
public static AREA_HIDE = 6001;
// Original packets
public static ACHIEVEMENT_LIST = 305;
public static AUTHENTICATED = 2491;
public static AUTHENTICATION = -1;
@@ -0,0 +1,16 @@
import { IMessageEvent } from '@nitrots/api';
import { MessageEvent } from '@nitrots/events';
import { AreaHideMessageParser } from '../../../parser';
export class AreaHideMessageEvent extends MessageEvent implements IMessageEvent
{
constructor(callBack: Function)
{
super(callBack, AreaHideMessageParser);
}
public getParser(): AreaHideMessageParser
{
return this.parser as AreaHideMessageParser;
}
}
@@ -1,6 +1,6 @@
export * from './AreaHideMessageEvent';
export * from './CustomUserNotificationMessageEvent';
export * from './DiceValueMessageEvent';
export * from './floor';
export * from './FurniRentOrBuyoutOfferMessageEvent';
export * from './FurnitureAliasesEvent';
export * from './FurnitureDataEvent';
@@ -17,6 +17,7 @@ export * from './RentableSpaceStatusMessageEvent';
export * from './RequestSpamWallPostItMessageEvent';
export * from './RoomDimmerPresetsMessageEvent';
export * from './RoomMessageNotificationMessageEvent';
export * from './wall';
export * from './WelcomeGiftStatusEvent';
export * from './floor';
export * from './wall';
export * from './youtube';