mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
23 lines
651 B
C++
23 lines
651 B
C++
#pragma once
|
|
#include "CppScripts.h"
|
|
|
|
class AgSurvivalBuffStation : public CppScripts::Script
|
|
{
|
|
public:
|
|
/**
|
|
* @brief When the rebuild of self is complete, we calculate the behavior that is assigned to self in the database.
|
|
*
|
|
* @param self The Entity that called this script.
|
|
* @param target The target of the self that called this script.
|
|
*/
|
|
void OnRebuildComplete(Entity* self, Entity* target) override;
|
|
private:
|
|
/**
|
|
* Skill ID for the buff station.
|
|
*/
|
|
uint32_t skillIdForBuffStation = 201;
|
|
/**
|
|
* Behavior ID for the buff station.
|
|
*/
|
|
uint32_t behaviorIdForBuffStation = 1784;
|
|
}; |