Addition of Achievement box.
Contributed by Serenitty.
This commit is contained in:
18
L2J_Mobius_Essence_6.2_Vanguard/dist/db_installer/sql/game/achievement_box.sql
vendored
Normal file
18
L2J_Mobius_Essence_6.2_Vanguard/dist/db_installer/sql/game/achievement_box.sql
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
DROP TABLE IF EXISTS `achievement_box`;
|
||||
CREATE TABLE IF NOT EXISTS `achievement_box` (
|
||||
`charId` INT,
|
||||
`box_owned` INT NOT NULL DEFAULT 1,
|
||||
`monster_point` INT NOT NULL DEFAULT 0,
|
||||
`pvp_point` INT NOT NULL DEFAULT 0,
|
||||
`pending_box` INT NOT NULL DEFAULT 0,
|
||||
`open_time` BIGINT UNSIGNED NOT NULL DEFAULT 0,
|
||||
`box_state_slot_1` INT NOT NULL DEFAULT 1,
|
||||
`boxtype_slot_1` INT NOT NULL DEFAULT 0,
|
||||
`box_state_slot_2` INT NOT NULL DEFAULT 0,
|
||||
`boxtype_slot_2` INT NOT NULL DEFAULT 0,
|
||||
`box_state_slot_3` INT NOT NULL DEFAULT 0,
|
||||
`boxtype_slot_3` INT NOT NULL DEFAULT 0,
|
||||
`box_state_slot_4` INT NOT NULL DEFAULT 0,
|
||||
`boxtype_slot_4` INT NOT NULL DEFAULT 0,
|
||||
PRIMARY KEY (`charId`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
||||
19
L2J_Mobius_Essence_6.2_Vanguard/dist/game/config/AchievementBox.ini
vendored
Normal file
19
L2J_Mobius_Essence_6.2_Vanguard/dist/game/config/AchievementBox.ini
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
# --------------------------------------------------------------------------
|
||||
# Achievement Box Settings
|
||||
# --------------------------------------------------------------------------
|
||||
|
||||
EnabledAchievementBox = True
|
||||
|
||||
# Amount of mobs killed.
|
||||
# Retail is 1000.
|
||||
PointsForReward = 1000
|
||||
|
||||
# --------------------------------------------------------------------------
|
||||
# Achievement Box PVP Settings
|
||||
# --------------------------------------------------------------------------
|
||||
|
||||
EnabledAchievementPvP = True
|
||||
|
||||
# Amount of Players killed.
|
||||
# Retail is 5.
|
||||
PointsForPvpReward = 5
|
||||
Reference in New Issue
Block a user