mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +00:00
8cdb388915
* Implement Precompiled Headers * First volume of optimizations * Scripts A-B Gonna be doing this in alphabetical order now. * C Scripts and remove unneeded includes from base cppscripts header Remove the MissionComponent and Loot includes from all base scripts and place their needed includes in the respective scripts. * D scripts * F scripts * F scripts 2 Finish up removing extraneous includes from scripts that start with the letter F * G scripts Removing extraneous includes from scripts that start with the letter G * I scripts Removing extraneous includes from scripts that start with the letter I * M-Z scripts Removing extraneous includes from scripts that start with the letter M-Z * Revert "Implement Precompiled Headers" This reverts commitd79d8d4991
. * Revert "Revert "Implement Precompiled Headers"" This reverts commit0597faf308
. * Add back in PCH Add back in PCH * Fix CMake Whitespace Remove duplicate file glob Remove newline
41 lines
2.0 KiB
C++
41 lines
2.0 KiB
C++
#include "ZoneFvProperty.h"
|
|
#include "Entity.h"
|
|
|
|
void ZoneFvProperty::SetGameVariables(Entity *self) {
|
|
self->SetVar<std::string>(ClaimMarkerGroup, "Platform");
|
|
self->SetVar<std::string>(GeneratorGroup, "Generator");
|
|
self->SetVar<std::string>(GuardGroup, "Guard");
|
|
self->SetVar<std::string>(PropertyPlaqueGroup, "PropertyPlaque");
|
|
self->SetVar<std::string>(PropertyVendorGroup, "PropertyVendor");
|
|
self->SetVar<std::string>(SpotsGroup, "Spots");
|
|
self->SetVar<std::string>(MSCloudsGroup, "Clouds");
|
|
self->SetVar<std::string>(EnemiesGroup, "Enemies");
|
|
self->SetVar<std::string>(FXManagerGroup, "FXManager");
|
|
self->SetVar<std::string>(ImagOrbGroup, "Orb");
|
|
self->SetVar<std::string>(GeneratorFXGroup, "GeneratorFX");
|
|
|
|
self->SetVar<std::vector<std::string>>(EnemiesSpawner,
|
|
{ "RoninWander", "RoninGen", "HorsemenGen" });
|
|
self->SetVar<std::string>(ClaimMarkerSpawner, "Platform");
|
|
self->SetVar<std::string>(GeneratorSpawner, "Generator");
|
|
self->SetVar<std::string>(DamageFXSpawner, "Clouds");
|
|
self->SetVar<std::string>(FXSpotsSpawner, "Spots");
|
|
self->SetVar<std::string>(PropertyMGSpawner, "Guard");
|
|
self->SetVar<std::string>(ImageOrbSpawner, "Orb");
|
|
self->SetVar<std::string>(GeneratorFXSpawner, "GeneratorFX");
|
|
self->SetVar<std::string>(SmashablesSpawner, "Smashables");
|
|
self->SetVar<std::string>(FXManagerSpawner, "FXManager");
|
|
self->SetVar<std::string>(PropObjsSpawner, "BankObj");
|
|
self->SetVar<std::vector<std::string>>(AmbientFXSpawner, { "Ash", "FX", "Fog"});
|
|
self->SetVar<std::vector<std::string>>(BehaviorObjsSpawner, {});
|
|
|
|
self->SetVar<uint32_t>(defeatedProperyFlag, 99);
|
|
self->SetVar<uint32_t>(placedModelFlag, 107);
|
|
self->SetVar<uint32_t>(guardMissionFlag, 874);
|
|
self->SetVar<uint32_t>(brickLinkMissionIDFlag, 950);
|
|
self->SetVar<std::string>(passwordFlag, "s3kratK1ttN");
|
|
self->SetVar<LOT>(generatorIdFlag, 11023);
|
|
self->SetVar<LOT>(orbIDFlag, 10226);
|
|
self->SetVar<LOT>(behaviorQBID, 11011);
|
|
}
|