Skip to content

Commit

Permalink
billsonnn#9 - HabboGroupJoinFailedMessageEvent added
Browse files Browse the repository at this point in the history
  • Loading branch information
oobjectt committed Dec 24, 2022
1 parent 26741b7 commit 7bddc4c
Show file tree
Hide file tree
Showing 6 changed files with 50 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/nitro/communication/NitroMessages.ts

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ export class IncomingHeader
public static GROUP_PURCHASED = 2808;
public static GROUP_SETTINGS = 3965;
public static GROUP_BADGE_PARTS = 2238;
public static GROUP_HABBO_JOIN_FAILED = 762;
public static ITEM_DIMMER_SETTINGS = 2710;
public static ITEM_STACK_HELPER = 2816;
public static ITEM_WALL = 1369;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import { IMessageEvent } from '../../../../../api';
import { MessageEvent } from '../../../../../events';
import { HabboGroupJoinFailedMessageParser } from '../../parser';

export class HabboGroupJoinFailedMessageEvent extends MessageEvent implements IMessageEvent
{
constructor(callBack: Function)
{
super(callBack, HabboGroupJoinFailedMessageParser);
}

public getParser(): HabboGroupJoinFailedMessageParser
{
return this.parser as HabboGroupJoinFailedMessageParser;
}
}
1 change: 1 addition & 0 deletions src/nitro/communication/messages/incoming/user/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ export * from './ApproveNameMessageEvent';
export * from './data';
export * from './GuildMembershipsMessageEvent';
export * from './HabboGroupBadgesMessageEvent';
export * from './HabboGroupJoinFailedMessageEvent';
export * from './IgnoredUsersEvent';
export * from './IgnoreResultEvent';
export * from './InClientLinkEvent';
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
import { IMessageDataWrapper, IMessageParser } from '../../../../../api';

export class HabboGroupJoinFailedMessageParser implements IMessageParser
{
public static readonly INSUFFICIENT_SUBSCRIPTION_LEVEL: number = 4;

private _reason: number;

public flush(): boolean
{
this._reason = -1;

return true;
}

public parse(wrapper: IMessageDataWrapper): boolean
{
if(!wrapper) return false;

this._reason = wrapper.readInt();

return true;
}

public get reason(): number
{
return this._reason;
}
}
1 change: 1 addition & 0 deletions src/nitro/communication/messages/parser/user/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ export * from './data';
export * from './GuildMembershipsMessageParser';
export * from './HabboGroupBadgesMessageParser';
export * from './HabboGroupEntryData';
export * from './HabboGroupJoinFailedMessageParser';
export * from './IgnoredUsersParser';
export * from './IgnoreResultParser';
export * from './InClientLinkParser';
Expand Down

0 comments on commit 7bddc4c

Please sign in to comment.