Addition of Monster Race with reward system.
Adapted from aCis free version.
This commit is contained in:
15
L2J_Mobius_Classic_Interlude/dist/db_installer/sql/game/mdt_bets.sql
vendored
Normal file
15
L2J_Mobius_Classic_Interlude/dist/db_installer/sql/game/mdt_bets.sql
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
CREATE TABLE IF NOT EXISTS `mdt_bets` (
|
||||
`lane_id` INT(1) DEFAULT 0,
|
||||
`bet` INT DEFAULT 0,
|
||||
PRIMARY KEY (`lane_id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
||||
|
||||
INSERT INTO `mdt_bets` VALUES
|
||||
('1','0'),
|
||||
('2','0'),
|
||||
('3','0'),
|
||||
('4','0'),
|
||||
('5','0'),
|
||||
('6','0'),
|
||||
('7','0'),
|
||||
('8','0');
|
7
L2J_Mobius_Classic_Interlude/dist/db_installer/sql/game/mdt_history.sql
vendored
Normal file
7
L2J_Mobius_Classic_Interlude/dist/db_installer/sql/game/mdt_history.sql
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
CREATE TABLE IF NOT EXISTS `mdt_history` (
|
||||
`race_id` MEDIUMINT DEFAULT 0,
|
||||
`first` INT(1) DEFAULT 0,
|
||||
`second` INT(1) DEFAULT 0,
|
||||
`odd_rate` DOUBLE(10,2) DEFAULT 0,
|
||||
PRIMARY KEY (`race_id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
Reference in New Issue
Block a user