2021-12-05 18:54:36 +01:00
|
|
|
#include "NtHaelServer.h"
|
2022-07-04 23:00:10 -07:00
|
|
|
#include "Entity.h"
|
2021-12-05 18:54:36 +01:00
|
|
|
|
2022-07-28 08:39:57 -05:00
|
|
|
void NtHaelServer::SetVariables(Entity* self) {
|
|
|
|
self->SetVar<float_t>(m_SpyProximityVariable, 25.0f);
|
2021-12-05 18:54:36 +01:00
|
|
|
|
2022-07-28 08:39:57 -05:00
|
|
|
self->SetVar<SpyData>(m_SpyDataVariable, {
|
|
|
|
NT_FACTION_SPY_HAEL, 13892, 1321
|
|
|
|
});
|
2021-12-05 18:54:36 +01:00
|
|
|
|
2022-07-28 08:39:57 -05:00
|
|
|
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 },
|
|
|
|
});
|
2021-12-05 18:54:36 +01:00
|
|
|
|
2022-07-28 08:39:57 -05:00
|
|
|
// If there's an alternating conversation, indices should be provided using the conversationID variables
|
|
|
|
self->SetVar<std::vector<LWOOBJID>>(m_SpyCinematicObjectsVariable, { self->GetObjectID() });
|
2021-12-05 18:54:36 +01:00
|
|
|
}
|