Packet descriptions
This commit is contained in:
31
lib/classes/packets/DirLandQuery.ts
Normal file
31
lib/classes/packets/DirLandQuery.ts
Normal file
@@ -0,0 +1,31 @@
|
||||
// This file has been automatically generated by writePacketClasses.js
|
||||
|
||||
import {UUID} from '../UUID';
|
||||
import {MessageFlags} from '../../enums/MessageFlags';
|
||||
import {Packet} from '../Packet';
|
||||
|
||||
export class DirLandQueryPacket implements Packet
|
||||
{
|
||||
name = 'DirLandQuery';
|
||||
flags = MessageFlags.Zerocoded | MessageFlags.FrequencyLow;
|
||||
id = 4294901808;
|
||||
|
||||
AgentData: {
|
||||
AgentID: UUID;
|
||||
SessionID: UUID;
|
||||
};
|
||||
QueryData: {
|
||||
QueryID: UUID;
|
||||
QueryFlags: number;
|
||||
SearchType: number;
|
||||
Price: number;
|
||||
Area: number;
|
||||
QueryStart: number;
|
||||
};
|
||||
|
||||
getSize(): number
|
||||
{
|
||||
return 68;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user