diff --git a/L2J_Mobius_1.0_Ertheia/dist/db_installer/sql/game/mdt_bets.sql b/L2J_Mobius_1.0_Ertheia/dist/db_installer/sql/game/mdt_bets.sql
new file mode 100644
index 0000000000..8d7d4cb738
--- /dev/null
+++ b/L2J_Mobius_1.0_Ertheia/dist/db_installer/sql/game/mdt_bets.sql
@@ -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');
\ No newline at end of file
diff --git a/L2J_Mobius_1.0_Ertheia/dist/db_installer/sql/game/mdt_history.sql b/L2J_Mobius_1.0_Ertheia/dist/db_installer/sql/game/mdt_history.sql
new file mode 100644
index 0000000000..06978f3377
--- /dev/null
+++ b/L2J_Mobius_1.0_Ertheia/dist/db_installer/sql/game/mdt_history.sql
@@ -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;
\ No newline at end of file
diff --git a/L2J_Mobius_1.0_Ertheia/dist/game/config/AdminCommands.xml b/L2J_Mobius_1.0_Ertheia/dist/game/config/AdminCommands.xml
index 36ab1240b5..215b7c679a 100644
--- a/L2J_Mobius_1.0_Ertheia/dist/game/config/AdminCommands.xml
+++ b/L2J_Mobius_1.0_Ertheia/dist/game/config/AdminCommands.xml
@@ -416,9 +416,6 @@
-
-
-
diff --git a/L2J_Mobius_1.0_Ertheia/dist/game/data/html/default/30995-1.htm b/L2J_Mobius_1.0_Ertheia/dist/game/data/html/default/30995-1.htm
index 4962bdf3a2..d38d518149 100644
--- a/L2J_Mobius_1.0_Ertheia/dist/game/data/html/default/30995-1.htm
+++ b/L2J_Mobius_1.0_Ertheia/dist/game/data/html/default/30995-1.htm
@@ -1,19 +1,22 @@
-
-
-In a monster race eight monsters race at the same time. If you guess which monster is expected to finish first and buy that monster's race ticket, based upon the odds to win you will receive an appropriate amount of Adena.
-How the Race WorksMonster races run every 20 minutes in real time.
-How to Participate
-You can purchase a monster race ticket through a race manager NPC. Only between 18 minutes before the start of a race until 3 minutes before the race begins can you buy a ticket for the applicable race. When you purchase a ticket through a race manager, you can find out the names of the participating monsters and their current statistics. Three minutes before a race starts, the race manager will stop ticket sales and announce the monsters' individual odds for the current race.
-Betting
-There are two types of race betting. The Win bet means that you back a particular monster to win 1st place. The Place bet means that you will have to guess the 1st and 2nd place monsters, regardless of who finishes first or second.
+
+
+
+
+In a monster race eight monsters race at the same time. If you guess which monster is expected to finish first and buy that monster's race ticket, based upon the odds to win you will receive an appropriate amount of adena.
+Racing Schedule
+Monster races every 20 minutes in real time.
+Method of Race Participation
+You can purchase a monster race ticket through a race manager NPC. Only between 18 minutes before the start of a race until 3 minutes before the race begins you can buy a ticket for the applicable race. When you purchase a ticket through a conversation with a race manager, you can find out the names of participating monsters in the race and their current statistics. Five minutes before a race starts, the race manager will stop ticket sales and announce monsters' individual odds rate for the current race.
+Types of Race
+There are two types of race betting. The Win type betting means that you back a monster that will win the first prize. Place type of betting means that you will have to guess the 1st and 2nd winning monsters, regardless of who finishes first or second.
Win
- * Among the entire betting amount for Win betting, after subtracting the race track's own share of profit, the amount left will be your total winnings. Three minutes before the race, each monster's expected odds are announced. Each Win ticket's dividend amount is calculated by multiplying the odds by the price of a ticket. The odds are never less than 1.
- * The prize money does not get transferred to the next race.
+* Among the entire betting amount for Win betting, after subtracting the race track's own share of profit, the amount left will be your total winnings. Three minutes before the race each monster's expected odds are announced. Each Win ticket's dividend amount is calculated by multiplying the odds by the price of a ticket. The odds rate is never less than 1.
+* The prize money does not get transferred to the next race.
Place
- * Place betting is a way of betting when you correctly guess the two monsters who will finish first and second regardless of their order. The method of calculating the dividend amount is the same as Win betting.
- * Currently place betting is not available.
+* Place betting is a way of betting when you correctly guess the two monsters who will finish first and second regardless of their order. The method of calculating dividend amount is the same as Win betting.
+* Currently place betting is not offered.
End of Race
-When a race is over, the race manager will shout the results of the race. You can trade your ticket for Adena by speaking to a race manager NPC. Check the Winning Information Data to find out the types of bets and total winnings for the race you bet on, as well as your win status and prize amount. If you won, you can receive your prize money thorough a race manager NPC. If you did not win, a race manager will buy back your ticket for a small amount of money.
+When a race is over, the race manager will shout out the results of the race. Through a conversation with a race manager NPC, you can trade your ticket for adena. By looking up on the Winning Information Data, you can find out the types of tickets and quantity of the winnings in the race you betted on and your win status and prize amount you won. If you won, you can receive your prize money thorough a race manager NPC. If you did not win, a race manager will buy back your ticket by paying you a very small amount of money.
If a server goes down while tickets are being sold, or while a race is in progress, the race will be cancelled. You can receive a full refund for your ticket for a cancelled race through a race manager.
-
+
\ No newline at end of file
diff --git a/L2J_Mobius_1.0_Ertheia/dist/game/data/html/default/30995-3.htm b/L2J_Mobius_1.0_Ertheia/dist/game/data/html/default/30995-3.htm
index 5577c579a4..7ae65a37a4 100644
--- a/L2J_Mobius_1.0_Ertheia/dist/game/data/html/default/30995-3.htm
+++ b/L2J_Mobius_1.0_Ertheia/dist/game/data/html/default/30995-3.htm
@@ -3,6 +3,7 @@
+
+
\ No newline at end of file
diff --git a/L2J_Mobius_1.0_Ertheia/dist/game/data/html/default/30995-4.htm b/L2J_Mobius_1.0_Ertheia/dist/game/data/html/default/30995-4.htm
index bcd1f0d520..30c508b9cb 100644
--- a/L2J_Mobius_1.0_Ertheia/dist/game/data/html/default/30995-4.htm
+++ b/L2J_Mobius_1.0_Ertheia/dist/game/data/html/default/30995-4.htm
@@ -11,6 +11,7 @@
Odds
+
@@ -20,6 +21,7 @@
13%
+
Bet Amount
@@ -37,11 +39,13 @@
Total
0total Adena
-
+
+
If the information is correct, please click Confirm.