Public release of the DLU server code!

Have fun!
This commit is contained in:
Unknown
2021-12-05 18:54:36 +01:00
parent 5f7270e4ad
commit 0545adfac3
1146 changed files with 368646 additions and 1 deletions

View File

@@ -0,0 +1,39 @@
#pragma once
#include <string>
#include <vector>
#include "BitStream.h"
#include "NiPoint3.h"
#include "dCommonVars.h"
namespace GameMessages
{
class PropertyDataMessage final
{
public:
explicit PropertyDataMessage(uint32_t mapID);
void Serialize(RakNet::BitStream& stream) const;
std::string OwnerName = "";
LWOOBJID OwnerId = LWOOBJID_EMPTY;
// Temporary values
uint32_t TemplateID = 25166;
uint16_t ZoneId = 1150;
uint16_t VendorMapId = 1100;
std::string SpawnName = "AGSmallProperty";
std::string Name = "";
std::string Description = "";
uint64_t ClaimedTime = 0;
NiPoint3 ZonePosition = { 548.0f, 406.0f, 178.0f };
char PrivacyOption = 0;
float MaxBuildHeight = 128.0f;
std::vector<NiPoint3> Paths = {};
};
}