mirror of
https://github.com/billsonnn/nitro-renderer.git
synced 2024-11-26 09:20:51 +01:00
#9 - GuildEditFailedMessageEvent added
This commit is contained in:
parent
26741b78a7
commit
57684532ab
File diff suppressed because one or more lines are too long
@ -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 GUILD_EDIT_FAILED = 3988;
|
||||
public static ITEM_DIMMER_SETTINGS = 2710;
|
||||
public static ITEM_STACK_HELPER = 2816;
|
||||
public static ITEM_WALL = 1369;
|
||||
|
@ -0,0 +1,16 @@
|
||||
import { IMessageEvent } from '../../../../../api';
|
||||
import { MessageEvent } from '../../../../../events';
|
||||
import { GuildEditFailedMessageParser } from '../../parser';
|
||||
|
||||
export class GuildEditFailedMessageEvent extends MessageEvent implements IMessageEvent
|
||||
{
|
||||
constructor(callBack: Function)
|
||||
{
|
||||
super(callBack, GuildEditFailedMessageParser);
|
||||
}
|
||||
|
||||
public getParser(): GuildEditFailedMessageParser
|
||||
{
|
||||
return this.parser as GuildEditFailedMessageParser;
|
||||
}
|
||||
}
|
@ -1,6 +1,7 @@
|
||||
export * from './access';
|
||||
export * from './ApproveNameMessageEvent';
|
||||
export * from './data';
|
||||
export * from './GuildEditFailedMessageEvent';
|
||||
export * from './GuildMembershipsMessageEvent';
|
||||
export * from './HabboGroupBadgesMessageEvent';
|
||||
export * from './IgnoredUsersEvent';
|
||||
|
@ -0,0 +1,29 @@
|
||||
import { IMessageDataWrapper, IMessageParser } from '../../../../../api';
|
||||
|
||||
export class GuildEditFailedMessageParser implements IMessageParser
|
||||
{
|
||||
public static readonly INSUFFICIENT_SUBSCRIPTION_LEVEL: number = 2;
|
||||
|
||||
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,6 +1,7 @@
|
||||
export * from './access';
|
||||
export * from './ApproveNameResultParser';
|
||||
export * from './data';
|
||||
export * from './GuildEditFailedMessageParser';
|
||||
export * from './GuildMembershipsMessageParser';
|
||||
export * from './HabboGroupBadgesMessageParser';
|
||||
export * from './HabboGroupEntryData';
|
||||
|
Loading…
Reference in New Issue
Block a user