Private shop review.
This commit is contained in:
10
L2J_Mobius_10.3_MasterClass/dist/db_installer/sql/game/item_transaction_history.sql
vendored
Normal file
10
L2J_Mobius_10.3_MasterClass/dist/db_installer/sql/game/item_transaction_history.sql
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
DROP TABLE IF EXISTS `item_transaction_history`;
|
||||
CREATE TABLE IF NOT EXISTS `item_transaction_history` (
|
||||
`created_time` BIGINT UNSIGNED NOT NULL,
|
||||
`item_id` INT NOT NULL,
|
||||
`transaction_type` INT NOT NULL,
|
||||
`enchant_level` INT NOT NULL,
|
||||
`price` BIGINT UNSIGNED NOT NULL,
|
||||
`count` BIGINT UNSIGNED NOT NULL,
|
||||
PRIMARY KEY (`created_time`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
||||
@@ -289,6 +289,12 @@ GridNeighborTurnOffTime = 90
|
||||
# Default: True
|
||||
CorrectPrices = True
|
||||
|
||||
# Private store review limit.
|
||||
PrivateStoreReviewLimit = 30
|
||||
|
||||
# Private store review cache time in milliseconds.
|
||||
PrivateStoreReviewCacheTime = 5000
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Falling Damage
|
||||
|
||||
Reference in New Issue
Block a user