forked from metin2/server
19 lines
395 B
C++
19 lines
395 B
C++
#ifndef __INC_XMAS_EVENT_H
|
|
#define __INC_XMAS_EVENT_H
|
|
|
|
namespace xmas
|
|
{
|
|
enum
|
|
{
|
|
MOB_SANTA_VNUM = 20031, //»êŸ
|
|
// MOB_SANTA_VNUM = 20095, //³ëÇØ
|
|
MOB_XMAS_TREE_VNUM = 20032,
|
|
MOB_XMAS_FIRWORK_SELLER_VNUM = 9004,
|
|
};
|
|
|
|
void ProcessEventFlag(const std::string& name, int prev_value, int value);
|
|
void SpawnSanta(int lMapIndex, int iTimeGapSec);
|
|
void SpawnEventHelper(bool spawn);
|
|
}
|
|
#endif
|