You've already forked Nitro_Render_V3
mirror of
https://github.com/duckietm/Nitro_Render_V3.git
synced 2026-06-19 15:06:20 +00:00
🆙 Added Buildtools
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -29,6 +29,7 @@ export class OutgoingHeader
|
||||
public static FIND_NEW_FRIENDS = 516;
|
||||
public static FURNITURE_ALIASES = 3898;
|
||||
public static FURNITURE_FLOOR_UPDATE = 248;
|
||||
public static FURNITURE_FLOOR_POSITION_UPDATE = 10019;
|
||||
public static FURNITURE_MULTISTATE = 99;
|
||||
public static FURNITURE_PICKUP = 3456;
|
||||
public static FURNITURE_PLACE = 1258;
|
||||
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
import { IMessageComposer } from '@nitrots/api';
|
||||
|
||||
export class UpdateFurniturePositionComposer implements IMessageComposer<ConstructorParameters<typeof UpdateFurniturePositionComposer>>
|
||||
{
|
||||
private _data: ConstructorParameters<typeof UpdateFurniturePositionComposer>;
|
||||
|
||||
constructor(itemId: number, x: number, y: number, z: number, direction: number)
|
||||
{
|
||||
this._data = [itemId, x, y, z, direction];
|
||||
}
|
||||
|
||||
public getMessageArray()
|
||||
{
|
||||
return this._data;
|
||||
}
|
||||
|
||||
public dispose(): void
|
||||
{
|
||||
return;
|
||||
}
|
||||
}
|
||||
@@ -1 +1,2 @@
|
||||
export * from './FurnitureFloorUpdateComposer';
|
||||
export * from './UpdateFurniturePositionComposer';
|
||||
|
||||
Reference in New Issue
Block a user