fix scripts

split speed out to use target as caster
fix armor skill
This commit is contained in:
Aaron Kimbre
2023-04-09 13:21:57 -05:00
parent bed269ffbe
commit 09e9bb2c15
5 changed files with 43 additions and 4 deletions

View File

@@ -0,0 +1,10 @@
#pragma once
#include "CppScripts.h"
class SpecialSpeedBuffSpawner : public CppScripts::Script {
public:
void OnStartup(Entity* self) override;
void OnProximityUpdate(Entity* self, Entity* entering, std::string name, std::string status) override;
private:
uint32_t m_SkillId = 500;
};