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

20
dScripts/AmBlueX.h Normal file
View File

@@ -0,0 +1,20 @@
#pragma once
#include "CppScripts.h"
class AmBlueX : public CppScripts::Script {
void OnUse(Entity *self, Entity *user) override;
void OnSkillEventFired(Entity *self, Entity *caster, const std::string &message) override;
private:
const float_t m_BombTime = 3.3f;
const uint32_t m_MissionID = 1448;
const uint32_t m_SwordSkill = 1259;
const uint32_t m_SwordBehavior = 29305;
const uint32_t m_AOESkill = 1258;
const uint32_t m_AOEBehavior = 29301;
const LOT m_FXObject = 13808;
// Variables
const std::u16string m_XUsedVariable = u"XUsed";
const std::u16string m_FlagVariable = u"flag";
const std::u16string m_StartEffectVariable = u"startEffect";
};