mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 18:28:21 +00:00
8d37d9b681
* Organize dScripts whitespace Remove parent scope Remove parent scope from initial setter Remove debug Remove helper programs * Fix NtImagimeterVisibility script Co-authored-by: aronwk-aaron <aronwk.aaron@gmail.com>
31 lines
1.1 KiB
C++
31 lines
1.1 KiB
C++
#include "NtOverbuildServer.h"
|
|
#include "EntityManager.h"
|
|
|
|
void NtOverbuildServer::SetVariables(Entity* self) {
|
|
self->SetVar<float_t>(m_SpyProximityVariable, 30.0f);
|
|
|
|
self->SetVar<SpyData>(m_SpyDataVariable, {
|
|
NT_FACTION_SPY_OVERBUILD, 13891, 1320
|
|
});
|
|
|
|
self->SetVar<std::vector<SpyDialogue>>(m_SpyDialogueTableVariable, {
|
|
{ "OVERBUILD_NT_CONVO_1", 0 },
|
|
{ "OVERBUILD_NT_CONVO_2", 1 },
|
|
{ "OVERBUILD_NT_CONVO_3", 0 },
|
|
{ "OVERBUILD_NT_CONVO_4", 1 },
|
|
{ "OVERBUILD_NT_CONVO_5", 0 },
|
|
{ "OVERBUILD_NT_CONVO_6", 1 },
|
|
{ "OVERBUILD_NT_CONVO_7", 0 },
|
|
});
|
|
|
|
// Find the second object Dr. Overbuild interacts with
|
|
LWOOBJID otherConvoObjectID = LWOOBJID_EMPTY;
|
|
for (auto* otherConvoObject : EntityManager::Instance()->GetEntitiesInGroup(GeneralUtils::UTF16ToWTF8(self->GetVar<std::u16string>(m_OtherEntitiesGroupVariable)))) {
|
|
otherConvoObjectID = otherConvoObject->GetObjectID();
|
|
break;
|
|
}
|
|
|
|
// If there's an alternating conversation, indices should be provided using the conversationID variables
|
|
self->SetVar<std::vector<LWOOBJID>>(m_SpyCinematicObjectsVariable, { self->GetObjectID(), otherConvoObjectID });
|
|
}
|