L2JDP Revision Number: 8005
Hi,
I have a problem with seven_signs.
After a week of collecting stones, is still a week to collect stones (week enrollment seven_signs).
Previously, everything worked well.
The change took place spontaneously, please help.
My table seven_signs_status:
Code: Select all
SET FOREIGN_KEY_CHECKS=0;-- ------------------------------ Table structure for `seven_signs_status`-- ----------------------------DROP TABLE IF EXISTS `seven_signs_status`;CREATE TABLE `seven_signs_status` ( `id` int(3) NOT NULL DEFAULT '0', `current_cycle` int(10) NOT NULL DEFAULT '1', `festival_cycle` int(10) NOT NULL DEFAULT '1', `active_period` int(10) NOT NULL DEFAULT '1', `date` bigint(13) unsigned NOT NULL DEFAULT '0', `previous_winner` int(10) NOT NULL DEFAULT '0', `dawn_stone_score` decimal(20,0) NOT NULL DEFAULT '0', `dawn_festival_score` int(10) NOT NULL DEFAULT '0', `dusk_stone_score` decimal(20,0) NOT NULL DEFAULT '0', `dusk_festival_score` int(10) NOT NULL DEFAULT '0', `avarice_owner` int(10) NOT NULL DEFAULT '0', `gnosis_owner` int(10) NOT NULL DEFAULT '0', `strife_owner` int(10) NOT NULL DEFAULT '0', `avarice_dawn_score` int(10) NOT NULL DEFAULT '0', `gnosis_dawn_score` int(10) NOT NULL DEFAULT '0', `strife_dawn_score` int(10) NOT NULL DEFAULT '0', `avarice_dusk_score` int(10) NOT NULL DEFAULT '0', `gnosis_dusk_score` int(10) NOT NULL DEFAULT '0', `strife_dusk_score` int(10) NOT NULL DEFAULT '0', `accumulated_bonus0` int(10) NOT NULL DEFAULT '0', `accumulated_bonus1` int(10) NOT NULL DEFAULT '0', `accumulated_bonus2` int(10) NOT NULL DEFAULT '0', `accumulated_bonus3` int(10) NOT NULL DEFAULT '0', `accumulated_bonus4` int(10) NOT NULL DEFAULT '0', PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ------------------------------ Records of seven_signs_status-- ----------------------------INSERT INTO `seven_signs_status` VALUES ('0', '8', '2', '1', '1311785952140', '0', '0', '0', '0', '0', '2', '2', '0', '4', '2', '0', '0', '0', '0', '0', '0', '0', '0', '0');