landsandboat/sql/char_effects.sql
Tyler Schneider 4eea04faf2 Various Dynamis fixes
Proper messages for TE keyitems
Time extension actually extends time instead of lowering it
Proc drops aren't always 100%
Dynamis effect will tick while offline
2018-06-22 22:24:28 -06:00

34 lines
1.1 KiB
SQL

SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Base de données: `dspdb`
--
-- --------------------------------------------------------
--
-- Structure de la table `char_effects`
--
DROP TABLE IF EXISTS `char_effects`;
CREATE TABLE IF NOT EXISTS `char_effects` (
`charid` int(10) unsigned NOT NULL,
`effectid` smallint(5) unsigned NOT NULL,
`icon` smallint(5) unsigned NOT NULL DEFAULT '0',
`power` smallint(5) unsigned NOT NULL DEFAULT '0',
`tick` int(10) unsigned NOT NULL DEFAULT '0',
`duration` int(10) unsigned NOT NULL DEFAULT '0',
`subid` smallint(5) unsigned NOT NULL DEFAULT '0',
`subpower` smallint(5) NOT NULL DEFAULT '0',
`tier` smallint(5) unsigned NOT NULL DEFAULT '0',
`flags` int(8) unsigned NOT NULL DEFAULT '0',
`timestamp` int(10) unsigned NOT NULL DEFAULT '0',
KEY `charid` (`charid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;