mirror of
https://github.com/billsonnn/nitro-renderer.git
synced 2024-11-22 23:50:52 +01:00
Merge branch 'bot-force-open-context-menu' of https://github.com/oobjectt/nitro-renderer into oobjectt-bot-force-open-context-menu
This commit is contained in:
commit
f304f16945
File diff suppressed because one or more lines are too long
@ -287,6 +287,7 @@ export class IncomingHeader
|
||||
public static IN_CLIENT_LINK = 2023;
|
||||
public static BOT_COMMAND_CONFIGURATION = 1618;
|
||||
public static BOT_SKILL_LIST_UPDATE = 69;
|
||||
public static BOT_FORCE_OPEN_CONTEXT_MENU = 296;
|
||||
public static HAND_ITEM_RECEIVED = 354;
|
||||
public static PET_PLACING_ERROR = 2913;
|
||||
public static BOT_ERROR = 639;
|
||||
|
@ -0,0 +1,16 @@
|
||||
import { IMessageEvent } from '../../../../../../api';
|
||||
import { MessageEvent } from '../../../../../../events';
|
||||
import { BotForceOpenContextMenuParser } from '../../../parser';
|
||||
|
||||
export class BotForceOpenContextMenuEvent extends MessageEvent implements IMessageEvent
|
||||
{
|
||||
constructor(callBack: Function)
|
||||
{
|
||||
super(callBack, BotForceOpenContextMenuParser);
|
||||
}
|
||||
|
||||
public getParser(): BotForceOpenContextMenuParser
|
||||
{
|
||||
return this.parser as BotForceOpenContextMenuParser;
|
||||
}
|
||||
}
|
@ -1,2 +1,3 @@
|
||||
export * from './BotCommandConfigurationEvent';
|
||||
export * from './BotForceOpenContextMenuEvent';
|
||||
export * from './BotSkillListUpdateEvent';
|
||||
|
@ -0,0 +1,27 @@
|
||||
import { IMessageDataWrapper, IMessageParser } from '../../../../../../api';
|
||||
|
||||
export class BotForceOpenContextMenuParser implements IMessageParser
|
||||
{
|
||||
private _botId: number;
|
||||
|
||||
public flush(): boolean
|
||||
{
|
||||
this._botId = -1;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
public parse(wrapper: IMessageDataWrapper): boolean
|
||||
{
|
||||
if(!wrapper) return false;
|
||||
|
||||
this._botId = wrapper.readInt();
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
public get botId(): number
|
||||
{
|
||||
return this._botId;
|
||||
}
|
||||
}
|
@ -1,3 +1,4 @@
|
||||
export * from './BotCommandConfigurationParser';
|
||||
export * from './BotForceOpenContextMenuParser';
|
||||
export * from './BotSkillData';
|
||||
export * from './BotSkillListUpdateParser';
|
||||
|
Loading…
Reference in New Issue
Block a user