Addition of revenge system.
This commit is contained in:
21
L2J_Mobius_Essence_6.2_Vanguard/dist/db_installer/sql/game/character_revenge_history.sql
vendored
Normal file
21
L2J_Mobius_Essence_6.2_Vanguard/dist/db_installer/sql/game/character_revenge_history.sql
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
DROP TABLE IF EXISTS `character_revenge_history`;
|
||||
CREATE TABLE IF NOT EXISTS `character_revenge_history` (
|
||||
`charId` int(10) UNSIGNED NOT NULL,
|
||||
`type` int(10) NOT NULL,
|
||||
`killer_name` VARCHAR(35),
|
||||
`killer_clan` VARCHAR(45),
|
||||
`killer_level` int UNSIGNED NOT NULL,
|
||||
`killer_race` int NOT NULL DEFAULT 0,
|
||||
`killer_class` int NOT NULL DEFAULT 0,
|
||||
`victim_name` VARCHAR(35),
|
||||
`victim_clan` VARCHAR(45),
|
||||
`victim_level` int UNSIGNED NOT NULL,
|
||||
`victim_race` int NOT NULL DEFAULT 0,
|
||||
`victim_class` int NOT NULL DEFAULT 0,
|
||||
`shared` TINYINT(1) NOT NULL DEFAULT 0,
|
||||
`show_location_remaining` int NOT NULL DEFAULT 0,
|
||||
`teleport_remaining` int NOT NULL DEFAULT 0,
|
||||
`shared_teleport_remaining` int NOT NULL DEFAULT 0,
|
||||
`kill_time` BIGINT(10) UNSIGNED NOT NULL,
|
||||
`share_time` BIGINT(10) UNSIGNED NOT NULL
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
|
||||
Reference in New Issue
Block a user