Several PQ platform patches + Quest complete count + Fast meso drop
Implemented CPQ challenges using the matching system. Fixed LanguageConstants statically acting for all players. Fixed OPQ's <On the Way Up> stage sometimes leading players to unexpected platforms. Fixed EllinPQ fountain not giving Altaire Fragment to players. Fixed "Lab - Unit" stage on RnJPQ, now using correlated sequences between the units. Fixed Fredrick handing out negative values of mesos to players. Improved "goto" command info. Implemented quest complete count. Fixed mobs still being "controlled" by players even though it's already dead. Concurrently protected adding items into inventory. Concurrently protected EXP gain through Writs of Solomon. Adjusted smoothly respawn rate of mobs in map (solo players in a map now experiences 75% of mobs spawned). Fixed mesos not being able to drop so frequently (prior 200ms threshold between drops). Tweaked matchchecking so that match checking doesn't outright dispose matching members on dismissal (match still sticks to the player until they answer or timeout). Fixed a dupe case within storage's item store. Added any-NPC scriptable to the source.
This commit is contained in:
@@ -12794,7 +12794,8 @@ INSERT INTO `drop_data_global` (`id`, `continent`, `itemid`, `minimum_quantity`,
|
||||
(2, -1, 4031866, 1, 1, 0, 20000, 'NX Card 250 PTS'),
|
||||
(3, -1, 4001126, 1, 2, 0, 8000, 'Maple Leaves'),
|
||||
(4, -1, 2049100, 1, 1, 0, 1200, 'Chaos Scroll 60%'),
|
||||
(5, -1, 4001006, 1, 1, 0, 10000, 'Flaming Feather');
|
||||
(5, -1, 2340000, 1, 1, 0, 1200, 'White Scroll'),
|
||||
(6, -1, 4001006, 1, 1, 0, 10000, 'Flaming Feather');
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `dueyitems` (
|
||||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
@@ -16461,7 +16462,6 @@ INSERT INTO `nxcoupons` (`id`, `couponid`, `rate`, `activeday`, `starthour`, `en
|
||||
(39,5360008,2,254,6,10),
|
||||
(40,5360042,2,254,0,24);
|
||||
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `pets` (
|
||||
`petid` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`name` varchar(13) DEFAULT NULL,
|
||||
@@ -16583,6 +16583,7 @@ CREATE TABLE IF NOT EXISTS `queststatus` (
|
||||
`time` int(11) NOT NULL DEFAULT '0',
|
||||
`expires` bigint(20) NOT NULL DEFAULT '0',
|
||||
`forfeited` int(11) NOT NULL DEFAULT '0',
|
||||
`completed` int(11) NOT NULL DEFAULT '0',
|
||||
`info` tinyint(3) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`queststatusid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
|
||||
|
||||
Reference in New Issue
Block a user