svn -> git Migration

This commit is contained in:
KimLS
2013-02-16 16:14:39 -08:00
parent 88c9715fb0
commit da7347f76f
1174 changed files with 445622 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
DELIMITER $$
DROP FUNCTION IF EXISTS `GetMobType` $$
CREATE FUNCTION `GetMobType` (mobname VARCHAR(64)) RETURNS CHAR(1)
BEGIN
DECLARE Result CHAR(1);
SET Result = NULL;
IF (select count(*) from character_ where name = mobname) > 0 THEN
SET Result = 'C';
ELSEIF (select count(*) from bots where Name = mobname) > 0 THEN
SET Result = 'B';
END IF;
RETURN Result;
END $$
DELIMITER ;
DROP VIEW IF EXISTS `vwGroups`;
CREATE VIEW `vwGroups` AS
select g.groupid as groupid,
GetMobType(g.name) as mobtype,
g.name as name,
g.charid as mobid,
ifnull(c.level, b.BotLevel) as level
from group_id as g
left join character_ as c on g.name = c.name
left join bots as b on g.name = b.Name;
+7
View File
@@ -0,0 +1,7 @@
DROP TABLE IF EXISTS `botactives`;
CREATE TABLE `botactives` (
`ActiveBotId` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`ActiveBotId`),
KEY `FK_botactives_1` (`ActiveBotId`),
CONSTRAINT `FK_botactives_1` FOREIGN KEY (`ActiveBotId`) REFERENCES `bots` (`BotID`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=latin1;
+3
View File
@@ -0,0 +1,3 @@
DROP TABLE IF EXISTS `botactives`;
ALTER TABLE `group_id` DROP PRIMARY KEY, ADD PRIMARY KEY USING BTREE(`groupid`, `charid`, `name`);
+21
View File
@@ -0,0 +1,21 @@
DROP TABLE IF EXISTS `botbuffs`;
CREATE TABLE `botbuffs` (
`BotBuffId` int(10) unsigned NOT NULL AUTO_INCREMENT,
`BotId` int(10) unsigned NOT NULL DEFAULT '0',
`SpellId` int(10) unsigned NOT NULL DEFAULT '0',
`CasterLevel` int(10) unsigned NOT NULL DEFAULT '0',
`DurationFormula` int(10) unsigned NOT NULL DEFAULT '0',
`TicsRemaining` int(11) unsigned NOT NULL DEFAULT '0',
`PoisonCounters` int(11) unsigned NOT NULL DEFAULT '0',
`DiseaseCounters` int(11) unsigned NOT NULL DEFAULT '0',
`CurseCounters` int(11) unsigned NOT NULL DEFAULT '0',
`HitCount` int(10) unsigned NOT NULL DEFAULT '0',
`MeleeRune` int(10) unsigned NOT NULL DEFAULT '0',
`MagicRune` int(10) unsigned NOT NULL DEFAULT '0',
`DeathSaveSuccessChance` int(10) unsigned NOT NULL DEFAULT '0',
`CasterAARank` int(10) unsigned NOT NULL DEFAULT '0',
`Persistent` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`BotBuffId`),
KEY `FK_botbuff_1` (`BotId`),
CONSTRAINT `FK_botbuff_1` FOREIGN KEY (`BotId`) REFERENCES `bots` (`BotID`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=latin1;
@@ -0,0 +1,36 @@
DROP TABLE IF EXISTS `botpetinventory`;
DROP TABLE IF EXISTS `botpetbuffs`;
DROP TABLE IF EXISTS `botpets`;
CREATE TABLE IF NOT EXISTS `botpets` (
`BotPetsId` integer unsigned NOT NULL AUTO_INCREMENT,
`PetId` integer unsigned NOT NULL DEFAULT '0',
`BotId` integer unsigned NOT NULL DEFAULT '0',
`Name` varchar(64) NULL,
`Mana` integer NOT NULL DEFAULT '0',
`HitPoints` integer NOT NULL DEFAULT '0',
PRIMARY KEY (`BotPetsId`),
KEY `FK_botpets_1` (`BotId`),
CONSTRAINT `FK_botpets_1` FOREIGN KEY (`BotId`) REFERENCES `bots` (`BotID`),
CONSTRAINT `U_botpets_1` UNIQUE (`BotId`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=latin1;
CREATE TABLE IF NOT EXISTS `botpetbuffs` (
`BotPetBuffId` int(10) unsigned NOT NULL AUTO_INCREMENT,
`BotPetsId` int(10) unsigned NOT NULL DEFAULT '0',
`SpellId` int(10) unsigned NOT NULL DEFAULT '0',
`CasterLevel` int(10) unsigned NOT NULL DEFAULT '0',
`Duration` int(11) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`BotPetBuffId`),
KEY `FK_botpetbuffs_1` (`BotPetsId`),
CONSTRAINT `FK_botpetbuffs_1` FOREIGN KEY (`BotPetsId`) REFERENCES `botpets` (`BotPetsID`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=latin1;
CREATE TABLE IF NOT EXISTS `botpetinventory` (
`BotPetInventoryId` integer unsigned NOT NULL AUTO_INCREMENT,
`BotPetsId` integer unsigned NOT NULL DEFAULT '0',
`ItemId` integer unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`BotPetInventoryId`),
KEY `FK_botpetinventory_1` (`BotPetsId`),
CONSTRAINT `FK_botpetinventory_1` FOREIGN KEY (`BotPetsId`) REFERENCES `botpets` (`BotPetsID`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=latin1;
@@ -0,0 +1,2 @@
ALTER TABLE `group_id` ADD UNIQUE INDEX `U_group_id_1`(`name`);
ALTER TABLE `group_leaders` ADD UNIQUE INDEX `U_group_leaders_1`(`leadername`);
+112
View File
@@ -0,0 +1,112 @@
DROP VIEW IF EXISTS `vwGroups`;
DROP FUNCTION IF EXISTS `GetMobType`;
DELIMITER $$
DROP FUNCTION IF EXISTS `GetMobTypeByName` $$
CREATE FUNCTION `GetMobTypeByName` (mobname VARCHAR(64)) RETURNS CHAR(1)
BEGIN
DECLARE Result CHAR(1);
SET Result = NULL;
IF (select id from character_ where name = mobname) > 0 THEN
SET Result = 'C';
ELSEIF (select BotID from bots where Name = mobname) > 0 THEN
SET Result = 'B';
END IF;
RETURN Result;
END $$
DELIMITER ;
DROP VIEW IF EXISTS `vwGroups`;
CREATE VIEW `vwGroups` AS
select g.groupid as groupid,
GetMobTypeByName(g.name) as mobtype,
g.name as name,
g.charid as mobid,
ifnull(c.level, b.BotLevel) as level
from group_id as g
left join character_ as c on g.name = c.name
left join bots as b on g.name = b.Name;
DELIMITER $$
DROP FUNCTION IF EXISTS `GetMobTypeById` $$
CREATE FUNCTION `GetMobTypeById` (mobid INTEGER UNSIGNED) RETURNS CHAR(1)
BEGIN
DECLARE Result CHAR(1);
SET Result = NULL;
IF (select id from character_ where id = mobid) > 0 THEN
SET Result = 'C';
ELSEIF (select BotID from bots where BotID = mobid) > 0 THEN
SET Result = 'B';
END IF;
RETURN Result;
END $$
DELIMITER ;
ALTER TABLE `bots` ADD COLUMN `LastZoneId` SMALLINT(6) NOT NULL DEFAULT 0 AFTER `TotalPlayTime`;
DROP TABLE IF EXISTS `botguildmembers`;
CREATE TABLE `botguildmembers` (
`char_id` int(11) NOT NULL default '0',
`guild_id` mediumint(8) unsigned NOT NULL default '0',
`rank` tinyint(3) unsigned NOT NULL default '0',
`tribute_enable` tinyint(3) unsigned NOT NULL default '0',
`total_tribute` int(10) unsigned NOT NULL default '0',
`last_tribute` int(10) unsigned NOT NULL default '0',
`banker` tinyint(3) unsigned NOT NULL default '0',
`public_note` text NULL,
PRIMARY KEY (`char_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
DROP VIEW IF EXISTS `vwGuildMembers`;
CREATE VIEW `vwGuildMembers` AS
select 'C' as mobtype,
cm.char_id,
cm.guild_id,
cm.rank,
cm.tribute_enable,
cm.total_tribute,
cm.last_tribute,
cm.banker,
cm.public_note
from guild_members as cm
union all
select 'B' as mobtype,
bm.char_id,
bm.guild_id,
bm.rank,
bm.tribute_enable,
bm.total_tribute,
bm.last_tribute,
bm.banker,
bm.public_note
from botguildmembers as bm;
DROP VIEW IF EXISTS `vwBotCharacterMobs`;
CREATE VIEW `vwBotCharacterMobs` AS
select 'C' as mobtype,
c.id,
c.name,
c.class,
c.level,
c.timelaston,
c.zoneid
from character_ as c
union all
select 'B' as mobtype,
b.BotID as id,
b.Name as name,
b.Class as class,
b.BotLevel as level,
unix_timestamp(b.LastSpawnDate) as timelaston,
b.LastZoneId as zoneid
from bots as b;
@@ -0,0 +1,2 @@
insert into rule_values values (0, 'Chat:ServerWideOOC', 'true');
insert into rule_values values (0, 'Chat:ServerWideAuction', 'true');
@@ -0,0 +1 @@
DROP TABLE IF EXISTS `botgroups`;
+4
View File
@@ -0,0 +1,4 @@
ALTER TABLE `traps` DROP `spawnchance`;
ALTER TABLE `traps` ADD `respawn_time` INT(11) UNSIGNED DEFAULT '60' NOT NULL AFTER `skill`;
ALTER TABLE `traps` ADD `level` MEDIUMINT(4) UNSIGNED DEFAULT '1' NOT NULL AFTER `skill`;
ALTER TABLE `traps` ADD `respawn_var` INT(11) UNSIGNED DEFAULT '0' NOT NULL AFTER `respawn_time`;
+9
View File
@@ -0,0 +1,9 @@
CREATE TABLE `player_titlesets` (
`id` int(11) unsigned NOT NULL auto_increment,
`char_id` int(11) unsigned NOT NULL,
`title_set` int(11) unsigned NOT NULL,
PRIMARY KEY (`id`),
KEY `id` (`id`)
);
alter table titles add column `title_set` int(11) NOT NULL default '0';
@@ -0,0 +1,5 @@
insert into rule_values values (0, 'Combat:AdjustProcPerMinute', 'true');
insert into rule_values values (0, 'Combat:AvgProcsPerMinute', '18.0');
insert into rule_values values (0, 'Combat:ProcPerMinDexContrib', '0.075');
insert into rule_values values (0, 'Combat:BaseProcChance', '0.035');
insert into rule_values values (0, 'Combat:ProcDexDivideBy', '11000');
+35
View File
@@ -0,0 +1,35 @@
DROP TABLE IF EXISTS `botgroupmembers`;
DROP TABLE IF EXISTS `botgroup`;
CREATE TABLE IF NOT EXISTS `botgroup` (
`BotGroupId` integer unsigned NOT NULL AUTO_INCREMENT,
`BotGroupLeaderBotId` integer unsigned NOT NULL DEFAULT '0',
`BotGroupName` varchar(64) NOT NULL,
PRIMARY KEY (`BotGroupId`),
KEY FK_botgroup_1 (BotGroupLeaderBotId),
CONSTRAINT FK_botgroup_1 FOREIGN KEY (BotGroupLeaderBotId) REFERENCES bots (BotID)
) ENGINE=InnoDB;
CREATE TABLE IF NOT EXISTS `botgroupmembers` (
`BotGroupMemberId` integer unsigned NOT NULL AUTO_INCREMENT,
`BotGroupId` integer unsigned NOT NULL DEFAULT '0',
`BotId` integer unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`BotGroupMemberId`),
KEY FK_botgroupmembers_1 (BotGroupId),
CONSTRAINT FK_botgroupmembers_1 FOREIGN KEY (BotGroupId) REFERENCES botgroup (BotGroupId),
KEY FK_botgroupmembers_2 (BotId),
CONSTRAINT FK_botgroupmembers_2 FOREIGN KEY (BotId) REFERENCES bots (BotID)
) ENGINE=InnoDB;
DROP VIEW IF EXISTS `vwBotGroups`;
CREATE VIEW `vwBotGroups` AS
select g.BotGroupId,
g.BotGroupName,
g.BotGroupLeaderBotId,
b.Name as BotGroupLeaderName,
b.BotOwnerCharacterId,
c.name as BotOwnerCharacterName
from botgroup as g
join bots as b on g.BotGroupLeaderBotId = b.BotID
join character_ as c on b.BotOwnerCharacterID = c.id
order by b.BotOwnerCharacterId, g.BotGroupName;
+10
View File
@@ -0,0 +1,10 @@
DROP TABLE IF EXISTS `spell_globals`;
CREATE TABLE `spell_globals` (
`spellid` int(11) NOT NULL,
`spell_name` varchar(64) NOT NULL default '',
`qglobal` varchar(65) NOT NULL default '',
`value` varchar(65) NOT NULL default '',
PRIMARY KEY (`spellid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
INSERT INTO `rule_values` VALUES ('1', 'Spells:EnableSpellGlobals', 'false', 'If true, spells check the spell_globals table against quest globals before allowing spells to scribe via quest::scribespell');
@@ -0,0 +1 @@
INSERT INTO `rule_values` VALUES ('1', 'NPC:ReturnNonQuestNoDropItems', 'false', 'Return NO DROP items on NPCs that do not have an EVENT_ITEM sub in their script');
@@ -0,0 +1,2 @@
ALTER TABLE `account` ADD `suspendeduntil` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00';
+401
View File
@@ -0,0 +1,401 @@
--
--
-- type should be one of:
--
-- 244 - YOU are rotting! / attacker beings to decay
-- 245 - YOU are chilled to the bone / attacker is chilled to the bone
-- 246 - YOU are freezing! / attacker is freezing
-- 247 - YOU are tormented! / attacker is tormented
-- 248 - YOU are burned! / attacker is burned
-- 249 - YOU are pierced by thorns / attacker is pierced by thorns
--
-- Table structure for table `damageshieldtypes`
--
DROP TABLE IF EXISTS `damageshieldtypes`;
CREATE TABLE IF NOT EXISTS `damageshieldtypes` (
`spellid` int(10) unsigned NOT NULL,
`type` tinyint(3) unsigned NOT NULL,
PRIMARY KEY (`spellid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- The types below are a guess and not guaranteed to be correct.
--
-- Shield of Brambles
REPLACE into damageshieldtypes values(129,249); -- THORNS
-- Feedback
REPLACE into damageshieldtypes values(191,248); -- BURNT
-- Shield of Thistles
REPLACE into damageshieldtypes values(256,249); -- THORNS
-- Shield of Barbs
REPLACE into damageshieldtypes values(273,249); -- THORNS
-- Shield of Fire
REPLACE into damageshieldtypes values(332,248); -- BURNT
-- Shield of Thorns
REPLACE into damageshieldtypes values(356,249); -- THORNS
-- Banshee Aura
REPLACE into damageshieldtypes values(364,247); -- TORMENTED
-- O'Keils Radiation
REPLACE into damageshieldtypes values(378,248); -- BURNT
-- Shield of Flame
REPLACE into damageshieldtypes values(411,248); -- BURNT
-- Shield of Lava
REPLACE into damageshieldtypes values(412,248); -- BURNT
-- Shield of Spikes
REPLACE into damageshieldtypes values(432,249); -- THORNS
-- Inferno Shield
REPLACE into damageshieldtypes values(479,248); -- BURNT
-- Thistlecoat
REPLACE into damageshieldtypes values(515,249); -- THORNS
-- Barbcoat
REPLACE into damageshieldtypes values(516,249); -- THORNS
-- Bramblecoat
REPLACE into damageshieldtypes values(517,249); -- THORNS
-- Spikecoat
REPLACE into damageshieldtypes values(518,249); -- THORNS
-- Thorncoat
REPLACE into damageshieldtypes values(519,249); -- THORNS
-- Illusion: Fire Elemental
REPLACE into damageshieldtypes values(598,248); -- BURNT
-- Barrier of Combustion
REPLACE into damageshieldtypes values(680,248); -- BURNT
-- Psalm of Warmth
REPLACE into damageshieldtypes values(712,248); -- BURNT
-- Psalm of Cooling
REPLACE into damageshieldtypes values(713,246); -- FREEZING
-- Psalm of Vitality
REPLACE into damageshieldtypes values(715,245); -- CHILLED
-- Psalm of Purity
REPLACE into damageshieldtypes values(716,245); -- CHILLED
-- Chromatic Chaos
REPLACE into damageshieldtypes values(771,247); -- TORMENTED
-- AuraofElementalMastery
REPLACE into damageshieldtypes values(847,248); -- BURNT
-- FireElementalAura
REPLACE into damageshieldtypes values(927,248); -- BURNT
-- Vampire Aura
REPLACE into damageshieldtypes values(930,245); -- CHILLED
-- BarbedBones
REPLACE into damageshieldtypes values(932,249); -- THORNS
-- FrostElementalAura
REPLACE into damageshieldtypes values(953,246); -- FREEZING
-- Fwexar's Rage
REPLACE into damageshieldtypes values(1069,247); -- TORMENTED
-- Spiked Adornment
REPLACE into damageshieldtypes values(1143,249); -- THORNS
-- Bristling Armament
REPLACE into damageshieldtypes values(1249,249); -- THORNS
-- Scorching Skin
REPLACE into damageshieldtypes values(1251,248); -- BURNT
-- Kilva's Skin of Flame
REPLACE into damageshieldtypes values(1331,248); -- BURNT
-- Frostreaver's Blessing
REPLACE into damageshieldtypes values(1350,247); -- TORMENTED
-- Discordant Energy
REPLACE into damageshieldtypes values(1357,248); -- BURNT
-- Fiery Might
REPLACE into damageshieldtypes values(1367,248); -- BURNT
-- O'Keils Flickering Flame
REPLACE into damageshieldtypes values(1419,248); -- BURNT
-- Call of Earth
REPLACE into damageshieldtypes values(1462,249); -- THORNS
-- Bladecoat
REPLACE into damageshieldtypes values(1558,249); -- THORNS
-- Shield of Blades
REPLACE into damageshieldtypes values(1560,249); -- THORNS
-- Legacy of Thorn
REPLACE into damageshieldtypes values(1561,249); -- THORNS
-- Cadeau of Flame
REPLACE into damageshieldtypes values(1667,248); -- BURNT
-- Boon of Immolation
REPLACE into damageshieldtypes values(1668,248); -- BURNT
-- Aegis of Ro
REPLACE into damageshieldtypes values(1669,248); -- BURNT
-- Legacy of Spike
REPLACE into damageshieldtypes values(1727,249); -- THORNS
-- McVaxius` Rousing Rondo
REPLACE into damageshieldtypes values(1760,248); -- BURNT
-- Shield of the Winter
REPLACE into damageshieldtypes values(1795,246); -- FREEZING
-- Acting Fire Shield
REPLACE into damageshieldtypes values(1910,248); -- BURNT
-- Acting Poison Shield
REPLACE into damageshieldtypes values(1911,245); -- CHILLED
-- Acting Cold Shield
REPLACE into damageshieldtypes values(1912,246); -- FREEZING
-- Acting Disease Shield
REPLACE into damageshieldtypes values(1913,244); -- CHILLED
-- Shield of the Eighth
REPLACE into damageshieldtypes values(1963,247); -- TORMENTED
-- Thorny Shield
REPLACE into damageshieldtypes values(1975,249); -- THORNS
-- Aegis of Bathezid
REPLACE into damageshieldtypes values(2018,248); -- BURNT
-- Blessing of the Vah Shir
REPLACE into damageshieldtypes values(2067,247); -- TORMENTED
-- Ancient: Legacy of Blades
REPLACE into damageshieldtypes values(2125,249); -- THORNS
-- Shield of Darkness
REPLACE into damageshieldtypes values(2166,247); -- TORMENTED
-- Icicle Aura
REPLACE into damageshieldtypes values(2197,246); -- FREEZING
-- Tempest Guard
REPLACE into damageshieldtypes values(2316,248); -- BURNT
-- O'Keils Embers
REPLACE into damageshieldtypes values(2551,248); -- BURNT
-- Cloak of the Akheva
REPLACE into damageshieldtypes values(2580,245); -- CHILLED
-- Riftwind's Protection
REPLACE into damageshieldtypes values(2593,249); -- THORNS
-- Force of Nature
REPLACE into damageshieldtypes values(2595,249); -- THORNS
-- Warder's Protection
REPLACE into damageshieldtypes values(2600,249); -- THORNS
-- Unity of Fire
REPLACE into damageshieldtypes values(2673,248); -- BURNT
-- Sonic Feedback
REPLACE into damageshieldtypes values(2773,247); -- TORMENTED
-- Fire Elemental Form I
REPLACE into damageshieldtypes values(2795,248); -- BURNT
-- Fire Elemental Form II
REPLACE into damageshieldtypes values(2796,248); -- BURNT
-- Fire Elemental Form III
REPLACE into damageshieldtypes values(2797,248); -- BURNT
-- Golem Coat
REPLACE into damageshieldtypes values(2831,249); -- THORNS
-- Aura of Vinitras
REPLACE into damageshieldtypes values(2926,245); -- CHILLED
-- Smoldering Bulwark
REPLACE into damageshieldtypes values(2976,248); -- BURNT
-- Corona of Sol
REPLACE into damageshieldtypes values(3006,248); -- BURNT
-- Protection of the Wild
REPLACE into damageshieldtypes values(3039,249); -- THORNS
-- Shield of Eternal Flame
REPLACE into damageshieldtypes values(3056,248); -- BURNT
-- Portal Flames
REPLACE into damageshieldtypes values(3065,248); -- BURNT
-- Flameshield of Ro
REPLACE into damageshieldtypes values(3198,248); -- BURNT
-- Wrath of the Wild
REPLACE into damageshieldtypes values(3255,249); -- THORNS
-- Wrath of the Wild
REPLACE into damageshieldtypes values(3256,249); -- THORNS
-- Wrath of the Wild
REPLACE into damageshieldtypes values(3257,249); -- THORNS
-- Spirit of the Wood
REPLACE into damageshieldtypes values(3277,249); -- THORNS
-- Spirit of the Wood
REPLACE into damageshieldtypes values(3278,249); -- THORNS
-- Spirit of the Wood
REPLACE into damageshieldtypes values(3279,249); -- THORNS
-- Legacy of Bracken
REPLACE into damageshieldtypes values(3295,249); -- THORNS
-- Psalm of Veeshan
REPLACE into damageshieldtypes values(3368,249); -- THORNS
-- Warsong of Zek
REPLACE into damageshieldtypes values(3374,247); -- TORMENTED
-- Call of the Rathe
REPLACE into damageshieldtypes values(3419,247); -- TORMENTED
-- Shield of Bracken
REPLACE into damageshieldtypes values(3448,249); -- THORNS
-- Brackencoat
REPLACE into damageshieldtypes values(3450,249); -- THORNS
-- Maelstrom of Ro
REPLACE into damageshieldtypes values(3486,248); -- BURNT
-- Cloak of Luclin
REPLACE into damageshieldtypes values(3490,245); -- CHILLED
-- O`Keils Levity
REPLACE into damageshieldtypes values(3581,248); -- BURNT
-- Shield of Pain
REPLACE into damageshieldtypes values(3608,247); -- TORMENTED
-- Shield of Torment
REPLACE into damageshieldtypes values(3609,247); -- TORMENTED
-- Pyrokinetic Aura
REPLACE into damageshieldtypes values(3741,248); -- BURNT
-- Aquatic Aura
REPLACE into damageshieldtypes values(3743,247); -- TORMENTED
-- Caustic Aura
REPLACE into damageshieldtypes values(3745,248); -- BURNT
-- Barrier of Hatred
REPLACE into damageshieldtypes values(3766,245); -- CHILLED
-- Thistle Ward
REPLACE into damageshieldtypes values(3858,249); -- THORNS
-- Bramble Ward
REPLACE into damageshieldtypes values(3859,249); -- THORNS
-- Spike Ward
REPLACE into damageshieldtypes values(3860,249); -- THORNS
-- Vengeful Guard
REPLACE into damageshieldtypes values(3871,245); -- CHILLED
-- Aura of the Defender
REPLACE into damageshieldtypes values(3879,248); -- BURNT
-- Plagued Torment
REPLACE into damageshieldtypes values(3916,247); -- TORMENTED
-- Acid Aura
REPLACE into damageshieldtypes values(4115,248); -- BURNT
-- Shield of Pain I
REPLACE into damageshieldtypes values(4219,247); -- TORMENTED
-- Shield of Pain II
REPLACE into damageshieldtypes values(4220,247); -- TORMENTED
-- Shield of Pain III
REPLACE into damageshieldtypes values(4221,247); -- TORMENTED
-- Shield of Pain IV
REPLACE into damageshieldtypes values(4222,247); -- TORMENTED
-- Shield of Pain V
REPLACE into damageshieldtypes values(4223,247); -- TORMENTED
-- Shield of Pain VI
REPLACE into damageshieldtypes values(4224,247); -- TORMENTED
-- Shield of Pain VII
REPLACE into damageshieldtypes values(4225,247); -- TORMENTED
-- Shield of Pain VIII
REPLACE into damageshieldtypes values(4226,247); -- TORMENTED
-- Shield of Pain IX
REPLACE into damageshieldtypes values(4227,247); -- TORMENTED
-- Shield of Pain X
REPLACE into damageshieldtypes values(4228,247); -- TORMENTED
-- Icicle Shield
REPLACE into damageshieldtypes values(4289,246); -- FREEZING
-- Allure of Hatred
REPLACE into damageshieldtypes values(4441,247); -- TORMENTED
-- Petrad's Protection
REPLACE into damageshieldtypes values(4473,248); -- BURNT
-- Fire Elemental Form IV
REPLACE into damageshieldtypes values(4560,248); -- BURNT
-- Fire Elemental Form V
REPLACE into damageshieldtypes values(4561,248); -- BURNT
-- Aura of the Hunter
REPLACE into damageshieldtypes values(4663,249); -- THORNS
-- Blood Shield
REPLACE into damageshieldtypes values(4703,248); -- BURNT
-- Gleaming Armor
REPLACE into damageshieldtypes values(4715,248); -- BURNT
-- Bloodhound's Revenge
REPLACE into damageshieldtypes values(4731,248); -- BURNT
-- Haste of the Tunat'Muram
REPLACE into damageshieldtypes values(4740,249); -- THORNS
-- Protection of Discord I
REPLACE into damageshieldtypes values(4744,247); -- TORMENTED
-- Protection of Discord II
REPLACE into damageshieldtypes values(4745,247); -- TORMENTED
-- Protection of Discord III
REPLACE into damageshieldtypes values(4746,247); -- TORMENTED
-- Malevolent Retribution
REPLACE into damageshieldtypes values(4848,245); -- CHILLED
-- War March of the Mastruq
REPLACE into damageshieldtypes values(4871,247); -- TORMENTED
-- Arrow of Intensity
REPLACE into damageshieldtypes values(4999,248); -- BURNT
-- Frost Shield
REPLACE into damageshieldtypes values(5098,246); -- FREEZING
-- Frost Guard
REPLACE into damageshieldtypes values(5099,246); -- FREEZING
-- Basilisk Aura
REPLACE into damageshieldtypes values(5171,248); -- BURNT
-- Shield of Briar
REPLACE into damageshieldtypes values(5302,249); -- THORNS
-- Guard of the Earth
REPLACE into damageshieldtypes values(5305,249); -- THORNS
-- Briarcoat
REPLACE into damageshieldtypes values(5307,249); -- THORNS
-- Ward of the Hunter
REPLACE into damageshieldtypes values(5317,249); -- THORNS
-- Cloak of Discord
REPLACE into damageshieldtypes values(5339,248); -- BURNT
-- Nettle Shield
REPLACE into damageshieldtypes values(5358,249); -- THORNS
-- Nettlecoat
REPLACE into damageshieldtypes values(5362,249); -- THORNS
-- Circle of Nettles
REPLACE into damageshieldtypes values(5365,249); -- THORNS
-- War March of Muram
REPLACE into damageshieldtypes values(5376,247); -- TORMENTED
-- Fireskin
REPLACE into damageshieldtypes values(5466,248); -- BURNT
-- Circle of Fireskin
REPLACE into damageshieldtypes values(5488,248); -- BURNT
-- Pyrilen Skin
REPLACE into damageshieldtypes values(5492,248); -- BURNT
-- Jagged Spikes
REPLACE into damageshieldtypes values(5698,249); -- THORNS
-- Flickering Fire
REPLACE into damageshieldtypes values(5705,248); -- BURNT
-- Splinters
REPLACE into damageshieldtypes values(5802,249); -- THORNS
-- Electric Shock
REPLACE into damageshieldtypes values(5810,248); -- BURNT
-- Static Shield
REPLACE into damageshieldtypes values(5811,248); -- BURNT
-- Flamegore's Fire
REPLACE into damageshieldtypes values(5817,248); -- BURNT
-- Spirit of the Grove
REPLACE into damageshieldtypes values(5881,249); -- THORNS
-- Spirit of the Grove
REPLACE into damageshieldtypes values(5882,249); -- THORNS
-- Spirit of the Grove
REPLACE into damageshieldtypes values(5883,249); -- THORNS
-- Pyrilen Ember
REPLACE into damageshieldtypes values(5997,248); -- BURNT
-- Gelidran Sleet
REPLACE into damageshieldtypes values(6006,246); -- FREEZING
-- Ancient: Veil of Pyrilonus
REPLACE into damageshieldtypes values(6145,248); -- BURNT
-- Hungry Vines Recourse
REPLACE into damageshieldtypes values(6154,249); -- THORNS
-- Discordant Spikes
REPLACE into damageshieldtypes values(6160,249); -- THORNS
-- Hateful Guard
REPLACE into damageshieldtypes values(6373,247); -- TORMENTED
-- Malleable Ice
REPLACE into damageshieldtypes values(6558,246); -- FREEZING
-- Mass Illusion: Fire Elemental
REPLACE into damageshieldtypes values(6581,248); -- BURNT
-- Vishimtar's Aura
REPLACE into damageshieldtypes values(6643,245); -- CHILLED
-- Embrace of Life
REPLACE into damageshieldtypes values(6650,247); -- TORMENTED
-- Storm Guard
REPLACE into damageshieldtypes values(6769,247); -- TORMENTED
-- Razor Bones
REPLACE into damageshieldtypes values(6833,249); -- THORNS
-- Ithiasor's Aura
REPLACE into damageshieldtypes values(6887,245); -- CHILLED
-- Clan Aura
REPLACE into damageshieldtypes values(7082,247); -- TORMENTED
-- Orcish Bulwark
REPLACE into damageshieldtypes values(7129,247); -- TORMENTED
-- Fire Skin I
REPLACE into damageshieldtypes values(7589,248); -- BURNT
-- Fire Skin II
REPLACE into damageshieldtypes values(7590,248); -- BURNT
-- Fire Skin III
REPLACE into damageshieldtypes values(7591,248); -- BURNT
-- Fire Skin IV
REPLACE into damageshieldtypes values(7592,248); -- BURNT
-- Fire Skin V
REPLACE into damageshieldtypes values(7593,248); -- BURNT
-- Fire Skin VI
REPLACE into damageshieldtypes values(7594,248); -- BURNT
-- Fire Skin VII
REPLACE into damageshieldtypes values(7595,248); -- BURNT
-- Fire Skin VIII
REPLACE into damageshieldtypes values(7596,248); -- BURNT
-- Fire Skin IX
REPLACE into damageshieldtypes values(7597,248); -- BURNT
-- Fire Skin X
REPLACE into damageshieldtypes values(7598,248); -- BURNT
-- Root Rage
REPLACE into damageshieldtypes values(7702,247); -- TORMENTED
-- Last Stand
REPLACE into damageshieldtypes values(7715,247); -- TORMENTED
-- BloodBarbs
REPLACE into damageshieldtypes values(7747,249); -- THORNS
-- Reaper's Stance
REPLACE into damageshieldtypes values(8189,247); -- TORMENTED
-- Convergence of Spirits
REPLACE into damageshieldtypes values(8190,249); -- THORNS
-- Convergence of Spirits
REPLACE into damageshieldtypes values(8191,249); -- THORNS
-- Convergence of Spirits
REPLACE into damageshieldtypes values(8192,249); -- THORNS
-- Spiritfury
REPLACE into damageshieldtypes values(8246,247); -- TORMENTED
+2
View File
@@ -0,0 +1,2 @@
ALTER TABLE `npc_types` ADD COLUMN `prim_melee_type` TINYINT(4) UNSIGNED NOT NULL DEFAULT 28 AFTER `d_meele_texture2`;
ALTER TABLE `npc_types` ADD COLUMN `sec_melee_type` TINYINT(4) UNSIGNED NOT NULL DEFAULT 28 AFTER `prim_melee_type`;
+1
View File
@@ -0,0 +1 @@
INSERT INTO commands VALUES ('aggrozone', 100, '[aggro] - Aggro every mob in the zone with X aggro. Default is 0. Not recommend if you\'re not invulnerable.');
@@ -0,0 +1,7 @@
INSERT INTO rule_values VALUES
(0, "Spells:BaseCritChance", 0),
(0, "Spells:BaseCritRatio", 0),
(0, "Spells:WizCritLevel", 12),
(0, "Spells:WizCritChance", 7),
(0, "Spells:WizCritRatio", 15)
;
+18
View File
@@ -0,0 +1,18 @@
-- Required
ALTER TABLE botinventory ADD COLUMN
(charges tinyint(3) unsigned DEFAULT 0,
color INTEGER unsigned NOT NULL DEFAULT 0,
augslot1 mediumint(7) unsigned NOT NULL DEFAULT 0,
augslot2 mediumint(7) unsigned NOT NULL DEFAULT 0,
augslot3 mediumint(7) unsigned NOT NULL DEFAULT 0,
augslot4 mediumint(7) unsigned NOT NULL DEFAULT 0,
augslot5 mediumint(7) unsigned DEFAULT 0,
instnodrop tinyint(1) unsigned NOT NULL DEFAULT 0);
-- only required for updating existing bots
UPDATE botinventory SET charges=(select maxcharges from items WHERE id=itemid) WHERE (select maxcharges from items WHERE id=itemid)>=0;
UPDATE botinventory SET charges=255 WHERE (select maxcharges from items WHERE id=itemid)=(-1);
UPDATE botinventory SET charges=1 WHERE charges=0;
UPDATE botinventory SET color=(select color from items WHERE id=itemid) WHERE itemid=(SELECT id FROM items WHERE id=itemid);
UPDATE botinventory SET instnodrop=(select attuneable from items WHERE id=itemid) WHERE itemid=(SELECT id FROM items WHERE id=itemid);
@@ -0,0 +1 @@
INSERT INTO `rule_values` VALUES ('1', 'Character:DeathExpLossMaxLevel', '255', 'Any level greater than this will no longer lose exp on death');
+15
View File
@@ -0,0 +1,15 @@
CREATE TABLE `guild_bank` (
`guildid` int(10) unsigned NOT NULL default '0',
`area` tinyint(3) unsigned NOT NULL default '0',
`slot` int(4) unsigned NOT NULL default '0',
`itemid` int(10) unsigned NOT NULL default '0',
`qty` int(10) unsigned NOT NULL default '0',
`donator` varchar(64) default NULL,
`permissions` tinyint(3) unsigned NOT NULL default '0',
`whofor` varchar(64) default NULL,
KEY `guildid` (`guildid`),
KEY `area` (`area`),
KEY `slot` (`slot`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
insert into rule_values values (1,'World:GuildBankZoneID','345', 'ID of zone the Guild Bank works in. Default 345, guildhall');
@@ -0,0 +1 @@
INSERT INTO rule_values VALUES (0, "Character:SharedBankPlat", false);
@@ -0,0 +1,6 @@
INSERT INTO rule_values VALUES
(0, "Spells:ResistPerLevelDiff", 85),
(0, "Combat:BaseHitChance", 54.0),
(0, "Combat:HitPerLevelDiff", 145),
(0, "Combat:AgiHitFactor", 0.015)
;
+2
View File
@@ -0,0 +1,2 @@
ALTER TABLE `tasks` ADD `repeatable` TINYINT( 1 ) UNSIGNED NOT NULL DEFAULT '1';
@@ -0,0 +1 @@
alter table tblWorldServerRegistration add ServerTrusted integer NOT NULL after ServerAdminID;
+12
View File
@@ -0,0 +1,12 @@
create table `char_recipe_list` (
`char_id` int NOT NULL,
`recipe_id` int NOT NULL,
`madecount` int NOT NULL default 0,
primary key (`char_id`, `recipe_id`)
) Engine=InnoDB;
alter table `tradeskill_recipe` add column `must_learn` tinyint not null default 0;
insert into rule_values (ruleset_id, rule_name, rule_value, notes) values
(1, 'Skills:UseLimitTradeskillSearchSkillDiff', 'true', 'Enables the limit for the maximum difference between trivial and skill for recipe searches and favorites.'),
(1, 'Skills:MaxTradeskillSearchSkillDiff', '50', 'The maximum difference in skill between the trivial of an item and the skill of the player if the trivial is higher than the skill. Recipes that have not been learnt or made at least once via the Experiment mode will be removed from searches based on this criteria.');
@@ -0,0 +1 @@
INSERT INTO `rule_values` VALUES ('1', 'Character:SoDClientUseSoDHPManaEnd', 'false', 'Setting this to true will allow SoD clients to use the SoD HP/Mana/End formulas and previous clients will use the old formulas');
+7
View File
@@ -0,0 +1,7 @@
ALTER TABLE `faction_list` ADD COLUMN `mod_r42` smallint(6) NOT NULL default '0' AFTER `mod_r14`;
ALTER TABLE `faction_list` ADD COLUMN `mod_r367` smallint(6) NOT NULL default '0' AFTER `mod_r330`;
ALTER TABLE `faction_list` ADD COLUMN `mod_r522` smallint(6) NOT NULL default '0' AFTER `mod_r367`;
UPDATE faction_list SET mod_r367 = mod_r60;
UPDATE faction_list SET mod_r42 = mod_r120;
ALTER TABLE `faction_list` DROP COLUMN `mod_r60`;
ALTER TABLE `faction_list` DROP COLUMN `mod_r120`;
@@ -0,0 +1,40 @@
INSERT INTO altadv_vars (skill_id, name, cost, max_level, hotkey_sid, hotkey_sid2, title_sid, desc_sid, type, spellid, prereq_skill, prereq_minpoints, spell_type,
spell_refresh, classes, berserker, class_type, cost_inc, aa_expansion, special_category, sof_type, sof_cost_inc, sof_max_level, sof_next_skill, clientver) VALUES
('7800', 'Harm Touch', '0', '17', '7800', '7800', '7800', '7800', '3', '13531', '0', '0', '39', '4320', '32', '0', '1', '1', '0', '9', '3', '0', '17', '7800', '4'),
('7850', 'Lay on Hands', '0', '17', '7850', '7850', '7850', '7850', '3', '13546', '0', '0', '39', '4320', '8', '0', '1', '1', '0', '9', '3', '0', '17', '7850', '4');
INSERT INTO aa_actions (aaid, rank, reuse_time, spell_id, target, nonspell_action, nonspell_mana, nonspell_duration, redux_aa, redux_rate, redux_aa2, redux_rate2) VALUES
('7800', '0', '4320', '13531', '2', '0', '0', '0', '0', '0', '0', '0'),
('7800', '1', '4320', '13532', '2', '0', '0', '0', '0', '0', '0', '0'),
('7800', '2', '4320', '13533', '2', '0', '0', '0', '0', '0', '0', '0'),
('7800', '3', '4320', '13534', '2', '0', '0', '0', '0', '0', '0', '0'),
('7800', '4', '4320', '13535', '2', '0', '0', '0', '0', '0', '0', '0'),
('7800', '5', '4320', '13536', '2', '0', '0', '0', '0', '0', '0', '0'),
('7800', '6', '4320', '13537', '2', '0', '0', '0', '0', '0', '0', '0'),
('7800', '7', '4320', '13538', '2', '0', '0', '0', '0', '0', '0', '0'),
('7800', '8', '4320', '13539', '2', '0', '0', '0', '0', '0', '0', '0'),
('7800', '9', '4320', '13540', '2', '0', '0', '0', '0', '0', '0', '0'),
('7800', '10', '4320', '13541', '2', '0', '0', '0', '0', '0', '0', '0'),
('7800', '11', '4320', '13542', '2', '0', '0', '0', '0', '0', '0', '0'),
('7800', '12', '4320', '13543', '2', '0', '0', '0', '0', '0', '0', '0'),
('7800', '13', '4320', '13544', '2', '0', '0', '0', '0', '0', '0', '0'),
('7800', '14', '4320', '13545', '2', '0', '0', '0', '0', '0', '0', '0'),
('7800', '15', '4320', '13562', '2', '0', '0', '0', '0', '0', '0', '0'),
('7800', '16', '4320', '13563', '2', '0', '0', '0', '0', '0', '0', '0'),
('7850', '0', '4320', '13546', '2', '0', '0', '0', '0', '0', '0', '0'),
('7850', '1', '4320', '13547', '2', '0', '0', '0', '0', '0', '0', '0'),
('7850', '2', '4320', '13548', '2', '0', '0', '0', '0', '0', '0', '0'),
('7850', '3', '4320', '13549', '2', '0', '0', '0', '0', '0', '0', '0'),
('7850', '4', '4320', '13550', '2', '0', '0', '0', '0', '0', '0', '0'),
('7850', '5', '4320', '13551', '2', '0', '0', '0', '0', '0', '0', '0'),
('7850', '6', '4320', '13552', '2', '0', '0', '0', '0', '0', '0', '0'),
('7850', '7', '4320', '13553', '2', '0', '0', '0', '0', '0', '0', '0'),
('7850', '8', '4320', '13554', '2', '0', '0', '0', '0', '0', '0', '0'),
('7850', '9', '4320', '13555', '2', '0', '0', '0', '0', '0', '0', '0'),
('7850', '10', '4320', '13556', '2', '0', '0', '0', '0', '0', '0', '0'),
('7850', '11', '4320', '13557', '2', '0', '0', '0', '0', '0', '0', '0'),
('7850', '12', '4320', '13558', '2', '0', '0', '0', '0', '0', '0', '0'),
('7850', '13', '4320', '13559', '2', '0', '0', '0', '0', '0', '0', '0'),
('7850', '14', '4320', '13560', '2', '0', '0', '0', '0', '0', '0', '0'),
('7850', '15', '4320', '13561', '2', '0', '0', '0', '0', '0', '0', '0'),
('7850', '16', '4320', '16028', '2', '0', '0', '0', '0', '0', '0', '0');
@@ -0,0 +1,26 @@
DELETE FROM `altadv_vars` WHERE `skill_id` = '844';
DELETE FROM `altadv_vars` WHERE `skill_id` = '1319';
DELETE FROM `altadv_vars` WHERE `skill_id` = '209';
DELETE FROM `altadv_vars` WHERE `skill_id` = '1134';
DELETE FROM `altadv_vars` WHERE `skill_id` = '1158';
UPDATE `altadv_vars` SET `prereq_skill`=`prereq_skill`+1 Where `prereq_skill`>=86;
UPDATE `altadv_vars` SET `prereq_skill`=`prereq_skill`+1 Where `prereq_skill`>=226;
INSERT INTO altadv_vars (skill_id, name, cost, max_level, hotkey_sid, hotkey_sid2, title_sid, desc_sid, type, spellid, prereq_skill, prereq_minpoints, spell_type, spell_refresh, classes, berserker, class_type, cost_inc) VALUES
(844, 'Advanced Theft of Life', 5, 2, 31455, 31456, 31453, 31454, 6, 4294967295, 202, 3, 0, 0, 2080, 0, 65, 0);
INSERT INTO altadv_vars (skill_id, name, cost, max_level, hotkey_sid, hotkey_sid2, title_sid, desc_sid, type, spellid, prereq_skill, prereq_minpoints, spell_type, spell_refresh, classes, berserker, class_type, cost_inc) VALUES
(1319, 'Soul Thief', 5, 3, 31459, 31460, 31457, 31458, 7, 4294967295, 227, 2, 0, 0, 2080, 0, 68, 0);
INSERT INTO altadv_vars (skill_id, name, cost, max_level, hotkey_sid, hotkey_sid2, title_sid, desc_sid, type, spellid, prereq_skill, prereq_minpoints, spell_type, spell_refresh, classes, berserker, class_type, cost_inc) VALUES
(209, 'Death Peace', 5, 1, 13738, 13739, 13736, 13737, 7, 4294967295, 0, 0, 0, 5, 2080, 0, 65, 0);
INSERT INTO altadv_vars (skill_id, name, cost, max_level, hotkey_sid, hotkey_sid2, title_sid, desc_sid, type, spellid, prereq_skill, prereq_minpoints, spell_type, spell_refresh, classes, berserker, class_type, cost_inc) VALUES
(1134, 'Blur of Axes', 3, 3, 31463, 31464, 31461, 31462, 5, 4294967295, 0, 0, 0, 0, 0, 1, 61, 1);
INSERT INTO altadv_vars (skill_id, name, cost, max_level, hotkey_sid, hotkey_sid2, title_sid, desc_sid, type, spellid, prereq_skill, prereq_minpoints, spell_type, spell_refresh, classes, berserker, class_type, cost_inc) VALUES
(1158, 'Vicious Frenzy', 4, 5, 31467, 31468, 31465, 31466, 7, 4294967295, 250, 3, 0, 0, 0, 1, 67, 0);
INSERT INTO aa_actions (aaid, rank, reuse_time, spell_id, target, nonspell_action, nonspell_mana, nonspell_duration, redux_aa, redux_rate) VALUES
(209, 0, 5, 5919, 0, 0, 0, 0, 0, 0);
@@ -0,0 +1 @@
ALTER TABLE tblWorldServerRegistration MODIFY ServerTagDescription varchar(50) NOT NULL DEFAULT '';
+152
View File
@@ -0,0 +1,152 @@
--
-- IMPORTANT NOTE:
--
-- If you source in this SQL, then you should export a custom spell file and distribute it to the players on your server, otherwise
-- the rest-state as displayed in the UI (SoF and SoD) may not reflect the rest-state as determined by the server.
--
-- All the spells that follow are those that allow rest-state regen IN THE SoD CLIENT.
--
-- If your server does not support accelerated rest-state regen, then you do not need this file.
--
-- The first set of spell IDs are within the range of the Titanium spell file.
--
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 110;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 111;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 112;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 676;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 677;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 678;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 1577;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 1578;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 1699;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 1702;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 1704;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 1772;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 2464;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 2468;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 2473;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 2475;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 3342;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 3387;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 3395;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 3650;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 5051;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 5573;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 5984;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 5985;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 5986;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 7023;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 7024;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 7025;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 7026;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 7800;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 7801;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 7802;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 7803;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 7804;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 7805;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 7806;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 7807;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 7808;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 7809;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 7810;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 7811;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 7812;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 7813;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 7814;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 7815;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 7816;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 7817;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 7818;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 7819;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 7820;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 7821;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 7822;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 7823;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 7824;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 8012;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 8023;
--
-- Spells from SoF and SoD that have the same name in both clients.
--
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 8963;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 9119;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 9120;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 9121;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 9980;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 9981;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 9982;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 10068;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 10069;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 10070;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 10608;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 10609;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 10610;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 10801;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 10825;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 10844;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 11656;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 11837;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 11848;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 11850;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 11882;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 11883;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 11884;
-- Some of the following spells appear to have changed between SoF and SoD. You should not
-- execute the following if you are not using a spells_new table generated from the SOD spells_us.txt
-- without examining each spell to check if for your spells_new table, it should allow rest state.
--
-- UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 14488;
-- UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 14515;
-- UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 14516;
-- UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 14517;
-- UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 14659;
-- UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 14660;
-- UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 14661;
-- UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 15074;
-- UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 15329;
-- UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 15330;
-- UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 15331;
-- UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 15414;
-- UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 15437;
-- UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 15454;
-- UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 15489;
-- UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 15503;
-- UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 15551;
-- UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 15552;
-- UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 15553;
-- UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 15557;
-- UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 15558;
-- UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 15559;
-- UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 15563;
-- UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 15564;
-- UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 15565;
-- UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 15569;
-- UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 15570;
-- UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 15571;
--
-- SoD only spells.
--
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 16534;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 17607;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 18528;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 18573;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 18574;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 18575;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 18726;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 18727;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 18728;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 19206;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 19491;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 19492;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 19493;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 19594;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 19617;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 19618;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 19619;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 19638;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 19639;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 19640;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 19677;
UPDATE `spells_new` SET `allowrest` = 1 WHERE `id` = 19691;
@@ -0,0 +1 @@
ALTER TABLE `spells_new` CHANGE `field212` `allowrest` INT( 11 ) NULL DEFAULT '0';
+1
View File
@@ -0,0 +1 @@
INSERT INTO commands VALUES ('cvs', 200, ' - Summary of client versions currently online.');
+2
View File
@@ -0,0 +1,2 @@
ALTER TABLE `guild_members` ADD `alt` TINYINT UNSIGNED NOT NULL DEFAULT '0' AFTER `public_note` ;
ALTER TABLE `guilds` ADD `channel` VARCHAR( 128 ) NOT NULL DEFAULT '', ADD `url` VARCHAR( 512 ) NOT NULL DEFAULT '';
@@ -0,0 +1,8 @@
ALTER TABLE zone DROP PRIMARY KEY, DROP INDEX zoneidnumber, ADD INDEX zoneidnumber (zoneidnumber), ADD INDEX zonename (short_name);
ALTER TABLE zone ADD ruleset INT UNSIGNED DEFAULT '0' NOT NULL AFTER weather;
ALTER TABLE zone ADD version TINYINT UNSIGNED DEFAULT '0' NOT NULL AFTER zoneidnumber;
ALTER TABLE adventure_template ADD graveyard_zone_id INT UNSIGNED DEFAULT '0' NOT NULL AFTER dest_h;
ALTER TABLE adventure_template ADD graveyard_x FLOAT DEFAULT '0' NOT NULL AFTER graveyard_zone_id;
ALTER TABLE adventure_template ADD graveyard_y FLOAT DEFAULT '0' NOT NULL AFTER graveyard_x;
ALTER TABLE adventure_template ADD graveyard_z FLOAT DEFAULT '0' NOT NULL AFTER graveyard_y;
ALTER TABLE adventure_template ADD graveyard_radius FLOAT UNSIGNED DEFAULT '0.0' NOT NULL AFTER graveyard_z;
@@ -0,0 +1 @@
insert into rule_values values (0,'World:ClearTempMerchantlist','true');
+2
View File
@@ -0,0 +1,2 @@
ALTER TABLE instance_lockout ADD never_expires TINYINT UNSIGNED DEFAULT '0' NOT NULL AFTER duration;
ALTER TABLE instance_lockout ADD is_global TINYINT UNSIGNED DEFAULT '0' NOT NULL AFTER version;
+1
View File
@@ -0,0 +1 @@
ALTER TABLE zone ADD map_file_name varchar(100) default NULL AFTER long_name;
+7
View File
@@ -0,0 +1,7 @@
ALTER TABLE `zone_points` ADD `version` int UNSIGNED default 0 NOT NULL AFTER `zone`;
ALTER TABLE `zone_points` ADD `target_instance` int UNSIGNED default 0 NOT NULL AFTER `target_zone_id`;
ALTER TABLE `zone_points` ADD `client_version_mask` int UNSIGNED default 4294967295 NOT NULL AFTER `buffer`;
ALTER TABLE `zone_points` DROP INDEX `NewIndex`, ADD INDEX `NewIndex` (`number`, `zone`);
ALTER TABLE `zone` ADD fog_density float default 0.0 NOT NULL AFTER fog_maxclip4;
ALTER TABLE `doors` ADD `dest_instance` int UNSIGNED default 0 NOT NULL AFTER `dest_zone`;
ALTER TABLE `doors` ADD `client_version_mask` int UNSIGNED default 4294967295 NOT NULL AFTER `buffer`;
@@ -0,0 +1 @@
ALTER TABLE `zone` ADD `id` int(10) NOT NULL auto_increment PRIMARY KEY AFTER `short_name`;
@@ -0,0 +1,32 @@
-- This renames some unknown fields to known fields according to 13th floor data
--
ALTER TABLE items CHANGE UNK061 elitematerial INT(11) DEFAULT 0 NOT NULL;
ALTER TABLE items CHANGE UNK098 ldonsellbackrate INT(11) DEFAULT 70 NOT NULL;
ALTER TABLE items CHANGE UNK129 scriptfileid INT(11) DEFAULT 0 NOT NULL;
ALTER TABLE items CHANGE UNK131 expendablearrow INT(11) DEFAULT 0 NOT NULL;
--
-- The summonedflag field simply puts the Summoned Item note on newer summoned items, it has no real effect on gameplay
-- If you have summonedflag already set for custom items, you may not want to use the line below to copy UNK109 to summonedflag.
--
UPDATE items SET summonedflag = UNK109;
--
-- This drops multiple unknown fields that are not used and never will be
--
ALTER TABLE items DROP UNK109;
ALTER TABLE items DROP unknown002;
ALTER TABLE items DROP unknown003;
ALTER TABLE items DROP unknown005;
ALTER TABLE items DROP unknown007;
ALTER TABLE items DROP unknown018;
ALTER TABLE items DROP unknown019;
ALTER TABLE items DROP unknown020;
ALTER TABLE items DROP unknown061;
ALTER TABLE items DROP unknown067;
ALTER TABLE items DROP unknown069;
ALTER TABLE items DROP unknown081;
ALTER TABLE items DROP unknown105;
ALTER TABLE items DROP unknown122;
ALTER TABLE items DROP unknown123;
ALTER TABLE items DROP unknown124;
ALTER TABLE items DROP unknown128;
ALTER TABLE items DROP unknown133;
@@ -0,0 +1 @@
ALTER TABLE `spells_new` CHANGE `field193` `nimbuseffect` INT( 11 ) NULL DEFAULT '0';
@@ -0,0 +1,8 @@
CREATE TABLE `spawn_condition_values` (
`id` int(10) unsigned NOT NULL,
`value` tinyint(3) unsigned default NULL,
`zone` varchar(64) NOT NULL,
`instance_id` int(10) unsigned NOT NULL,
UNIQUE KEY `instance` (`id`,`instance_id`,`zone`),
KEY `zoneinstance` (`zone`,`instance_id`)
) ENGINE=InnoDB;
@@ -0,0 +1 @@
UPDATE grid_entries SET heading = -1;
@@ -0,0 +1 @@
INSERT INTO rule_values VALUES (0, 'Character:DeathExpLossMultiplier', 3);
@@ -0,0 +1 @@
ALTER TABLE tradeskill_recipe ADD COLUMN quest TINYINT(1) NOT NULL DEFAULT '0';
+2
View File
@@ -0,0 +1,2 @@
ALTER TABLE zone ADD suspendbuffs tinyint(1) unsigned NOT NULL DEFAULT 0;
UPDATE zone SET suspendbuffs = 1 WHERE short_name IN ('guildlobby', 'guildhall');
@@ -0,0 +1 @@
INSERT INTO `rule_values` VALUES ('1', 'Character:UseRaceClassExpBonuses', 'true', 'Setting this to true will enable Class and Racial experience rate bonuses');
@@ -0,0 +1,2 @@
INSERT INTO `rule_values` VALUES ('1', 'Character:RespawnFromHover', 'true', 'Enable Respawn Window for SoF and later clients.');
INSERT INTO `rule_values` VALUES ('1', 'Character:RespawnFromHoverTimer', 300, 'Respawn Window Timer in Seconds.');
@@ -0,0 +1,2 @@
INSERT INTO `rule_values` (`ruleset_id`, `rule_name`, `rule_value`, `notes`) VALUES (1, 'Spells:EnableBlockedBuffs', 'true', '');
@@ -0,0 +1,19 @@
ALTER TABLE object MODIFY objectname varchar(32);
ALTER TABLE zone MODIFY short_name varchar(32);
ALTER TABLE spawn2 MODIFY zone varchar(32);
ALTER TABLE doors MODIFY zone varchar(32);
ALTER TABLE zone_points MODIFY zone varchar(32);
ALTER TABLE zone_state_dump MODIFY zonename varchar(32);
ALTER TABLE launcher_zones MODIFY zone varchar(32);
ALTER TABLE fear_hints MODIFY zone varchar(32);
ALTER TABLE spawn_conditions MODIFY zone varchar(32);
ALTER TABLE spawn_events MODIFY zone varchar(32);
UPDATE zone SET short_name = "oceangreenvillage" WHERE short_name = "oceangreenvillag";
UPDATE spawn2 SET zone = "oceangreenvillage" WHERE zone = "oceangreenvillag";
UPDATE doors SET zone = "oceangreenvillage" WHERE zone = "oceangreenvillag";
UPDATE zone_points SET zone = "oceangreenvillage" WHERE zone = "oceangreenvillag";
UPDATE zone_state_dump SET zonename = "oceangreenvillage" WHERE zonename = "oceangreenvillag";
UPDATE launcher_zones SET zone = "oceangreenvillage" WHERE zone = "oceangreenvillag";
UPDATE fear_hints SET zone = "oceangreenvillage" WHERE zone = "oceangreenvillag";
UPDATE spawn_conditions SET zone = "oceangreenvillage" WHERE zone = "oceangreenvillag";
UPDATE spawn_events SET zone = "oceangreenvillage" WHERE zone = "oceangreenvillag";
@@ -0,0 +1,3 @@
ALTER TABLE `altadv_vars` ADD `account_time_required` INT UNSIGNED DEFAULT '0' NOT NULL AFTER `clientver`;
ALTER TABLE `account` ADD `time_creation` INT UNSIGNED DEFAULT '0' NOT NULL AFTER `suspendeduntil`;
UPDATE `account` SET `time_creation` = UNIX_TIMESTAMP() WHERE `time_creation` = 0;
@@ -0,0 +1,2 @@
INSERT INTO `rule_values` (`ruleset_id`, `rule_name`, `rule_value`, `notes`) VALUES (1, 'Combat:NPCBashKickStunChance', '15', 'Percent chance that a bash/kick will stun');
@@ -0,0 +1,9 @@
INSERT INTO `rule_values` (`ruleset_id`, `rule_name`, `rule_value`, `notes`) VALUES (1, 'Character:ItemEnduranceRegenCap', '15', 'Endurance cap from items');
INSERT INTO `rule_values` (`ruleset_id`, `rule_name`, `rule_value`, `notes`) VALUES (1, 'Character:ItemClairvoyanceCap', '250', 'Clairvoyance returns mana after a cast under certain circumstances');
INSERT INTO `rule_values` (`ruleset_id`, `rule_name`, `rule_value`, `notes`) VALUES (1, 'Character:ItemHealAmtCap', '250', 'Heal Amt adds to heal spells based on their cast & recast time');
INSERT INTO `rule_values` (`ruleset_id`, `rule_name`, `rule_value`, `notes`) VALUES (1, 'Character:ItemSpellDmgCap', '250', 'Spell Dmg adds to DD spells based on their cast & recast time');
INSERT INTO `rule_values` (`ruleset_id`, `rule_name`, `rule_value`, `notes`) VALUES (1, 'Character:ItemDSMitigationCap', '50', 'Mitigates the effect of a damage shield');
@@ -0,0 +1,49 @@
INSERT INTO `altadv_vars` (`skill_id`, `name`, `cost`, `max_level`, `hotkey_sid`, `hotkey_sid2`, `title_sid`, `desc_sid`, `type`, `spellid`, `prereq_skill`, `prereq_minpoints`, `spell_type`, `spell_refresh`, `classes`, `berserker`, `class_type`, `cost_inc`, `aa_expansion`, `special_category`, `sof_type`, `sof_cost_inc`, `sof_max_level`, `sof_next_skill`, `clientver`, `account_time_required`) VALUES (1435, 'Gift of Mana', 3, 3, 4294967295, 4294967295, 1435, 1435, 7, 0, 83, 3, 0, 0, 31812, 0, 66, 3, 9, 4294967295, 3, 3, 1, 1435, 1, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1435, 1, 339, 8105, 2);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1435, 2, 134, 70, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1435, 3, 142, 65, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1435, 4, 137, 0, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1436, 1, 339, 8105, 4);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1436, 2, 134, 70, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1436, 3, 142, 65, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1436, 4, 137, 0, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1437, 1, 339, 8105, 6);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1437, 2, 134, 70, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1437, 3, 142, 65, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1437, 4, 137, 0, 0);
INSERT INTO `altadv_vars` (`skill_id`, `name`, `cost`, `max_level`, `hotkey_sid`, `hotkey_sid2`, `title_sid`, `desc_sid`, `type`, `spellid`, `prereq_skill`, `prereq_minpoints`, `spell_type`, `spell_refresh`, `classes`, `berserker`, `class_type`, `cost_inc`, `aa_expansion`, `special_category`, `sof_type`, `sof_cost_inc`, `sof_max_level`, `sof_next_skill`, `clientver`, `account_time_required`) VALUES (1486, 'Abundant Healing', 5, 5, 4294967295, 4294967295, 1486, 1486, 7, 0, 1086, 1, 0, 0, 1092, 0, 66, 0, 10, 4294967295, 2, 0, 1, 1486, 2, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1486, 1, 339, 8165, 2);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1486, 2, 134, 75, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1486, 3, 142, 60, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1486, 4, 137, 0, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1486, 5, 141, 0, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1486, 6, 138, 1, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1487, 1, 339, 8166, 4);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1487, 2, 134, 75, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1487, 3, 142, 60, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1487, 4, 137, 0, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1487, 5, 141, 0, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1487, 6, 138, 1, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1488, 1, 339, 8167, 6);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1488, 2, 134, 75, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1488, 3, 142, 60, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1488, 4, 137, 0, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1488, 5, 141, 0, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1488, 6, 138, 1, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1489, 1, 339, 8168, 8);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1489, 2, 134, 75, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1489, 3, 142, 60, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1489, 4, 137, 0, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1489, 5, 141, 0, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1489, 6, 138, 1, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1490, 1, 339, 8169, 10);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1490, 2, 134, 75, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1490, 3, 142, 60, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1490, 4, 137, 0, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1490, 5, 141, 0, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1490, 6, 138, 1, 0);
INSERT INTO `altadv_vars` (`skill_id`, `name`, `cost`, `max_level`, `hotkey_sid`, `hotkey_sid2`, `title_sid`, `desc_sid`, `type`, `spellid`, `prereq_skill`, `prereq_minpoints`, `spell_type`, `spell_refresh`, `classes`, `berserker`, `class_type`, `cost_inc`, `aa_expansion`, `special_category`, `sof_type`, `sof_cost_inc`, `sof_max_level`, `sof_next_skill`, `clientver`, `account_time_required`) VALUES (1478, 'Pyromancy', 3, 3, 1478, 4294967295, 1478, 1478, 7, 8406, 0, 0, 99, 1, 4096, 0, 66, 0, 10, 4294967295, 3, 0, 1, 1478, 2, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (1478, 0, 1, 8406, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (1478, 1, 1, 8407, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (1478, 2, 1, 8408, 1, 0, 0, 0, 0, 0, 0, 0);
+218
View File
@@ -0,0 +1,218 @@
-- Update to Veteran AAs so they have the appropriate category tag
UPDATE `altadv_vars` SET `special_category`=5 WHERE `skill_id`=1371 LIMIT 1;
UPDATE `altadv_vars` SET `special_category`=5 WHERE `skill_id`=1372 LIMIT 1;
UPDATE `altadv_vars` SET `special_category`=5 WHERE `skill_id`=1373 LIMIT 1;
UPDATE `altadv_vars` SET `special_category`=5 WHERE `skill_id`=1374 LIMIT 1;
UPDATE `altadv_vars` SET `special_category`=5 WHERE `skill_id`=1375 LIMIT 1;
UPDATE `altadv_vars` SET `special_category`=5 WHERE `skill_id`=1376 LIMIT 1;
UPDATE `altadv_vars` SET `special_category`=5 WHERE `skill_id`=1377 LIMIT 1;
-- Demiplane Progression AAs
INSERT INTO `altadv_vars` (`skill_id`, `name`, `cost`, `max_level`, `hotkey_sid`, `hotkey_sid2`, `title_sid`, `desc_sid`, `type`, `spellid`, `prereq_skill`, `prereq_minpoints`, `spell_type`, `spell_refresh`, `classes`, `berserker`, `class_type`, `cost_inc`, `aa_expansion`, `special_category`, `sof_type`, `sof_cost_inc`, `sof_max_level`, `sof_next_skill`, `clientver`, `account_time_required`) VALUES (1378, 'Curse of Blood', 0, 1, 4294967295, 4294967295, 1378, 1378, 8, 0, 0, 0, 0, 0, 65534, 1, 0, 0, 5, 2, 4, 0, 1, 1378, 1, 0);
INSERT INTO `altadv_vars` (`skill_id`, `name`, `cost`, `max_level`, `hotkey_sid`, `hotkey_sid2`, `title_sid`, `desc_sid`, `type`, `spellid`, `prereq_skill`, `prereq_minpoints`, `spell_type`, `spell_refresh`, `classes`, `berserker`, `class_type`, `cost_inc`, `aa_expansion`, `special_category`, `sof_type`, `sof_cost_inc`, `sof_max_level`, `sof_next_skill`, `clientver`, `account_time_required`) VALUES (1379, 'Affliction of Blood', 0, 1, 4294967295, 4294967295, 1379, 1379, 8, 0, 1378, 1, 0, 0, 65534, 1, 0, 0, 5, 2, 4, 0, 1, 1379, 1, 0);
INSERT INTO `altadv_vars` (`skill_id`, `name`, `cost`, `max_level`, `hotkey_sid`, `hotkey_sid2`, `title_sid`, `desc_sid`, `type`, `spellid`, `prereq_skill`, `prereq_minpoints`, `spell_type`, `spell_refresh`, `classes`, `berserker`, `class_type`, `cost_inc`, `aa_expansion`, `special_category`, `sof_type`, `sof_cost_inc`, `sof_max_level`, `sof_next_skill`, `clientver`, `account_time_required`) VALUES (1380, 'Torment of Blood', 0, 1, 4294967295, 4294967295, 1380, 1380, 8, 0, 1379, 1, 0, 0, 65534, 1, 0, 0, 5, 2, 4, 0, 1, 1380, 1, 0);
INSERT INTO `altadv_vars` (`skill_id`, `name`, `cost`, `max_level`, `hotkey_sid`, `hotkey_sid2`, `title_sid`, `desc_sid`, `type`, `spellid`, `prereq_skill`, `prereq_minpoints`, `spell_type`, `spell_refresh`, `classes`, `berserker`, `class_type`, `cost_inc`, `aa_expansion`, `special_category`, `sof_type`, `sof_cost_inc`, `sof_max_level`, `sof_next_skill`, `clientver`, `account_time_required`) VALUES (1381, 'Temptation of Blood', 0, 1, 4294967295, 4294967295, 1381, 1381, 8, 0, 1380, 1, 0, 0, 65534, 1, 0, 0, 5, 2, 4, 0, 1, 1381, 1, 0);
INSERT INTO `altadv_vars` (`skill_id`, `name`, `cost`, `max_level`, `hotkey_sid`, `hotkey_sid2`, `title_sid`, `desc_sid`, `type`, `spellid`, `prereq_skill`, `prereq_minpoints`, `spell_type`, `spell_refresh`, `classes`, `berserker`, `class_type`, `cost_inc`, `aa_expansion`, `special_category`, `sof_type`, `sof_cost_inc`, `sof_max_level`, `sof_next_skill`, `clientver`, `account_time_required`) VALUES (1382, 'Invitation of Blood', 0, 1, 4294967295, 4294967295, 1382, 1382, 8, 0, 1381, 1, 0, 0, 65534, 1, 0, 0, 5, 2, 4, 0, 1, 1382, 1, 0);
-- Trials of Mata Muram AA
INSERT INTO `altadv_vars` (`skill_id`, `name`, `cost`, `max_level`, `hotkey_sid`, `hotkey_sid2`, `title_sid`, `desc_sid`, `type`, `spellid`, `prereq_skill`, `prereq_minpoints`, `spell_type`, `spell_refresh`, `classes`, `berserker`, `class_type`, `cost_inc`, `aa_expansion`, `special_category`, `sof_type`, `sof_cost_inc`, `sof_max_level`, `sof_next_skill`, `clientver`, `account_time_required`) VALUES (1011, 'Trials of Mata Muram', 0, 6, 4294967295, 4294967295, 1011, 1011, 7, 0, 0, 0, 0, 0, 65534, 1, 0, 0, 0, 1, 4, 0, 6, 1011, 1, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1011, 1, 262, 8, 7);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1011, 2, 262, 8, 8);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1011, 3, 262, 8, 9);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1011, 4, 262, 8, 10);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1011, 5, 262, 8, 11);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1012, 1, 262, 16, 7);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1012, 2, 262, 16, 8);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1012, 3, 262, 16, 9);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1012, 4, 262, 16, 10);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1012, 5, 262, 16, 11);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1013, 1, 262, 24, 7);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1013, 2, 262, 24, 8);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1013, 3, 262, 24, 9);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1013, 4, 262, 24, 10);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1013, 5, 262, 24, 11);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1014, 1, 262, 32, 7);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1014, 2, 262, 32, 8);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1014, 3, 262, 32, 9);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1014, 4, 262, 32, 10);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1014, 5, 262, 32, 11);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1015, 1, 262, 40, 7);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1015, 2, 262, 40, 8);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1015, 3, 262, 40, 9);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1015, 4, 262, 40, 10);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1015, 5, 262, 40, 11);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1016, 1, 262, 50, 7);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1016, 2, 262, 50, 8);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1016, 3, 262, 50, 9);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1016, 4, 262, 50, 10);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1016, 5, 262, 50, 11);
-- Good DoN Progression AAs
INSERT INTO `altadv_vars` (`skill_id`, `name`, `cost`, `max_level`, `hotkey_sid`, `hotkey_sid2`, `title_sid`, `desc_sid`, `type`, `spellid`, `prereq_skill`, `prereq_minpoints`, `spell_type`, `spell_refresh`, `classes`, `berserker`, `class_type`, `cost_inc`, `aa_expansion`, `special_category`, `sof_type`, `sof_cost_inc`, `sof_max_level`, `sof_next_skill`, `clientver`, `account_time_required`) VALUES (1361, 'Gift of the Dark Reign', 0, 1, 4294967295, 4294967295, 1361, 1361, 8, 0, 0, 0, 0, 0, 65534, 1, 0, 0, 0, 2, 4, 0, 1, 1361, 1, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1361, 1, 262, 10, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1361, 2, 262, 10, 1);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1361, 3, 262, 10, 2);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1361, 4, 262, 10, 3);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1361, 5, 262, 10, 4);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1361, 6, 262, 10, 5);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1361, 7, 262, 10, 6);
INSERT INTO `altadv_vars` (`skill_id`, `name`, `cost`, `max_level`, `hotkey_sid`, `hotkey_sid2`, `title_sid`, `desc_sid`, `type`, `spellid`, `prereq_skill`, `prereq_minpoints`, `spell_type`, `spell_refresh`, `classes`, `berserker`, `class_type`, `cost_inc`, `aa_expansion`, `special_category`, `sof_type`, `sof_cost_inc`, `sof_max_level`, `sof_next_skill`, `clientver`, `account_time_required`) VALUES (1362, 'Tenacity of the Dark Reign', 0, 1, 4294967295, 4294967295, 1362, 1362, 8, 0, 1361, 1, 0, 0, 65534, 1, 0, 0, 0, 2, 4, 0, 1, 1362, 1, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1362, 1, 69, 250, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1362, 2, 97, 250, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1362, 3, 190, 250, 0);
INSERT INTO `altadv_vars` (`skill_id`, `name`, `cost`, `max_level`, `hotkey_sid`, `hotkey_sid2`, `title_sid`, `desc_sid`, `type`, `spellid`, `prereq_skill`, `prereq_minpoints`, `spell_type`, `spell_refresh`, `classes`, `berserker`, `class_type`, `cost_inc`, `aa_expansion`, `special_category`, `sof_type`, `sof_cost_inc`, `sof_max_level`, `sof_next_skill`, `clientver`, `account_time_required`) VALUES (1363, 'Embrace of the Dark Reign', 0, 1, 4294967295, 4294967295, 1363, 1363, 8, 0, 1362, 1, 0, 0, 65534, 1, 0, 0, 0, 2, 4, 0, 1, 1363, 1, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1363, 1, 327, 1, 0);
INSERT INTO `altadv_vars` (`skill_id`, `name`, `cost`, `max_level`, `hotkey_sid`, `hotkey_sid2`, `title_sid`, `desc_sid`, `type`, `spellid`, `prereq_skill`, `prereq_minpoints`, `spell_type`, `spell_refresh`, `classes`, `berserker`, `class_type`, `cost_inc`, `aa_expansion`, `special_category`, `sof_type`, `sof_cost_inc`, `sof_max_level`, `sof_next_skill`, `clientver`, `account_time_required`) VALUES (1364, 'Power of the Dark Reign', 0, 1, 4294967295, 4294967295, 1364, 1364, 8, 0, 1363, 1, 0, 0, 65534, 1, 0, 0, 0, 2, 4, 0, 1, 1364, 1, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1364, 1, 273, 3, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1364, 2, 274, 3, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1364, 3, 294, 3, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1364, 4, 319, 3, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1364, 5, 169, 3, 0);
INSERT INTO `altadv_vars` (`skill_id`, `name`, `cost`, `max_level`, `hotkey_sid`, `hotkey_sid2`, `title_sid`, `desc_sid`, `type`, `spellid`, `prereq_skill`, `prereq_minpoints`, `spell_type`, `spell_refresh`, `classes`, `berserker`, `class_type`, `cost_inc`, `aa_expansion`, `special_category`, `sof_type`, `sof_cost_inc`, `sof_max_level`, `sof_next_skill`, `clientver`, `account_time_required`) VALUES (1365, 'Fervor of the Dark Reign', 0, 1, 4294967295, 4294967295, 1365, 1365, 8, 0, 1364, 1, 0, 0, 65534, 1, 0, 0, 0, 2, 4, 0, 1, 1365, 1, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1365, 1, 180, 3, 0);
-- Evil DoN Progression AAs
INSERT INTO `altadv_vars` (`skill_id`, `name`, `cost`, `max_level`, `hotkey_sid`, `hotkey_sid2`, `title_sid`, `desc_sid`, `type`, `spellid`, `prereq_skill`, `prereq_minpoints`, `spell_type`, `spell_refresh`, `classes`, `berserker`, `class_type`, `cost_inc`, `aa_expansion`, `special_category`, `sof_type`, `sof_cost_inc`, `sof_max_level`, `sof_next_skill`, `clientver`, `account_time_required`) VALUES (1366, 'Gift of the Keepers', 0, 1, 4294967295, 4294967295, 1366, 1366, 8, 0, 0, 0, 0, 0, 65534, 1, 0, 0, 0, 2, 4, 0, 1, 1366, 1, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1366, 1, 262, 10, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1366, 2, 262, 10, 1);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1366, 3, 262, 10, 2);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1366, 4, 262, 10, 3);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1366, 5, 262, 10, 4);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1366, 6, 262, 10, 5);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1366, 7, 262, 10, 6);
INSERT INTO `altadv_vars` (`skill_id`, `name`, `cost`, `max_level`, `hotkey_sid`, `hotkey_sid2`, `title_sid`, `desc_sid`, `type`, `spellid`, `prereq_skill`, `prereq_minpoints`, `spell_type`, `spell_refresh`, `classes`, `berserker`, `class_type`, `cost_inc`, `aa_expansion`, `special_category`, `sof_type`, `sof_cost_inc`, `sof_max_level`, `sof_next_skill`, `clientver`, `account_time_required`) VALUES (1367, 'Valor of the Keepers', 0, 1, 4294967295, 4294967295, 1367, 1367, 8, 0, 1366, 1, 0, 0, 65534, 1, 0, 0, 0, 2, 4, 0, 1, 1367, 1, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1367, 1, 69, 250, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1367, 2, 97, 250, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1367, 3, 190, 250, 0);
INSERT INTO `altadv_vars` (`skill_id`, `name`, `cost`, `max_level`, `hotkey_sid`, `hotkey_sid2`, `title_sid`, `desc_sid`, `type`, `spellid`, `prereq_skill`, `prereq_minpoints`, `spell_type`, `spell_refresh`, `classes`, `berserker`, `class_type`, `cost_inc`, `aa_expansion`, `special_category`, `sof_type`, `sof_cost_inc`, `sof_max_level`, `sof_next_skill`, `clientver`, `account_time_required`) VALUES (1368, 'Embrace of the Keepers', 0, 1, 4294967295, 4294967295, 1368, 1368, 8, 0, 1367, 1, 0, 0, 65534, 1, 0, 0, 0, 2, 4, 0, 1, 1368, 1, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1368, 1, 327, 1, 0);
INSERT INTO `altadv_vars` (`skill_id`, `name`, `cost`, `max_level`, `hotkey_sid`, `hotkey_sid2`, `title_sid`, `desc_sid`, `type`, `spellid`, `prereq_skill`, `prereq_minpoints`, `spell_type`, `spell_refresh`, `classes`, `berserker`, `class_type`, `cost_inc`, `aa_expansion`, `special_category`, `sof_type`, `sof_cost_inc`, `sof_max_level`, `sof_next_skill`, `clientver`, `account_time_required`) VALUES (1369, 'Power of the Keepers', 0, 1, 4294967295, 4294967295, 1369, 1369, 8, 0, 1368, 1, 0, 0, 65534, 1, 0, 0, 0, 2, 4, 0, 1, 1369, 1, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1369, 1, 273, 3, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1369, 2, 274, 3, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1369, 3, 294, 3, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1369, 4, 319, 3, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1369, 5, 169, 3, 0);
INSERT INTO `altadv_vars` (`skill_id`, `name`, `cost`, `max_level`, `hotkey_sid`, `hotkey_sid2`, `title_sid`, `desc_sid`, `type`, `spellid`, `prereq_skill`, `prereq_minpoints`, `spell_type`, `spell_refresh`, `classes`, `berserker`, `class_type`, `cost_inc`, `aa_expansion`, `special_category`, `sof_type`, `sof_cost_inc`, `sof_max_level`, `sof_next_skill`, `clientver`, `account_time_required`) VALUES (1370, 'Sanctity of the Keepers', 0, 1, 4294967295, 4294967295, 1370, 1370, 8, 0, 1369, 1, 0, 0, 65534, 1, 0, 0, 0, 2, 4, 0, 1, 1370, 1, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1370, 1, 180, 3, 0);
-- Drakkin Breath Weapon 1
INSERT INTO `altadv_vars` (`skill_id`, `name`, `cost`, `max_level`, `hotkey_sid`, `hotkey_sid2`, `title_sid`, `desc_sid`, `type`, `spellid`, `prereq_skill`, `prereq_minpoints`, `spell_type`, `spell_refresh`, `classes`, `berserker`, `class_type`, `cost_inc`, `aa_expansion`, `special_category`, `sof_type`, `sof_cost_inc`, `sof_max_level`, `sof_next_skill`, `clientver`, `account_time_required`) VALUES (5150, 'Breath of Atathus', 0, 15, 5150, 5150, 5150, 5150, 10, 11112, 0, 0, 80, 300, 65534, 1, 0, 0, 523, 8, 4, 0, 1, 5150, 4, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5150, 0, 300, 11112, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5150, 1, 300, 11113, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5150, 2, 300, 11114, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5150, 3, 300, 11115, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5150, 4, 300, 11116, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5150, 5, 300, 11117, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5150, 6, 300, 11118, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5150, 7, 300, 11119, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5150, 8, 300, 11120, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5150, 9, 300, 11121, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5150, 10, 300, 11122, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5150, 11, 300, 11123, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5150, 12, 300, 11124, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5150, 13, 300, 11125, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5150, 14, 300, 11126, 1, 0, 0, 0, 0, 0, 0, 0);
-- Drakkin Breath Weapon 2
INSERT INTO `altadv_vars` (`skill_id`, `name`, `cost`, `max_level`, `hotkey_sid`, `hotkey_sid2`, `title_sid`, `desc_sid`, `type`, `spellid`, `prereq_skill`, `prereq_minpoints`, `spell_type`, `spell_refresh`, `classes`, `berserker`, `class_type`, `cost_inc`, `aa_expansion`, `special_category`, `sof_type`, `sof_cost_inc`, `sof_max_level`, `sof_next_skill`, `clientver`, `account_time_required`) VALUES (5165, 'Breath of Draton\'ra', 0, 15, 5165, 5165, 5165, 5165, 10, 11127, 0, 0, 80, 300, 65534, 1, 0, 0, 524, 8, 4, 0, 1, 5165, 4, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5165, 0, 300, 11127, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5165, 1, 300, 11128, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5165, 2, 300, 11129, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5165, 3, 300, 11130, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5165, 4, 300, 11131, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5165, 5, 300, 11132, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5165, 6, 300, 11133, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5165, 7, 300, 11134, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5165, 8, 300, 11135, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5165, 9, 300, 11136, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5165, 10, 300, 11137, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5165, 11, 300, 11138, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5165, 12, 300, 11139, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5165, 13, 300, 11140, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5165, 14, 300, 11141, 1, 0, 0, 0, 0, 0, 0, 0);
-- Drakkin Breath Weapon 3
INSERT INTO `altadv_vars` (`skill_id`, `name`, `cost`, `max_level`, `hotkey_sid`, `hotkey_sid2`, `title_sid`, `desc_sid`, `type`, `spellid`, `prereq_skill`, `prereq_minpoints`, `spell_type`, `spell_refresh`, `classes`, `berserker`, `class_type`, `cost_inc`, `aa_expansion`, `special_category`, `sof_type`, `sof_cost_inc`, `sof_max_level`, `sof_next_skill`, `clientver`, `account_time_required`) VALUES (5180, 'Breath of Osh\'vir', 0, 15, 5180, 5180, 5180, 5180, 10, 11142, 0, 0, 80, 300, 65534, 1, 0, 0, 525, 8, 4, 0, 1, 5180, 4, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5180, 0, 300, 11142, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5180, 1, 300, 11143, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5180, 2, 300, 11144, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5180, 3, 300, 11145, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5180, 4, 300, 11146, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5180, 5, 300, 11147, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5180, 6, 300, 11148, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5180, 7, 300, 11149, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5180, 8, 300, 11150, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5180, 9, 300, 11151, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5180, 10, 300, 11152, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5180, 11, 300, 11153, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5180, 12, 300, 11154, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5180, 13, 300, 11155, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5180, 14, 300, 11156, 1, 0, 0, 0, 0, 0, 0, 0);
-- Drakkin Breath Weapon 4
INSERT INTO `altadv_vars` (`skill_id`, `name`, `cost`, `max_level`, `hotkey_sid`, `hotkey_sid2`, `title_sid`, `desc_sid`, `type`, `spellid`, `prereq_skill`, `prereq_minpoints`, `spell_type`, `spell_refresh`, `classes`, `berserker`, `class_type`, `cost_inc`, `aa_expansion`, `special_category`, `sof_type`, `sof_cost_inc`, `sof_max_level`, `sof_next_skill`, `clientver`, `account_time_required`) VALUES (5195, 'Breath of Venesh', 0, 15, 5195, 5195, 5195, 5195, 10, 11157, 0, 0, 80, 300, 65534, 1, 0, 0, 526, 8, 4, 0, 1, 5195, 4, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5195, 0, 300, 11157, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5195, 1, 300, 11158, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5195, 2, 300, 11159, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5195, 3, 300, 11160, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5195, 4, 300, 11161, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5195, 5, 300, 11162, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5195, 6, 300, 11163, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5195, 7, 300, 11164, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5195, 8, 300, 11165, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5195, 9, 300, 11166, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5195, 10, 300, 11167, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5195, 11, 300, 11168, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5195, 12, 300, 11169, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5195, 13, 300, 11170, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5195, 14, 300, 11171, 1, 0, 0, 0, 0, 0, 0, 0);
-- Drakkin Breath Weapon 5
INSERT INTO `altadv_vars` (`skill_id`, `name`, `cost`, `max_level`, `hotkey_sid`, `hotkey_sid2`, `title_sid`, `desc_sid`, `type`, `spellid`, `prereq_skill`, `prereq_minpoints`, `spell_type`, `spell_refresh`, `classes`, `berserker`, `class_type`, `cost_inc`, `aa_expansion`, `special_category`, `sof_type`, `sof_cost_inc`, `sof_max_level`, `sof_next_skill`, `clientver`, `account_time_required`) VALUES (5210, 'Breath of Mysaphar', 0, 15, 5210, 5210, 5210, 5210, 10, 11172, 0, 0, 80, 300, 65534, 1, 0, 0, 527, 8, 4, 0, 1, 5210, 4, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5210, 0, 300, 11172, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5210, 1, 300, 11173, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5210, 2, 300, 11174, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5210, 3, 300, 11175, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5210, 4, 300, 11176, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5210, 5, 300, 11177, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5210, 6, 300, 11178, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5210, 7, 300, 11179, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5210, 8, 300, 11180, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5210, 9, 300, 11181, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5210, 10, 300, 11182, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5210, 11, 300, 11183, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5210, 12, 300, 11184, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5210, 13, 300, 11185, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5210, 14, 300, 11186, 1, 0, 0, 0, 0, 0, 0, 0);
-- Drakkin Breath Weapon 6
INSERT INTO `altadv_vars` (`skill_id`, `name`, `cost`, `max_level`, `hotkey_sid`, `hotkey_sid2`, `title_sid`, `desc_sid`, `type`, `spellid`, `prereq_skill`, `prereq_minpoints`, `spell_type`, `spell_refresh`, `classes`, `berserker`, `class_type`, `cost_inc`, `aa_expansion`, `special_category`, `sof_type`, `sof_cost_inc`, `sof_max_level`, `sof_next_skill`, `clientver`, `account_time_required`) VALUES (5225, 'Breath of Keikolin', 0, 15, 5225, 5225, 5225, 5225, 10, 11187, 0, 0, 80, 300, 65534, 1, 0, 0, 528, 8, 4, 0, 1, 5225, 4, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5225, 0, 300, 11187, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5225, 1, 300, 11188, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5225, 2, 300, 11189, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5225, 3, 300, 11190, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5225, 4, 300, 11191, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5225, 5, 300, 11192, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5225, 6, 300, 11193, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5225, 7, 300, 11194, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5225, 8, 300, 11195, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5225, 9, 300, 11196, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5225, 10, 300, 11197, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5225, 11, 300, 11198, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5225, 12, 300, 11199, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5225, 13, 300, 11200, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (5225, 14, 300, 11201, 1, 0, 0, 0, 0, 0, 0, 0);
-- PoR Progression AA
INSERT INTO `altadv_vars` (`skill_id`, `name`, `cost`, `max_level`, `hotkey_sid`, `hotkey_sid2`, `title_sid`, `desc_sid`, `type`, `spellid`, `prereq_skill`, `prereq_minpoints`, `spell_type`, `spell_refresh`, `classes`, `berserker`, `class_type`, `cost_inc`, `aa_expansion`, `special_category`, `sof_type`, `sof_cost_inc`, `sof_max_level`, `sof_next_skill`, `clientver`, `account_time_required`) VALUES (1647, 'Harmonic Dissonance', 0, 1, 1647, 1647, 1647, 1647, 10, 8771, 0, 0, 81, 30, 65534, 1, 0, 0, 0, 2, 4, 0, 1, 1647, 4, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (1647, 0, 30, 8771, 1, 0, 0, 0, 0, 0, 0, 0);
-- Glyphs(Expendable)
INSERT INTO `altadv_vars` (`skill_id`, `name`, `cost`, `max_level`, `hotkey_sid`, `hotkey_sid2`, `title_sid`, `desc_sid`, `type`, `spellid`, `prereq_skill`, `prereq_minpoints`, `spell_type`, `spell_refresh`, `classes`, `berserker`, `class_type`, `cost_inc`, `aa_expansion`, `special_category`, `sof_type`, `sof_cost_inc`, `sof_max_level`, `sof_next_skill`, `clientver`, `account_time_required`) VALUES (4702, 'Glyph of Dragon Scales', 3, 1, 4702, 4702, 4702, 4702, 4, 9475, 0, 0, 98, 600, 65534, 1, 71, 0, 12, 7, 4, 0, 1, 4702, 4, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (4702, 0, 600, 9475, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `altadv_vars` (`skill_id`, `name`, `cost`, `max_level`, `hotkey_sid`, `hotkey_sid2`, `title_sid`, `desc_sid`, `type`, `spellid`, `prereq_skill`, `prereq_minpoints`, `spell_type`, `spell_refresh`, `classes`, `berserker`, `class_type`, `cost_inc`, `aa_expansion`, `special_category`, `sof_type`, `sof_cost_inc`, `sof_max_level`, `sof_next_skill`, `clientver`, `account_time_required`) VALUES (4703, 'Glyph of Angry Thoughts', 4, 1, 52004, 52004, 52004, 52004, 4, 12752, 0, 0, 97, 600, 65534, 1, 76, 0, 14, 7, 4, 0, 1, 52004, 4, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (4703, 0, 600, 12752, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `altadv_vars` (`skill_id`, `name`, `cost`, `max_level`, `hotkey_sid`, `hotkey_sid2`, `title_sid`, `desc_sid`, `type`, `spellid`, `prereq_skill`, `prereq_minpoints`, `spell_type`, `spell_refresh`, `classes`, `berserker`, `class_type`, `cost_inc`, `aa_expansion`, `special_category`, `sof_type`, `sof_cost_inc`, `sof_max_level`, `sof_next_skill`, `clientver`, `account_time_required`) VALUES (4704, 'Glyph of Arcane Secrets', 3, 1, 4704, 4704, 4704, 4704, 4, 9477, 0, 0, 96, 600, 65534, 1, 71, 0, 12, 7, 4, 0, 1, 4704, 4, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (4704, 0, 600, 9477, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `altadv_vars` (`skill_id`, `name`, `cost`, `max_level`, `hotkey_sid`, `hotkey_sid2`, `title_sid`, `desc_sid`, `type`, `spellid`, `prereq_skill`, `prereq_minpoints`, `spell_type`, `spell_refresh`, `classes`, `berserker`, `class_type`, `cost_inc`, `aa_expansion`, `special_category`, `sof_type`, `sof_cost_inc`, `sof_max_level`, `sof_next_skill`, `clientver`, `account_time_required`) VALUES (4705, 'Glyph of Draconic Potential', 3, 1, 4705, 4705, 4705, 4705, 4, 9478, 0, 0, 95, 600, 65534, 1, 71, 0, 12, 7, 4, 0, 1, 4705, 4, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (4705, 0, 600, 9478, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `altadv_vars` (`skill_id`, `name`, `cost`, `max_level`, `hotkey_sid`, `hotkey_sid2`, `title_sid`, `desc_sid`, `type`, `spellid`, `prereq_skill`, `prereq_minpoints`, `spell_type`, `spell_refresh`, `classes`, `berserker`, `class_type`, `cost_inc`, `aa_expansion`, `special_category`, `sof_type`, `sof_cost_inc`, `sof_max_level`, `sof_next_skill`, `clientver`, `account_time_required`) VALUES (4706, 'Glyph of Destruction', 3, 1, 4706, 4706, 4706, 4706, 4, 9479, 0, 0, 94, 600, 65534, 1, 71, 0, 12, 7, 4, 0, 1, 4706, 4, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (4706, 0, 600, 9479, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `altadv_vars` (`skill_id`, `name`, `cost`, `max_level`, `hotkey_sid`, `hotkey_sid2`, `title_sid`, `desc_sid`, `type`, `spellid`, `prereq_skill`, `prereq_minpoints`, `spell_type`, `spell_refresh`, `classes`, `berserker`, `class_type`, `cost_inc`, `aa_expansion`, `special_category`, `sof_type`, `sof_cost_inc`, `sof_max_level`, `sof_next_skill`, `clientver`, `account_time_required`) VALUES (4707, 'Glyph of Courage', 4, 1, 52000, 52000, 52000, 52000, 4, 12748, 0, 0, 93, 600, 65534, 1, 76, 0, 14, 7, 4, 0, 1, 52000, 4, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (4707, 0, 600, 12748, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `altadv_vars` (`skill_id`, `name`, `cost`, `max_level`, `hotkey_sid`, `hotkey_sid2`, `title_sid`, `desc_sid`, `type`, `spellid`, `prereq_skill`, `prereq_minpoints`, `spell_type`, `spell_refresh`, `classes`, `berserker`, `class_type`, `cost_inc`, `aa_expansion`, `special_category`, `sof_type`, `sof_cost_inc`, `sof_max_level`, `sof_next_skill`, `clientver`, `account_time_required`) VALUES (4708, 'Glyph of Frantic Infusion', 4, 1, 52003, 52003, 52003, 52003, 4, 12751, 0, 0, 92, 600, 65534, 1, 76, 0, 14, 7, 4, 0, 1, 52003, 4, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (4708, 0, 600, 12751, 5, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `altadv_vars` (`skill_id`, `name`, `cost`, `max_level`, `hotkey_sid`, `hotkey_sid2`, `title_sid`, `desc_sid`, `type`, `spellid`, `prereq_skill`, `prereq_minpoints`, `spell_type`, `spell_refresh`, `classes`, `berserker`, `class_type`, `cost_inc`, `aa_expansion`, `special_category`, `sof_type`, `sof_cost_inc`, `sof_max_level`, `sof_next_skill`, `clientver`, `account_time_required`) VALUES (4709, 'Glyph of Stored Life', 4, 1, 52002, 52002, 52002, 52002, 4, 12750, 0, 0, 91, 600, 65534, 1, 76, 0, 14, 7, 4, 0, 1, 52002, 4, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (4709, 0, 600, 12750, 1, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `altadv_vars` (`skill_id`, `name`, `cost`, `max_level`, `hotkey_sid`, `hotkey_sid2`, `title_sid`, `desc_sid`, `type`, `spellid`, `prereq_skill`, `prereq_minpoints`, `spell_type`, `spell_refresh`, `classes`, `berserker`, `class_type`, `cost_inc`, `aa_expansion`, `special_category`, `sof_type`, `sof_cost_inc`, `sof_max_level`, `sof_next_skill`, `clientver`, `account_time_required`) VALUES (4710, 'Glyph of Recovery', 4, 1, 52001, 52001, 52001, 52001, 4, 12749, 0, 0, 90, 600, 65534, 1, 76, 0, 14, 7, 4, 0, 1, 52001, 4, 0);
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (4710, 0, 600, 12749, 1, 0, 0, 0, 0, 0, 0, 0);
@@ -0,0 +1,82 @@
ALTER TABLE `aa_effects` CHANGE COLUMN `base1` `base1` MEDIUMINT(8) NOT NULL DEFAULT '0' AFTER `effectid`, CHANGE COLUMN `base2` `base2` MEDIUMINT(8) NOT NULL DEFAULT '0' AFTER `base1`;
-- Ingenuity
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (625, 1, 294, 1, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (626, 1, 294, 2, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (627, 1, 294, 3, 0);
-- Spell Casting Fury
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (92, 1, 294, 2, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (93, 1, 294, 4, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (94, 1, 294, 7, 0);
-- Spell Casting Fury Mastery
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (267, 1, 294, 3, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (268, 1, 294, 5, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (269, 1, 294, 7, 0);
-- Fury of Magic
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (637, 1, 294, 2, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (638, 1, 294, 4, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (639, 1, 294, 6, 0);
-- Fury of Magic Mastery
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (640, 1, 294, 2, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (641, 1, 294, 4, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (642, 1, 294, 6, 0);
-- Fury of Magic Mastery
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (770, 1, 294, 2, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (771, 1, 294, 4, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (772, 1, 294, 6, 0);
-- Fury of Magic
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1107, 1, 294, 2, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1108, 1, 294, 4, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1109, 1, 294, 6, 0);
-- Advanced Fury of Magic Mastery
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (924, 1, 294, 2, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (925, 1, 294, 4, 0);
-- Destructive Fury
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1210, 1, 155, 4, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1211, 1, 155, 8, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1212, 1, 155, 16, 0);
-- Healing Adept
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (77, 1, 125, 2, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (77, 2, 141, 0, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (78, 1, 125, 4, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (78, 2, 141, 0, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (79, 1, 125, 6, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (79, 2, 141, 0, 0);
-- Advanced Healing Adept
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (434, 1, 125, 3, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (435, 1, 125, 6, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (436, 1, 125, 9, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (434, 2, 141, 0, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (435, 2, 141, 0, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (436, 2, 141, 0, 0);
-- Healing Gift
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (80, 1, 274, 3, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (80, 2, 141, 0, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (81, 2, 141, 0, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (81, 1, 274, 6, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (82, 1, 274, 10, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (82, 2, 141, 0, 0);
-- Advanced Healing Gift
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (437, 1, 274, 2, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (437, 2, 141, 0, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (438, 1, 274, 4, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (438, 2, 141, 0, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (439, 1, 274, 6, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (439, 2, 141, 0, 0);
-- Combat Fury
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (113, 1, 169, 2, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (114, 1, 169, 4, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (115, 1, 169, 7, 0);
-- Fury of the Ages
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (443, 1, 169, 1, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (444, 1, 169, 3, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (445, 1, 169, 5, 0);
-- Critical Affliction
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (767, 1, 273, 3, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (768, 1, 273, 6, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (769, 1, 273, 10, 0);
-- Improved Critical Affliction
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1099, 1, 273, 3, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1100, 1, 273, 6, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1101, 1, 273, 10, 0);
-- Fading Memories
UPDATE `aa_actions` SET `nonspell_action`=16, `nonspell_mana`=900 WHERE `aaid`=630 AND `rank`=0 LIMIT 1;
@@ -0,0 +1,6 @@
UPDATE `altadv_vars` SET `aa_expansion`=523 WHERE `skill_id`=5150 LIMIT 1;
UPDATE `altadv_vars` SET `aa_expansion`=524 WHERE `skill_id`=5165 LIMIT 1;
UPDATE `altadv_vars` SET `aa_expansion`=525 WHERE `skill_id`=5180 LIMIT 1;
UPDATE `altadv_vars` SET `aa_expansion`=526 WHERE `skill_id`=5195 LIMIT 1;
UPDATE `altadv_vars` SET `aa_expansion`=527 WHERE `skill_id`=5210 LIMIT 1;
UPDATE `altadv_vars` SET `aa_expansion`=528 WHERE `skill_id`=5225 LIMIT 1;
@@ -0,0 +1 @@
ALTER TABLE `altadv_vars` CHANGE COLUMN `aa_expansion` `aa_expansion` SMALLINT(3) UNSIGNED NOT NULL DEFAULT '3' AFTER `cost_inc`;
@@ -0,0 +1 @@
INSERT INTO `rule_values` (`ruleset_id`, `rule_name`, `rule_value`, `notes`) VALUES (1, 'Character:UseNewStatsWindow', 'true', 'New stats window shows so much it got the TSA seal of approval');
@@ -0,0 +1,3 @@
ALTER TABLE `botbuffs` ADD COLUMN `CorruptionCounters` INT(11) UNSIGNED NOT NULL DEFAULT '0' AFTER `CurseCounters`;
ALTER TABLE `bots` ADD COLUMN `Corrup` SMALLINT(5) NOT NULL DEFAULT '0' AFTER `PR`;
ALTER TABLE `npc_types` ADD COLUMN `Corrup` SMALLINT(5) NOT NULL DEFAULT '0' AFTER `PR`;
@@ -0,0 +1,2 @@
INSERT INTO `aa_actions` (`aaid`, `rank`, `reuse_time`, `spell_id`, `target`, `nonspell_action`, `nonspell_mana`, `nonspell_duration`, `redux_aa`, `redux_rate`, `redux_aa2`, `redux_rate2`) VALUES (723, 0, 60, 4788, 2, 0, 0, 0, 0, 0, 0, 0);
@@ -0,0 +1,12 @@
UPDATE `rule_values` SET `rule_value`='6' WHERE `ruleset_id`=1 AND `rule_name`='Combat:BerserkBaseCritChance';
UPDATE `rule_values` SET `rule_value`='0', `rule_name`='Combat:MeleeBaseCritChance' WHERE `rule_name`='Combat:BaseCritChance';
UPDATE `rule_values` SET `rule_value`='3' WHERE `rule_name`='Combat:WarBerBaseCritChance';
UPDATE `rule_values` SET `rule_value`='0' WHERE `rule_name`='Combat:ClientBaseCritChance';
UPDATE `aa_effects` SET `base2`=-1 WHERE `aaid`=113 LIMIT 1;
UPDATE `aa_effects` SET `base2`=-1 WHERE `aaid`=114 LIMIT 1;
UPDATE `aa_effects` SET `base2`=-1 WHERE `aaid`=115 LIMIT 1;
UPDATE `aa_effects` SET `base2`=-1 WHERE `aaid`=443 LIMIT 1;
UPDATE `aa_effects` SET `base2`=-1 WHERE `aaid`=444 LIMIT 1;
UPDATE `aa_effects` SET `base2`=-1 WHERE `aaid`=445 LIMIT 1;
@@ -0,0 +1 @@
UPDATE rule_values SET rule_value = 1.0 WHERE rule_name = 'Bots:BotManaRegen';
@@ -0,0 +1,111 @@
INSERT INTO `zone` (`short_name`, `id`, `file_name`, `long_name`, `map_file_name`, `safe_x`, `safe_y`, `safe_z`, `graveyard_id`, `min_level`, `min_status`, `zoneidnumber`, `version`, `timezone`, `maxclients`, `weather`, `ruleset`, `note`, `underworld`, `minclip`, `maxclip`, `fog_minclip`, `fog_maxclip`, `fog_blue`, `fog_red`, `fog_green`, `sky`, `ztype`, `zone_exp_multiplier`, `walkspeed`, `time_type`, `fog_red1`, `fog_green1`, `fog_blue1`, `fog_minclip1`, `fog_maxclip1`, `fog_red2`, `fog_green2`, `fog_blue2`, `fog_minclip2`, `fog_maxclip2`, `fog_red3`, `fog_green3`, `fog_blue3`, `fog_minclip3`, `fog_maxclip3`, `fog_red4`, `fog_green4`, `fog_blue4`, `fog_minclip4`, `fog_maxclip4`, `fog_density`, `flag_needed`, `canbind`, `cancombat`, `canlevitate`, `castoutdoor`, `hotzone`, `insttype`, `shutdowndelay`, `peqzone`, `expansion`, `suspendbuffs`) VALUES
('thulelibrary', 5556, '', 'The Library', NULL, 0, 0, 0, 0, 0, 0, 704, 0, 0, 0, 1, 1, '', -90, 50, 1000, 0, 1000, 0, 0, 0, 1, 0, 1.00, 0.4, 4, 0, 0, 0, 450, 2000, 0, 0, 0, 0, 600, 0, 0, 0, 0, 600, 0, 0, 0, 0, 600, 0.33, '', 2, 1, 1, 1, 0, 0, 5000, 1, 8, 0),
('morellcastle', 5557, '', 'Morell''s Castle', NULL, -30, -219, -36, 0, 0, 0, 707, 0, 0, 0, 1, 0, NULL, -48, 50, 1000, 0, 1000, 0, 0, 0, 1, 0, 0.00, 0.4, 4, 0, 0, 0, 450, 450, 0, 0, 0, 0, 600, 0, 0, 0, 0, 600, 0, 0, 0, 0, 600, 0.33, '', 1, 1, 1, 1, 0, 0, 5000, 1, 0, 0),
('alkabormare', 5558, '', 'Al''Kabor''s Nightmare', NULL, 1104, -86, -14, 0, 0, 0, 709, 0, 0, 0, 1, 0, NULL, -1400, 50, 2400, 600, 2400, 220, 200, 200, 1, 255, 0.00, 0.4, 1, 0, 0, 0, 450, 450, 200, 200, 220, 600, 2400, 200, 200, 220, 600, 2400, 200, 200, 220, 600, 2400, 0.33, '', 1, 1, 1, 1, 0, 0, 5000, 1, 0, 0),
('fallen', 5559, '', 'Erudin Burning', NULL, 59, -15, 0, 0, 0, 0, 706, 0, 0, 0, 1, 0, NULL, -84, 50, 1050, 10, 1050, 220, 200, 200, 1, 255, 0.00, 0.4, 2, 0, 0, 0, 450, 450, 200, 200, 220, 10, 550, 200, 200, 220, 10, 550, 200, 200, 220, 10, 550, 0.33, '', 1, 1, 1, 1, 0, 0, 5000, 1, 0, 0),
('feerrott2', 5560, '', 'The Feerrott', NULL, 952.95, 1022.59, 40.83, 0, 0, 0, 700, 0, 0, 0, 1, 0, NULL, -192, 50, 1350, 10, 1350, 30, 60, 90, 1, 255, 0.00, 0.4, 1, 0, 0, 0, 450, 450, 60, 90, 30, 10, 350, 60, 90, 30, 10, 350, 60, 90, 30, 10, 350, 0.33, '', 1, 1, 1, 1, 0, 0, 5000, 1, 0, 0),
('housegarden', 5561, '', 'The Grounds', NULL, 102.16, -0.87, -28.89, 0, 0, 0, 703, 0, 0, 0, 1, 0, NULL, -300, 50, 2400, 500, 2400, 220, 200, 200, 1, 255, 0.00, 0.4, 1, 0, 0, 0, 450, 450, 200, 200, 220, 1000, 2400, 200, 200, 220, 1000, 2400, 200, 200, 220, 1000, 2400, 0.33, '', 1, 1, 1, 1, 0, 0, 5000, 1, 0, 0),
('miragulmare', 5562, '', 'Miragul''s Nightmare', NULL, -102, 36, -108, 0, 0, 0, 710, 0, 0, 0, 1, 0, NULL, -295, 50, 2400, 600, 2400, 220, 200, 200, 1, 255, 0.00, 0.4, 1, 0, 0, 0, 450, 450, 200, 200, 220, 600, 2400, 200, 200, 220, 600, 2400, 200, 200, 220, 600, 2400, 0.33, '', 1, 1, 1, 1, 0, 0, 5000, 1, 0, 0),
('somnium', 5563, '', 'Sanctum Somnium', NULL, -2, 195, 0, 0, 0, 0, 708, 0, 0, 0, 1, 0, NULL, -200, 50, 1000, 600, 2000, 0, 0, 0, 1, 0, 0.00, 0.4, 4, 0, 0, 0, 450, 450, 0, 0, 0, 600, 2000, 0, 0, 0, 600, 2000, 0, 0, 0, 600, 2000, 0.33, '', 1, 1, 1, 1, 0, 0, 5000, 1, 0, 0),
('thuledream', 5564, '', 'Fear Itself', NULL, 1282, -1139, 5, 0, 0, 0, 711, 0, 0, 0, 1, 0, NULL, -80, 50, 1400, 10, 1400, 10, 255, 50, 1, 255, 0.00, 0.4, 1, 0, 0, 0, 450, 450, 255, 50, 10, 10, 1400, 255, 50, 10, 10, 1400, 90, 20, 20, 10, 1400, 0.33, '', 1, 1, 1, 1, 0, 0, 5000, 1, 0, 0),
('thulehouse1', 5565, '', 'House of Thule', NULL, 0, -332, 4, 0, 0, 0, 701, 0, 0, 0, 1, 0, NULL, -300, 50, 2400, 350, 2400, 200, 230, 200, 1, 255, 0.00, 0.4, 2, 0, 0, 0, 450, 450, 230, 200, 200, 350, 2400, 230, 200, 200, 350, 2400, 230, 200, 200, 350, 2400, 0.33, '', 1, 1, 1, 1, 0, 0, 5000, 1, 0, 0),
('thulehouse2', 5566, '', 'House of Thule, Upper Floors', NULL, -91, 338, 64, 0, 0, 0, 702, 0, 0, 0, 1, 0, NULL, -98, 50, 2400, 350, 2400, 200, 230, 200, 1, 255, 0.00, 0.4, 2, 0, 0, 0, 450, 450, 230, 200, 200, 350, 2400, 230, 200, 200, 350, 2400, 230, 200, 200, 350, 2400, 0.33, '', 1, 1, 1, 1, 0, 0, 5000, 1, 0, 0),
('well', 5567, '', 'The Well', NULL, 0, 0, 52, 0, 0, 0, 705, 0, 0, 0, 1, 0, NULL, -113, 50, 1000, 100, 1000, 90, 50, 100, 1, 255, 0.00, 0.4, 0, 0, 0, 0, 450, 450, 50, 100, 90, 100, 700, 50, 100, 90, 100, 700, 50, 100, 90, 100, 700, 0.33, '', 1, 1, 1, 1, 0, 0, 5000, 1, 0, 0),
('neighborhood', 5568, '', 'Sunrise Hills', NULL, 2035, -2940, 6, 0, 0, 0, 712, 0, 0, 0, 1, 0, NULL, -250, 50, 6000, 1500, 6000, 200, 200, 200, 1, 255, 0.00, 0.4, 1, 0, 0, 0, 450, 450, 200, 200, 200, 1500, 6000, 200, 200, 200, 1500, 6000, 200, 200, 200, 1500, 6000, 0.33, '', 1, 1, 1, 1, 0, 0, 5000, 1, 0, 0);
INSERT INTO `zone_points` (`id`, `zone`, `version`, `number`, `y`, `x`, `z`, `heading`, `target_y`, `target_x`, `target_z`, `target_heading`, `zoneinst`, `target_zone_id`, `target_instance`, `buffer`, `client_version_mask`) VALUES
(1912, 'morellcastle', 0, 0, 0, 0, 0, 0, 195.72, 0.11, -1.22, 257, 0, 708, 0, 0, 4294967295),
(1913, 'morellcastle', 0, 10, 0, 0, 0, 0, 524.77, -393.05, 12.05, 12, 0, 707, 0, 0, 4294967295),
(1914, 'morellcastle', 0, 11, 0, 0, 0, 0, 407.72, -6699.31, -5.15, 104, 0, 707, 0, 0, 4294967295),
(1915, 'morellcastle', 0, 30, 0, 0, 0, 0, 4660.26, -4260.59, -8.19, 127, 0, 707, 0, 0, 4294967295),
(1916, 'morellcastle', 0, 40, 0, 0, 0, 0, 870, -1095, 130, 127, 0, 702, 0, 0, 4294967295),
(1917, 'morellcastle', 0, 0, 0, 0, 0, 0, 195.72, 0.11, -1.22, 257, 0, 708, 0, 0, 4294967295),
(1918, 'morellcastle', 0, 10, 0, 0, 0, 0, 524.77, -393.05, 12.05, 12, 0, 707, 0, 0, 4294967295),
(1919, 'morellcastle', 0, 11, 0, 0, 0, 0, 407.72, -6699.31, -5.15, 104, 0, 707, 0, 0, 4294967295),
(1920, 'morellcastle', 0, 30, 0, 0, 0, 0, 4660.26, -4260.59, -8.19, 127, 0, 707, 0, 0, 4294967295),
(1921, 'morellcastle', 0, 40, 0, 0, 0, 0, 870, -1095, 130, 127, 0, 702, 0, 0, 4294967295),
(1922, 'alkabormare', 0, 11, 0, 0, 0, 0, 549, 802, 61, 383, 0, 702, 0, 0, 4294967295),
(1923, 'fallen', 0, 23, 0, 0, 0, 0, -1617, 19, -62, 127, 0, 706, 0, 0, 4294967295),
(1924, 'fallen', 0, 32, 0, 0, 0, 0, -1608, 131, 17, 510, 0, 706, 0, 0, 4294967295),
(1925, 'fallen', 0, 33, 0, 0, 0, 0, 474, -262, 16, 255, 0, 701, 0, 0, 4294967295),
(1926, 'housegarden', 0, 1, 0, 0, 0, 0, 777, -126, 16, 255, 0, 701, 0, 0, 4294967295),
(1927, 'housegarden', 0, 10, 0, 0, 0, 0, -5, 14, 170, 999999, 0, 705, 0, 0, 4294967295),
(1928, 'morellcastle', 0, 0, 0, 0, 0, 0, 195.72, 0.11, -1.22, 257, 0, 708, 0, 0, 4294967295),
(1929, 'morellcastle', 0, 10, 0, 0, 0, 0, 524.77, -393.05, 12.05, 12, 0, 707, 0, 0, 4294967295),
(1930, 'morellcastle', 0, 11, 0, 0, 0, 0, 407.72, -6699.31, -5.15, 104, 0, 707, 0, 0, 4294967295),
(1931, 'morellcastle', 0, 30, 0, 0, 0, 0, 4660.26, -4260.59, -8.19, 127, 0, 707, 0, 0, 4294967295),
(1932, 'morellcastle', 0, 40, 0, 0, 0, 0, 870, -1095, 130, 127, 0, 702, 0, 0, 4294967295),
(1933, 'thuledream', 0, 10, 0, 0, 0, 0, -335, -345, 64, 0, 0, 702, 0, 0, 4294967295),
(1934, 'thulehouse2', 0, 10, 0, 0, 0, 0, 302, 70, 64, 54, 0, 702, 0, 0, 4294967295),
(1935, 'thulehouse2', 0, 20, 0, 0, 0, 0, 302, 70, 64, 54, 0, 702, 0, 0, 4294967295),
(1936, 'thulehouse2', 0, 30, 0, 0, 0, 0, 302, 70, 64, 54, 0, 702, 0, 0, 4294967295),
(1937, 'thulehouse2', 0, 51, 0, 0, 0, 0, 13, -39, -107, 128, 0, 710, 0, 0, 4294967295),
(1938, 'thulehouse2', 0, 61, 0, 0, 0, 0, -50, 1146, -14, 440, 0, 709, 0, 0, 4294967295),
(1939, 'thulehouse2', 0, 72, 0, 0, 0, 0, -1329, 1036, 2, 82, 0, 711, 0, 0, 4294967295),
(1940, 'thulehouse2', 0, 82, 0, 0, 0, 0, 0, 0, -23, 498, 0, 708, 0, 0, 4294967295),
(1941, 'well', 0, 9, 0, 0, 0, 0, -943, -1642, -174, 495, 0, 703, 0, 0, 4294967295),
(1942, 'neighborhood', 0, 1, 0, 0, 0, 0, 936, 294, -19, 254, 0, 344, 0, 0, 4294967295),
(1943, 'neighborhood', 0, 10, 0, 0, 0, 0, 936, 294, -19, 254, 0, 344, 0, 0, 4294967295),
(1944, 'neighborhood', 0, 12, 0, 0, 0, 0, -542, 2089, -35, 374, 7969, 712, 0, 0, 4294967295),
(1945, 'neighborhood', 0, 13, 0, 0, 0, 0, 1252, 1497, 65, 119, 7969, 712, 0, 0, 4294967295),
(1946, 'neighborhood', 0, 14, 0, 0, 0, 0, 2586, 1642, 47, 67, 7969, 712, 0, 0, 4294967295),
(1947, 'neighborhood', 0, 15, 0, 0, 0, 0, 2778, 81, -60, 356, 7969, 712, 0, 0, 4294967295),
(1948, 'neighborhood', 0, 16, 0, 0, 0, 0, 719, -179, 50, 392, 7969, 712, 0, 0, 4294967295),
(1949, 'neighborhood', 0, 17, 0, 0, 0, 0, -787, 352, 5, 69, 7969, 712, 0, 0, 4294967295),
(1950, 'neighborhood', 0, 21, 0, 0, 0, 0, -2694, 2035, 6, 27, 7969, 712, 0, 0, 4294967295),
(1951, 'neighborhood', 0, 23, 0, 0, 0, 0, 1252, 1497, 65, 119, 7969, 712, 0, 0, 4294967295),
(1952, 'neighborhood', 0, 24, 0, 0, 0, 0, 2586, 1642, 47, 67, 7969, 712, 0, 0, 4294967295),
(1953, 'neighborhood', 0, 25, 0, 0, 0, 0, 2778, 81, -60, 356, 7969, 712, 0, 0, 4294967295),
(1954, 'neighborhood', 0, 26, 0, 0, 0, 0, 719, -179, 50, 392, 7969, 712, 0, 0, 4294967295),
(1955, 'neighborhood', 0, 27, 0, 0, 0, 0, -787, 352, 5, 69, 7969, 712, 0, 0, 4294967295),
(1956, 'neighborhood', 0, 31, 0, 0, 0, 0, -2694, 2035, 6, 27, 7969, 712, 0, 0, 4294967295),
(1957, 'neighborhood', 0, 32, 0, 0, 0, 0, -542, 2089, -35, 374, 7969, 712, 0, 0, 4294967295),
(1958, 'neighborhood', 0, 34, 0, 0, 0, 0, 2586, 1642, 47, 67, 7969, 712, 0, 0, 4294967295),
(1959, 'neighborhood', 0, 35, 0, 0, 0, 0, 2778, 81, -60, 356, 7969, 712, 0, 0, 4294967295),
(1960, 'neighborhood', 0, 36, 0, 0, 0, 0, 719, -179, 50, 392, 7969, 712, 0, 0, 4294967295),
(1961, 'neighborhood', 0, 37, 0, 0, 0, 0, -787, 352, 5, 69, 7969, 712, 0, 0, 4294967295),
(1962, 'neighborhood', 0, 41, 0, 0, 0, 0, -2694, 2035, 6, 27, 7969, 712, 0, 0, 4294967295),
(1963, 'neighborhood', 0, 42, 0, 0, 0, 0, -542, 2089, -35, 374, 7969, 712, 0, 0, 4294967295),
(1964, 'neighborhood', 0, 43, 0, 0, 0, 0, 1252, 1497, 65, 119, 7969, 712, 0, 0, 4294967295),
(1965, 'neighborhood', 0, 45, 0, 0, 0, 0, 2778, 81, -60, 356, 7969, 712, 0, 0, 4294967295),
(1966, 'neighborhood', 0, 46, 0, 0, 0, 0, 719, -179, 50, 392, 7969, 712, 0, 0, 4294967295),
(1967, 'neighborhood', 0, 47, 0, 0, 0, 0, -787, 352, 5, 69, 7969, 712, 0, 0, 4294967295),
(1968, 'neighborhood', 0, 51, 0, 0, 0, 0, -2694, 2035, 6, 27, 7969, 712, 0, 0, 4294967295),
(1969, 'neighborhood', 0, 52, 0, 0, 0, 0, -542, 2089, -35, 374, 7969, 712, 0, 0, 4294967295),
(1970, 'neighborhood', 0, 53, 0, 0, 0, 0, 1252, 1497, 65, 119, 7969, 712, 0, 0, 4294967295),
(1971, 'neighborhood', 0, 54, 0, 0, 0, 0, 2586, 1642, 47, 67, 7969, 712, 0, 0, 4294967295),
(1972, 'neighborhood', 0, 56, 0, 0, 0, 0, 719, -179, 50, 392, 7969, 712, 0, 0, 4294967295),
(1973, 'neighborhood', 0, 57, 0, 0, 0, 0, -787, 352, 5, 69, 7969, 712, 0, 0, 4294967295),
(1974, 'neighborhood', 0, 61, 0, 0, 0, 0, -2694, 2035, 6, 27, 7969, 712, 0, 0, 4294967295),
(1975, 'neighborhood', 0, 62, 0, 0, 0, 0, -542, 2089, -35, 374, 7969, 712, 0, 0, 4294967295),
(1976, 'neighborhood', 0, 63, 0, 0, 0, 0, 1252, 1497, 65, 119, 7969, 712, 0, 0, 4294967295),
(1977, 'neighborhood', 0, 64, 0, 0, 0, 0, 2586, 1642, 47, 67, 7969, 712, 0, 0, 4294967295),
(1978, 'neighborhood', 0, 65, 0, 0, 0, 0, 2778, 81, -60, 356, 7969, 712, 0, 0, 4294967295),
(1979, 'neighborhood', 0, 67, 0, 0, 0, 0, -787, 352, 5, 69, 7969, 712, 0, 0, 4294967295),
(1980, 'neighborhood', 0, 71, 0, 0, 0, 0, -2694, 2035, 6, 27, 7969, 712, 0, 0, 4294967295),
(1981, 'neighborhood', 0, 72, 0, 0, 0, 0, -542, 2089, -35, 374, 7969, 712, 0, 0, 4294967295),
(1982, 'neighborhood', 0, 73, 0, 0, 0, 0, 1252, 1497, 65, 119, 7969, 712, 0, 0, 4294967295),
(1983, 'neighborhood', 0, 74, 0, 0, 0, 0, 2586, 1642, 47, 67, 7969, 712, 0, 0, 4294967295),
(1984, 'neighborhood', 0, 75, 0, 0, 0, 0, 2778, 81, -60, 356, 7969, 712, 0, 0, 4294967295),
(1985, 'neighborhood', 0, 76, 0, 0, 0, 0, 719, -179, 50, 392, 7969, 712, 0, 0, 4294967295),
(1986, 'feerrott2', 0, 0, 0, 0, 0, 0, 59, -66, 4, 7.6, 0, 48, 0, 0, 4294967295),
(1987, 'feerrott2', 0, 15, 0, 0, 0, 0, -337, 0, 5, 0, 0, 701, 0, 0, 4294967295),
(1988, 'feerrott2', 0, 25, 0, 0, 0, 0, -844, 444, -157, 255, 0, 202, 0, 0, 4294967295),
(1989, 'feerrott2', 0, 30, 0, 0, 0, 0, -1223, 1583, 17, 455, 0, 413, 0, 0, 4294967295),
(1990, 'feerrott2', 0, 40, 0, 0, 0, 0, -385, -99, 1, 999, 0, 49, 0, 0, 4294967295),
(1991, 'feerrott2', 0, 100, 0, 0, 0, 0, 415, -3083, 2, 999, 0, 50, 0, 0, 4294967295),
(1992, 'miragulmare', 0, 31, 0, 0, 0, 0, 170, 899, 68, 383, 0, 702, 0, 0, 4294967295),
(1993, 'somnium', 0, 0, 0, 0, 0, 0, 635.7, -247.57, 180.39, 8, 0, 707, 0, 0, 4294967295),
(1994, 'somnium', 0, 10, 0, 0, 0, 0, 1075, -1936, 8.34, 326, 0, 708, 0, 0, 4294967295),
(1995, 'somnium', 0, 20, 0, 0, 0, 0, 10, 1630, 5, 132, 0, 708, 0, 0, 4294967295),
(1996, 'somnium', 0, 30, 0, 0, 0, 0, 11.21, 420.62, -24.74, 384, 0, 708, 0, 0, 4294967295),
(1997, 'somnium', 0, 100, 0, 0, 0, 0, 234.85, -43.8, -81.99, 129, 0, 708, 0, 0, 4294967295),
(1998, 'thulehouse1', 0, 10, 0, 0, 0, 0, 385, -75, 65, 292, 0, 701, 0, 0, 4294967295),
(1999, 'thulehouse1', 0, 19, 0, 0, 0, 0, 365, 88, 64, 201, 0, 702, 0, 0, 4294967295),
(2000, 'thulehouse1', 0, 20, 0, 0, 0, 0, 387, 76, 64, 216, 0, 701, 0, 0, 4294967295),
(2001, 'thulehouse1', 0, 21, 0, 0, 0, 0, 0, 112, -28, 382, 0, 703, 0, 0, 4294967295),
(2002, 'thulehouse1', 0, 40, 0, 0, 0, 0, -15, 59, 0, 60, 0, 706, 0, 0, 4294967295),
(2003, 'thulehouse1', 0, 41, 0, 0, 0, 0, -1393, 925, -2, 462, 0, 700, 0, 0, 4294967295),
(2004, 'thulehouse1', 0, 51, 0, 0, 0, 0, 0, 0, -1, 511, 0, 704, 0, 0, 4294967295),
(2005, 'thulelibrary', 0, 11, 0, 0, 0, 0, 582, 315, 16, 383, 0, 701, 0, 0, 4294967295);
@@ -0,0 +1,2 @@
INSERT INTO `rule_values` (`ruleset_id`, `rule_name`, `rule_value`, `notes`) VALUES (1, 'Spells:ReflectType', '1', '0 = disabled, 1 = single target player spells only, 2 = all player spells, 3 = all single target spells, 4 = all spells');
@@ -0,0 +1 @@
INSERT INTO `rule_values` (`ruleset_id`, `rule_name`, `rule_value`, `notes`) VALUES (1, 'Character:HasteCap', '100', 'Haste cap for item haste + spell haste(not including overhaste)');
@@ -0,0 +1,5 @@
UPDATE `aa_effects` SET `base1`=5 WHERE `aaid`=78;
UPDATE `aa_effects` SET `base1`=10 WHERE `aaid`=79;
UPDATE `aa_effects` SET `base1`=13 WHERE `aaid`=434;
UPDATE `aa_effects` SET `base1`=16 WHERE `aaid`=435;
UPDATE `aa_effects` SET `base1`=19 WHERE `aaid`=436;
@@ -0,0 +1,10 @@
UPDATE `aa_effects` SET `base1`=5 WHERE `aaid`=78 && `effectid`=125;
UPDATE `aa_effects` SET `base1`=0 WHERE `aaid`=78 && `effectid`=141;
UPDATE `aa_effects` SET `base1`=10 WHERE `aaid`=79 && `effectid`=125;
UPDATE `aa_effects` SET `base1`=0 WHERE `aaid`=79 && `effectid`=141;
UPDATE `aa_effects` SET `base1`=13 WHERE `aaid`=434 && `effectid`=125;
UPDATE `aa_effects` SET `base1`=0 WHERE `aaid`=434 && `effectid`=141;
UPDATE `aa_effects` SET `base1`=16 WHERE `aaid`=435 && `effectid`=125;
UPDATE `aa_effects` SET `base1`=0 WHERE `aaid`=435 && `effectid`=141;
UPDATE `aa_effects` SET `base1`=19 WHERE `aaid`=436 && `effectid`=125;
UPDATE `aa_effects` SET `base1`=0 WHERE `aaid`=436 && `effectid`=141;
@@ -0,0 +1,5 @@
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (116, 1, 181, 5, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (117, 1, 181, 15, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (118, 1, 181, 25, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (195, 1, 181, 100, 0);
+1
View File
@@ -0,0 +1 @@
INSERT INTO commands (command, access, description) VALUES ('melody', 0, 'A supplement for /melody until the OP code is found.')
@@ -0,0 +1,2 @@
INSERT INTO `rule_values` (`ruleset_id`, `rule_name`, `rule_value`, `notes`) VALUES (1, 'Character:MaxDraggedCorpses', '2', 'Maximum number of corpses that a player can /corpsedrag at once');
INSERT INTO `rule_values` (`ruleset_id`, `rule_name`, `rule_value`, `notes`) VALUES (1, 'Character:DragCorpseDistance', '400.000000', 'If a player is using /corpsedrag and moving, the corpse will not move until the player exceeds this distance (NoRootNoZ)');
@@ -0,0 +1,20 @@
-- Heightened Endurance AA
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (683, 1, 189, 1, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (684, 1, 189, 2, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (685, 1, 189, 3, 0);
-- Convalescence AA
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (674, 1, 0, 1, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (675, 1, 0, 2, 0);
-- Healthy Aura AA
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1031, 1, 0, 1, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1032, 1, 0, 2, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1033, 1, 0, 3, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1034, 1, 0, 4, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1035, 1, 0, 5, 0);
-- Expansive Mind AA
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1072, 1, 318, 1, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1073, 1, 318, 2, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1074, 1, 318, 3, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1075, 1, 318, 4, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1076, 1, 318, 5, 0);
@@ -0,0 +1,54 @@
--
-- Table structure for table `aa_required_level_cost`
--
CREATE TABLE `aa_required_level_cost` (
`skill_id` int(10) unsigned NOT NULL,
`level` int(10) unsigned NOT NULL,
`cost` int(10) unsigned NOT NULL default '0',
`description` varchar(64) default NULL COMMENT 'For reference only',
PRIMARY KEY (`skill_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Dumping data for table `aa_required_level_cost`
--
INSERT INTO `aa_required_level_cost` (`skill_id`, `level`, `cost`, `description`) VALUES (7800, 1, 0, 'Harm Touch');
INSERT INTO `aa_required_level_cost` (`skill_id`, `level`, `cost`, `description`) VALUES (7801, 6, 0, 'Harm Touch');
INSERT INTO `aa_required_level_cost` (`skill_id`, `level`, `cost`, `description`) VALUES (7802, 11, 0, 'Harm Touch');
INSERT INTO `aa_required_level_cost` (`skill_id`, `level`, `cost`, `description`) VALUES (7803, 16, 0, 'Harm Touch');
INSERT INTO `aa_required_level_cost` (`skill_id`, `level`, `cost`, `description`) VALUES (7804, 21, 0, 'Harm Touch');
INSERT INTO `aa_required_level_cost` (`skill_id`, `level`, `cost`, `description`) VALUES (7805, 26, 0, 'Harm Touch');
INSERT INTO `aa_required_level_cost` (`skill_id`, `level`, `cost`, `description`) VALUES (7806, 31, 0, 'Harm Touch');
INSERT INTO `aa_required_level_cost` (`skill_id`, `level`, `cost`, `description`) VALUES (7807, 36, 0, 'Harm Touch');
INSERT INTO `aa_required_level_cost` (`skill_id`, `level`, `cost`, `description`) VALUES (7808, 41, 0, 'Harm Touch');
INSERT INTO `aa_required_level_cost` (`skill_id`, `level`, `cost`, `description`) VALUES (7809, 46, 0, 'Harm Touch');
INSERT INTO `aa_required_level_cost` (`skill_id`, `level`, `cost`, `description`) VALUES (7810, 51, 3, 'Harm Touch');
INSERT INTO `aa_required_level_cost` (`skill_id`, `level`, `cost`, `description`) VALUES (7811, 56, 4, 'Harm Touch');
INSERT INTO `aa_required_level_cost` (`skill_id`, `level`, `cost`, `description`) VALUES (7812, 61, 5, 'Harm Touch');
INSERT INTO `aa_required_level_cost` (`skill_id`, `level`, `cost`, `description`) VALUES (7813, 66, 6, 'Harm Touch');
INSERT INTO `aa_required_level_cost` (`skill_id`, `level`, `cost`, `description`) VALUES (7814, 71, 7, 'Harm Touch');
INSERT INTO `aa_required_level_cost` (`skill_id`, `level`, `cost`, `description`) VALUES (7815, 76, 8, 'Harm Touch');
INSERT INTO `aa_required_level_cost` (`skill_id`, `level`, `cost`, `description`) VALUES (7816, 81, 8, 'Harm Touch');
INSERT INTO `aa_required_level_cost` (`skill_id`, `level`, `cost`, `description`) VALUES (7817, 83, 9, 'Harm Touch');
INSERT INTO `aa_required_level_cost` (`skill_id`, `level`, `cost`, `description`) VALUES (7850, 5, 0, 'Lay on Hands');
INSERT INTO `aa_required_level_cost` (`skill_id`, `level`, `cost`, `description`) VALUES (7851, 11, 0, 'Lay on Hands');
INSERT INTO `aa_required_level_cost` (`skill_id`, `level`, `cost`, `description`) VALUES (7852, 16, 0, 'Lay on Hands');
INSERT INTO `aa_required_level_cost` (`skill_id`, `level`, `cost`, `description`) VALUES (7853, 21, 0, 'Lay on Hands');
INSERT INTO `aa_required_level_cost` (`skill_id`, `level`, `cost`, `description`) VALUES (7854, 26, 0, 'Lay on Hands');
INSERT INTO `aa_required_level_cost` (`skill_id`, `level`, `cost`, `description`) VALUES (7855, 31, 0, 'Lay on Hands');
INSERT INTO `aa_required_level_cost` (`skill_id`, `level`, `cost`, `description`) VALUES (7856, 36, 0, 'Lay on Hands');
INSERT INTO `aa_required_level_cost` (`skill_id`, `level`, `cost`, `description`) VALUES (7857, 41, 0, 'Lay on Hands');
INSERT INTO `aa_required_level_cost` (`skill_id`, `level`, `cost`, `description`) VALUES (7858, 46, 0, 'Lay on Hands');
INSERT INTO `aa_required_level_cost` (`skill_id`, `level`, `cost`, `description`) VALUES (7859, 51, 0, 'Lay on Hands');
INSERT INTO `aa_required_level_cost` (`skill_id`, `level`, `cost`, `description`) VALUES (7860, 56, 3, 'Lay on Hands');
INSERT INTO `aa_required_level_cost` (`skill_id`, `level`, `cost`, `description`) VALUES (7861, 61, 4, 'Lay on Hands');
INSERT INTO `aa_required_level_cost` (`skill_id`, `level`, `cost`, `description`) VALUES (7862, 66, 5, 'Lay on Hands');
INSERT INTO `aa_required_level_cost` (`skill_id`, `level`, `cost`, `description`) VALUES (7863, 71, 6, 'Lay on Hands');
INSERT INTO `aa_required_level_cost` (`skill_id`, `level`, `cost`, `description`) VALUES (7864, 76, 7, 'Lay on Hands');
INSERT INTO `aa_required_level_cost` (`skill_id`, `level`, `cost`, `description`) VALUES (7865, 81, 8, 'Lay on Hands');
INSERT INTO `aa_required_level_cost` (`skill_id`, `level`, `cost`, `description`) VALUES (7866, 85, 9, 'Lay on Hands');
INSERT INTO `aa_required_level_cost` (`skill_id`, `level`, `cost`, `description`) VALUES (593, 61, 2, 'Fervent Blessing');
INSERT INTO `aa_required_level_cost` (`skill_id`, `level`, `cost`, `description`) VALUES (594, 63, 4, 'Fervent Blessing');
INSERT INTO `aa_required_level_cost` (`skill_id`, `level`, `cost`, `description`) VALUES (595, 65, 6, 'Fervent Blessing');
+1
View File
@@ -0,0 +1 @@
ALTER TABLE `npc_spells_entries` ADD `resist_adjust` INT NULL AFTER `priority`;
@@ -0,0 +1 @@
INSERT INTO `rule_values` (`ruleset_id`, `rule_name`, `rule_value`, `notes`) VALUES (1, 'Character:RestRegenEndurance', 'false', 'Whether rest regen will affect endurance or not');
@@ -0,0 +1,7 @@
INSERT INTO `npc_types` (`id`, `name`, `lastname`, `level`, `race`, `class`, `bodytype`, `hp`, `gender`, `texture`, `helmtexture`, `size`, `hp_regen_rate`, `mana_regen_rate`, `loottable_id`, `merchant_id`, `npc_spells_id`, `npc_faction_id`, `adventure_template_id`, `trap_template`, `mindmg`, `maxdmg`, `npcspecialattks`, `aggroradius`, `face`, `luclin_hairstyle`, `luclin_haircolor`, `luclin_eyecolor`, `luclin_eyecolor2`, `luclin_beardcolor`, `luclin_beard`, `drakkin_heritage`, `drakkin_tattoo`, `drakkin_details`, `armortint_id`, `armortint_red`, `armortint_green`, `armortint_blue`, `d_meele_texture1`, `d_meele_texture2`, `prim_melee_type`, `sec_melee_type`, `runspeed`, `MR`, `CR`, `DR`, `FR`, `PR`, `Corrup`, `see_invis`, `see_invis_undead`, `qglobal`, `AC`, `npc_aggro`, `spawn_limit`, `attack_speed`, `findable`, `STR`, `STA`, `DEX`, `AGI`, `_INT`, `WIS`, `CHA`, `see_hide`, `see_improved_hide`, `trackable`, `isbot`, `exclude`, `ATK`, `Accuracy`, `slow_mitigation`, `version`, `maxlevel`, `scalerate`, `private_corpse`, `unique_spawn_by_name`) VALUES (678, 'SwarmPetDG1', '', 1, 1, 14, 1, 1000, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 25, 'f', 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 28, 1.25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 100, 0, 0);
INSERT INTO `npc_types` (`id`, `name`, `lastname`, `level`, `race`, `class`, `bodytype`, `hp`, `gender`, `texture`, `helmtexture`, `size`, `hp_regen_rate`, `mana_regen_rate`, `loottable_id`, `merchant_id`, `npc_spells_id`, `npc_faction_id`, `adventure_template_id`, `trap_template`, `mindmg`, `maxdmg`, `npcspecialattks`, `aggroradius`, `face`, `luclin_hairstyle`, `luclin_haircolor`, `luclin_eyecolor`, `luclin_eyecolor2`, `luclin_beardcolor`, `luclin_beard`, `drakkin_heritage`, `drakkin_tattoo`, `drakkin_details`, `armortint_id`, `armortint_red`, `armortint_green`, `armortint_blue`, `d_meele_texture1`, `d_meele_texture2`, `prim_melee_type`, `sec_melee_type`, `runspeed`, `MR`, `CR`, `DR`, `FR`, `PR`, `Corrup`, `see_invis`, `see_invis_undead`, `qglobal`, `AC`, `npc_aggro`, `spawn_limit`, `attack_speed`, `findable`, `STR`, `STA`, `DEX`, `AGI`, `_INT`, `WIS`, `CHA`, `see_hide`, `see_improved_hide`, `trackable`, `isbot`, `exclude`, `ATK`, `Accuracy`, `slow_mitigation`, `version`, `maxlevel`, `scalerate`, `private_corpse`, `unique_spawn_by_name`) VALUES (679, 'SwarmPetDG2', '', 2, 1, 14, 1, 2000, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 25, 'f', 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 28, 1.25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 100, 0, 0);
INSERT INTO `npc_types` (`id`, `name`, `lastname`, `level`, `race`, `class`, `bodytype`, `hp`, `gender`, `texture`, `helmtexture`, `size`, `hp_regen_rate`, `mana_regen_rate`, `loottable_id`, `merchant_id`, `npc_spells_id`, `npc_faction_id`, `adventure_template_id`, `trap_template`, `mindmg`, `maxdmg`, `npcspecialattks`, `aggroradius`, `face`, `luclin_hairstyle`, `luclin_haircolor`, `luclin_eyecolor`, `luclin_eyecolor2`, `luclin_beardcolor`, `luclin_beard`, `drakkin_heritage`, `drakkin_tattoo`, `drakkin_details`, `armortint_id`, `armortint_red`, `armortint_green`, `armortint_blue`, `d_meele_texture1`, `d_meele_texture2`, `prim_melee_type`, `sec_melee_type`, `runspeed`, `MR`, `CR`, `DR`, `FR`, `PR`, `Corrup`, `see_invis`, `see_invis_undead`, `qglobal`, `AC`, `npc_aggro`, `spawn_limit`, `attack_speed`, `findable`, `STR`, `STA`, `DEX`, `AGI`, `_INT`, `WIS`, `CHA`, `see_hide`, `see_improved_hide`, `trackable`, `isbot`, `exclude`, `ATK`, `Accuracy`, `slow_mitigation`, `version`, `maxlevel`, `scalerate`, `private_corpse`, `unique_spawn_by_name`) VALUES (680, 'SwarmPetDG3', '', 3, 1, 14, 1, 3000, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 25, 'f', 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 28, 1.25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 100, 0, 0);
INSERT INTO `pets` (`type`, `npcID`, `temp`) VALUES ('SwarmPetDG1', 678, 1);
INSERT INTO `pets` (`type`, `npcID`, `temp`) VALUES ('SwarmPetDG2', 679, 1);
INSERT INTO `pets` (`type`, `npcID`, `temp`) VALUES ('SwarmPetDG3', 680, 1);
@@ -0,0 +1,8 @@
-- Convert Negative values to be less than the max signed value
UPDATE tasks SET xpreward = (xpreward - 2147483649) WHERE xpreward > 4294941695 AND xpreward < 4294967196;
-- Change the xpreward field to be signed
ALTER TABLE tasks CHANGE `xpreward` `xpreward` INT(10) SIGNED NOT NULL DEFAULT '0';
-- Convert the previously converted values into actual negative values
UPDATE tasks SET xpreward = (xpreward - 2147483647) WHERE xpreward > 2147458047 AND xpreward < 2147483548;
@@ -0,0 +1,11 @@
-- Persistent Casting
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (692, 1, 229, 5, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (693, 1, 229, 12, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (694, 1, 229, 25, 0);
-- Destructive Force
UPDATE `aa_actions` SET `nonspell_action`=0 WHERE `aaid`=828 AND `rank`=0 LIMIT 1;
UPDATE `aa_actions` SET `nonspell_action`=0 WHERE `aaid`=828 AND `rank`=1 LIMIT 1;
UPDATE `aa_actions` SET `nonspell_action`=0 WHERE `aaid`=828 AND `rank`=2 LIMIT 1;
-- Rampage
UPDATE `aa_actions` SET `spell_id`=5233, `nonspell_action`=0 WHERE `aaid`=258 AND `rank`=0 LIMIT 1;
UPDATE `altadv_vars` SET `spellid`=5233 WHERE `skill_id`=258 LIMIT 1;
+2
View File
@@ -0,0 +1,2 @@
INSERT INTO `rule_values` (`ruleset_id`, `rule_name`, `rule_value`, `notes`) VALUES (1, 'Character:CorpseResTimeMS', '10800000', 'Time to res a corpse(ms)');
INSERT INTO `rule_values` (`ruleset_id`, `rule_name`, `rule_value`, `notes`) VALUES (1, 'Spells:VirusSpreadDistance', '30', 'The distance a viral spell will jump to its next victim');
@@ -0,0 +1,7 @@
UPDATE `pets` SET `npcID`=682 WHERE `type`='SwarmPetDG1' LIMIT 1;
UPDATE `pets` SET `npcID`=683 WHERE `type`='SwarmPetDG2' LIMIT 1;
UPDATE `pets` SET `npcID`=684 WHERE `type`='SwarmPetDG3' LIMIT 1;
UPDATE `npc_types` SET `id`=682 WHERE `id`=678 && `name`='SwarmPetDG1' LIMIT 1;
UPDATE `npc_types` SET `id`=683 WHERE `id`=679 && `name`='SwarmPetDG2' LIMIT 1;
UPDATE `npc_types` SET `id`=684 WHERE `id`=680 && `name`='SwarmPetDG3' LIMIT 1;
@@ -0,0 +1 @@
INSERT INTO `rule_values` (`ruleset_id`, `rule_name`, `rule_value`, `notes`) VALUES (1, 'Combat:ArcheryNPCMultiplier', '1.0', 'Multiplied by the min and max hit to determine npcs ranged dmg');
@@ -0,0 +1,6 @@
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1026, 1, 328, 50, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1027, 1, 328, 100, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1028, 1, 328, 150, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1029, 1, 328, 200, 0);
INSERT INTO `aa_effects` (`aaid`, `slot`, `effectid`, `base1`, `base2`) VALUES (1030, 1, 328, 250, 0);
@@ -0,0 +1 @@
ALTER TABLE doors CHANGE `dest_zone` `dest_zone` VARCHAR(32) DEFAULT 'NONE';
@@ -0,0 +1 @@
INSERT INTO `rule_values` (`ruleset_id`, `rule_name`, `rule_value`, `notes`) VALUES (1, 'Character:ItemCastsUseFocus', 'false', 'If true, this allows item clickies to use focuses that have limited max levels on them');
@@ -0,0 +1,55 @@
-- Shaman Spells
UPDATE npc_spells_entries SET priority = 2, maxlevel = 61 WHERE spellid = (SELECT id FROM spells_new WHERE name ='Chloroblast') AND npc_spells_id = (SELECT id FROM npc_spells WHERE name = 'Shaman Bot');
REPLACE INTO npc_spells_entries (npc_spells_id, spellid, type, minlevel, maxlevel, priority) VALUES
-- HoTs
((SELECT id FROM npc_spells WHERE name = 'Shaman Bot'), (SELECT id FROM spells_new WHERE name = 'Breath of Trushar'), 2, 65, 69, 1),
((SELECT id FROM npc_spells WHERE name = 'Shaman Bot'), (SELECT id FROM spells_new WHERE name = 'Spiritual Serenity'), 2, 70, 255, 1),
-- Heal
((SELECT id FROM npc_spells WHERE name = 'Shaman Bot'), (SELECT id FROM spells_new WHERE name = 'Kragg\'s Mending'), 2, 58, 61, 2);
-- Druid Spells
REPLACE INTO npc_spells_entries (npc_spells_id, spellid, type, minlevel, maxlevel, priority) VALUES
-- Heals
((SELECT id FROM npc_spells WHERE name = 'Druid Bot'), (SELECT id FROM spells_new WHERE name = 'Tunare\'s Renewal'), 2, 58, 63, 2),
((SELECT id FROM npc_spells WHERE name = 'Druid Bot'), (SELECT id FROM spells_new WHERE name = 'Karana\'s Renewal'), 2, 64, 255, 2);
-- Paladin Spells
UPDATE npc_spells_entries SET minlevel = 58, maxlevel = 64 WHERE spellid = (SELECT id FROM spells_new WHERE name ='Healing Wave of Prexus') AND npc_spells_id = (SELECT id FROM npc_spells WHERE name = 'Paladin Bot');
UPDATE npc_spells_entries SET maxlevel = 61 WHERE spellid = (SELECT id FROM spells_new WHERE name ='Force of Akera') AND npc_spells_id = (SELECT id FROM npc_spells WHERE name = 'Paladin Bot');
UPDATE npc_spells_entries SET maxlevel = 64 WHERE spellid = (SELECT id FROM spells_new WHERE name ='Force of Akilae') AND npc_spells_id = (SELECT id FROM npc_spells WHERE name = 'Paladin Bot');
UPDATE npc_spells_entries SET maxlevel = 67 WHERE spellid = (SELECT id FROM spells_new WHERE name ='Quellious\' Word of Serenity') AND npc_spells_id = (SELECT id FROM npc_spells WHERE name = 'Paladin Bot');
UPDATE npc_spells_entries SET maxlevel = 69 WHERE spellid = (SELECT id FROM spells_new WHERE name ='Force of Piety') AND npc_spells_id = (SELECT id FROM npc_spells WHERE name = 'Paladin Bot');
UPDATE npc_spells_entries SET maxlevel = 255 WHERE spellid = (SELECT id FROM spells_new WHERE name ='Serene Command') AND npc_spells_id = (SELECT id FROM npc_spells WHERE name = 'Paladin Bot');
REPLACE INTO npc_spells_entries (npc_spells_id, spellid, type, minlevel, maxlevel, priority) VALUES
-- Group Heals
((SELECT id FROM npc_spells WHERE name = 'Paladin Bot'), (SELECT id FROM spells_new WHERE name = 'Wave of Life'), 2, 39, 54, 2),
((SELECT id FROM npc_spells WHERE name = 'Paladin Bot'), (SELECT id FROM spells_new WHERE name = 'Wave of Healing'), 2, 55, 57, 2),
((SELECT id FROM npc_spells WHERE name = 'Paladin Bot'), (SELECT id FROM spells_new WHERE name = 'Wave of Marr'), 2, 65, 69, 2),
((SELECT id FROM npc_spells WHERE name = 'Paladin Bot'), (SELECT id FROM spells_new WHERE name = 'Wave of Trushar'), 2, 65, 69, 2),
((SELECT id FROM npc_spells WHERE name = 'Paladin Bot'), (SELECT id FROM spells_new WHERE name = 'Wave of Piety'), 2, 70, 255, 2);
-- Cleric Spells
REPLACE INTO npc_spells_entries (npc_spells_id, spellid, type, minlevel, maxlevel, priority) VALUES
-- Fast Heals
((SELECT id FROM npc_spells WHERE name = 'Cleric Bot'), (SELECT id FROM spells_new WHERE name = 'Remedy'), 2, 51, 60, 2),
((SELECT id FROM npc_spells WHERE name = 'Cleric Bot'), (SELECT id FROM spells_new WHERE name = 'Supernal Remedy'), 2, 61, 65, 2),
((SELECT id FROM npc_spells WHERE name = 'Cleric Bot'), (SELECT id FROM spells_new WHERE name = 'Pious Remedy'), 2, 66, 255, 2),
-- Regular Heals
((SELECT id FROM npc_spells WHERE name = 'Cleric Bot'), (SELECT id FROM spells_new WHERE name = 'Divine Light'), 2, 53, 57, 2),
((SELECT id FROM npc_spells WHERE name = 'Cleric Bot'), (SELECT id FROM spells_new WHERE name = 'Ethereal Light'), 2, 58, 62, 2),
((SELECT id FROM npc_spells WHERE name = 'Cleric Bot'), (SELECT id FROM spells_new WHERE name = 'Supernal Light'), 2, 63, 64, 2),
((SELECT id FROM npc_spells WHERE name = 'Cleric Bot'), (SELECT id FROM spells_new WHERE name = 'Holy Light'), 2, 65, 67, 2),
((SELECT id FROM npc_spells WHERE name = 'Cleric Bot'), (SELECT id FROM spells_new WHERE name = 'Pious Light'), 2, 68, 69, 2),
-- Group Heals
((SELECT id FROM npc_spells WHERE name = 'Cleric Bot'), (SELECT id FROM spells_new WHERE name = 'Word of Health'), 2, 30, 44, 2),
((SELECT id FROM npc_spells WHERE name = 'Cleric Bot'), (SELECT id FROM spells_new WHERE name = 'Word of Healing'), 2, 45, 51, 2),
((SELECT id FROM npc_spells WHERE name = 'Cleric Bot'), (SELECT id FROM spells_new WHERE name = 'Word of Vigor'), 2, 52, 56, 2),
((SELECT id FROM npc_spells WHERE name = 'Cleric Bot'), (SELECT id FROM spells_new WHERE name = 'Word of Restoration'), 2, 57, 63, 2),
((SELECT id FROM npc_spells WHERE name = 'Cleric Bot'), (SELECT id FROM spells_new WHERE name = 'Word of Redemption'), 2, 60, 255, 2),
((SELECT id FROM npc_spells WHERE name = 'Cleric Bot'), (SELECT id FROM spells_new WHERE name = 'Word of Replenishment'), 2, 64, 68, 2),
((SELECT id FROM npc_spells WHERE name = 'Cleric Bot'), (SELECT id FROM spells_new WHERE name = 'Word of Vivification'), 2, 69, 255, 2);
@@ -0,0 +1,5 @@
INSERT INTO `rule_values` (`ruleset_id`,`rule_name`,`rule_value`,`notes`) VALUES ('1','World:ExpansionSettings','16383','Expansion settings. Affects client features related to expansions.');
INSERT INTO `rule_values` (`ruleset_id`,`rule_name`,`rule_value`,`notes`) VALUES ('1','World:PVPSettings','0','PVP Settings, affects clients\' attack state and Sony-hardcoded checks for PVP rules.');
INSERT INTO `rule_values` (`ruleset_id`,`rule_name`,`rule_value`,`notes`) VALUES ('1','World:IsGMPetitionWindowEnabled','false','Enables the petition queue window on the client. This menu is accessable by pressing the G key ingame with the GM flag on.');
INSERT INTO `rule_values` (`ruleset_id`,`rule_name`,`rule_value`,`notes`) VALUES ('1','World:FVNoDropFlag','0','Sets the FV ruleset to on or off. Enable with rule 2 for GM-trading only. Keep in mind this disables OOC chatter for GMs only if you choose that option.');
INSERT INTO `rule_values` (`ruleset_id`,`rule_name`,`rule_value`,`notes`) VALUES ('1','Character:MinStatusForNoDropExemptions','80','Enables bypassing of no-drop flags if status is set to this value and FVNoDropFlag is set to 2.');
@@ -0,0 +1 @@
INSERT INTO `rule_values` (`ruleset_id`,`rule_name`,`rule_value`,`notes`) VALUES ('1','Character:SkillCapMaxLevel','-1','Sets the Max Level used for Skill Caps (from skill_caps table). Default of -1 makes it use MaxLevel rule value.');
+3
View File
@@ -0,0 +1,3 @@
ALTER TABLE `character_` ADD `lfp` TINYINT( 1 ) UNSIGNED NOT NULL DEFAULT '0';
ALTER TABLE `character_` ADD `lfg` TINYINT( 1 ) UNSIGNED NOT NULL DEFAULT '0';
@@ -0,0 +1,2 @@
ALTER TABLE `npc_types` ADD COLUMN `attack_count` SMALLINT NOT NULL DEFAULT '-1' AFTER `maxdmg`;
ALTER TABLE `npc_types` ADD COLUMN `mana` INT(11) NOT NULL DEFAULT '0' AFTER `hp`;
+1
View File
@@ -0,0 +1 @@
INSERT INTO `rule_values` (`ruleset_id`,`rule_name`,`rule_value`,`notes`) VALUES ('1','Character:StatCap','0','Sets the Max Statistics Cap for PCs. 0 = feature disabled');
+1
View File
@@ -0,0 +1 @@
ALTER TABLE `spawn2` ADD COLUMN `animation` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' AFTER `enabled`;
+2
View File
@@ -0,0 +1,2 @@
ALTER TABLE doors DROP INDEX DoorIndex;
ALTER TABLE doors ADD CONSTRAINT DoorIndex UNIQUE KEY (zone, doorid, version);
@@ -0,0 +1 @@
INSERT INTO `rule_values` (`ruleset_id`, `rule_name`, `rule_value`, `notes`) VALUES (1, 'Console:SessionTimeOut', '600000', 'This sets the default timeout time for Telnet sessions (MS)');
@@ -0,0 +1,5 @@
INSERT INTO `rule_values` (`ruleset_id`, `rule_name`, `rule_value`, `notes`) VALUES (1, 'Guild:PlayerCreationAllowed', 'true', 'Allow players with Underfoot+ to create a guild via new UI window.');
INSERT INTO `rule_values` (`ruleset_id`, `rule_name`, `rule_value`, `notes`) VALUES (1, 'Guild:PlayerCreationLimit', '1', 'Allow players to create a guild using the window in Underfoot+');
INSERT INTO `rule_values` (`ruleset_id`, `rule_name`, `rule_value`, `notes`) VALUES (1, 'Guild:PlayerCreationRequiredLevel', '0', 'Required level to use the UF+ window to create a new guild.');
INSERT INTO `rule_values` (`ruleset_id`, `rule_name`, `rule_value`, `notes`) VALUES (1, 'Guild:PlayerCreationRequiredStatus', '0', 'Required admin status to use UF+ window to create a new guild.');
INSERT INTO `rule_values` (`ruleset_id`, `rule_name`, `rule_value`, `notes`) VALUES (1, 'Guild:PlayerCreationRequiredTime', '0', 'Required Time Entitled on Account to be able to use UF+ window to create a new guild.');
@@ -0,0 +1 @@
INSERT INTO `rule_values` (`ruleset_id`, `rule_name`, `rule_value`, `notes`) VALUES (1, 'Spells:LiveLikeFocusEffects', 'true', 'Makes certain healing, dmg and mana reduction focuses random like live');
@@ -0,0 +1,2 @@
INSERT INTO `rule_values` (`ruleset_id`, `rule_name`, `rule_value`, `notes`) VALUES (1, 'NPC:StartEnrageValue', '9', '% HP value that mobs will begin to enrage.');
INSERT INTO `rule_values` (`ruleset_id`, `rule_name`, `rule_value`, `notes`) VALUES (1, 'NPC:LiveLikeEnrage', 'false', 'If enabled, will cause all non-player pets to lose the ability to enrage.');

Some files were not shown because too many files have changed in this diff Show More