diff --git a/db/const.txt b/db/const.txt index c74a850da6..3629da5b18 100644 --- a/db/const.txt +++ b/db/const.txt @@ -14,16 +14,6 @@ // in field Value. Depending on the implementation values assigned by scripts to parameters will affect // runtime values, such as Zeny, as well (see pc_readparam/pc_setparam). -bc_all 0 -bc_map 1 -bc_area 2 -bc_self 3 -bc_pc 0 -bc_npc 8 -bc_yellow 0 -bc_blue 16 -bc_woe 32 - mf_nomemo 0 mf_noteleport 1 mf_nosave 2 diff --git a/src/map/script_constants.h b/src/map/script_constants.h index 2128558c52..30865079f9 100644 --- a/src/map/script_constants.h +++ b/src/map/script_constants.h @@ -317,6 +317,17 @@ script_set_constant("EAJ_SUPER_NOVICE_E",MAPID_SUPER_NOVICE_E,false); script_set_constant("EAJ_SUPER_BABY_E",MAPID_SUPER_BABY_E,false); + /* broadcasts */ + export_constant(BC_ALL); + export_constant(BC_MAP); + export_constant(BC_AREA); + export_constant(BC_SELF); + export_constant(BC_PC); + export_constant(BC_NPC); + export_constant(BC_YELLOW); + export_constant(BC_BLUE); + export_constant(BC_WOE); + /* status options */ export_constant(OPTION_NOTHING); export_constant(OPTION_SIGHT);