mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-10 06:24:38 +02:00
added status effect loading
- todo: populate table (and test this doesnt break everything ever), send charawork and message packets
This commit is contained in:
parent
13af16ec0e
commit
d9d185d7e6
12 changed files with 360 additions and 379 deletions
|
@ -23,11 +23,14 @@ DROP TABLE IF EXISTS `characters_statuseffect`;
|
|||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `characters_statuseffect` (
|
||||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`characterId` int(10) unsigned NOT NULL,
|
||||
`statusId` tinyint(3) unsigned NOT NULL,
|
||||
`expireTime` int(10) unsigned NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
`statusId` smallint(5) unsigned NOT NULL,
|
||||
`magnitude` bigint(20) unsigned NOT NULL,
|
||||
`duration` int(10) unsigned NOT NULL,
|
||||
`tick` int(10) unsigned NOT NULL,
|
||||
`tier` tinyint(3) unsigned NOT NULL,
|
||||
`extra` bigint(20) unsigned NOT NULL,
|
||||
PRIMARY KEY (`characterId`, `statusId`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue