format codebase

This commit is contained in:
aronwk-aaron
2022-07-28 08:39:57 -05:00
parent 4f7aa11067
commit 19e77a38d8
881 changed files with 34700 additions and 38689 deletions

View File

@@ -1,20 +1,20 @@
#include "NtHaelServer.h"
#include "Entity.h"
void NtHaelServer::SetVariables(Entity *self) {
self->SetVar<float_t>(m_SpyProximityVariable, 25.0f);
void NtHaelServer::SetVariables(Entity* self) {
self->SetVar<float_t>(m_SpyProximityVariable, 25.0f);
self->SetVar<SpyData>(m_SpyDataVariable, {
NT_FACTION_SPY_HAEL, 13892, 1321
});
self->SetVar<SpyData>(m_SpyDataVariable, {
NT_FACTION_SPY_HAEL, 13892, 1321
});
self->SetVar<std::vector<SpyDialogue>>(m_SpyDialogueTableVariable, {
{ "HAEL_NT_CONVO_1", 0 },
{ "HAEL_NT_CONVO_2", 0 },
{ "HAEL_NT_CONVO_3", 0 },
{ "HAEL_NT_CONVO_4", 0 },
});
self->SetVar<std::vector<SpyDialogue>>(m_SpyDialogueTableVariable, {
{ "HAEL_NT_CONVO_1", 0 },
{ "HAEL_NT_CONVO_2", 0 },
{ "HAEL_NT_CONVO_3", 0 },
{ "HAEL_NT_CONVO_4", 0 },
});
// If there's an alternating conversation, indices should be provided using the conversationID variables
self->SetVar<std::vector<LWOOBJID>>(m_SpyCinematicObjectsVariable, { self->GetObjectID() });
// If there's an alternating conversation, indices should be provided using the conversationID variables
self->SetVar<std::vector<LWOOBJID>>(m_SpyCinematicObjectsVariable, { self->GetObjectID() });
}