You've already forked Nitro_Render_V3
mirror of
https://github.com/duckietm/Nitro_Render_V3.git
synced 2026-06-20 15:36:18 +00:00
👈 Added FURNITURE_PICKUP_ALL for chooser
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -472,5 +472,6 @@ export class OutgoingHeader
|
||||
public static RENTABLE_EXTEND_RENT_OR_BUYOUT_FURNI = 1071;
|
||||
public static RENTABLE_GET_RENT_OR_BUYOUT_OFFER = 2518;
|
||||
|
||||
public static FURNITURE_PICKUP_ALL = 10017;
|
||||
public static DELETE_ITEM = 10018;
|
||||
}
|
||||
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
import { IMessageComposer } from '../../../../../../api';
|
||||
|
||||
export class FurniturePickupAllComposer implements IMessageComposer<ConstructorParameters<typeof FurniturePickupAllComposer>>
|
||||
{
|
||||
private _data: ConstructorParameters<typeof FurniturePickupAllComposer>;
|
||||
|
||||
constructor(...objectId: number[])
|
||||
{
|
||||
this._data = [objectId.length, ...objectId];
|
||||
}
|
||||
|
||||
public getMessageArray()
|
||||
{
|
||||
return this._data;
|
||||
}
|
||||
|
||||
public dispose(): void
|
||||
{
|
||||
return;
|
||||
}
|
||||
}
|
||||
@@ -5,6 +5,7 @@ export * from './ExtendRentOrBuyoutStripItemMessageComposer';
|
||||
export * from './floor';
|
||||
export * from './FurnitureAliasesComposer';
|
||||
export * from './FurnitureGroupInfoComposer';
|
||||
export * from './FurniturePickupAllComposer';
|
||||
export * from './FurniturePickupComposer';
|
||||
export * from './FurniturePlaceComposer';
|
||||
export * from './FurniturePlacePaintComposer';
|
||||
|
||||
Reference in New Issue
Block a user