forked from metin2/server
19 lines
396 B
C
19 lines
396 B
C
|
#ifndef __INC_XMAS_EVENT_H
|
|||
|
#define __INC_XMAS_EVENT_H
|
|||
|
|
|||
|
namespace xmas
|
|||
|
{
|
|||
|
enum
|
|||
|
{
|
|||
|
MOB_SANTA_VNUM = 20031, //<2F><>Ÿ
|
|||
|
// MOB_SANTA_VNUM = 20095, //<2F><><EFBFBD><EFBFBD>
|
|||
|
MOB_XMAS_TREE_VNUM = 20032,
|
|||
|
MOB_XMAS_FIRWORK_SELLER_VNUM = 9004,
|
|||
|
};
|
|||
|
|
|||
|
void ProcessEventFlag(const std::string& name, int prev_value, int value);
|
|||
|
void SpawnSanta(long lMapIndex, int iTimeGapSec);
|
|||
|
void SpawnEventHelper(bool spawn);
|
|||
|
}
|
|||
|
#endif
|