Changeset 109 for trunk/sql/world.sql

Show
Ignore:
Timestamp:
11/19/08 13:36:49 (17 years ago)
Author:
yumileroy
Message:

[svn] Update trinityscript to SD2 rev 700. Source: scriptdev2. Patch provided by SLG.

Original author: megamage
Date: 2008-10-25 11:40:10-05:00

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/sql/world.sql

    r97 r109  
    570570  `content_loc8` text, 
    571571  `sound` mediumint(8) unsigned NOT NULL default '0', 
    572   `type` tinyint(3) unsigned NOT NULL default '0', 
    573   `language` tinyint(3) unsigned NOT NULL default '0', 
     572  `type` tinyint unsigned NOT NULL default '0', 
     573  `language` tinyint unsigned NOT NULL default '0', 
    574574  `comment` text, 
    575   PRIMARY KEY  (`entry`) 
     575  PRIMARY KEY (`entry`) 
    576576) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Custom Texts'; 
    577577 
     
    691691DROP TABLE IF EXISTS `eventai_scripts`; 
    692692CREATE TABLE `eventai_scripts` ( 
    693   `id` int(11) unsigned NOT NULL auto_increment COMMENT 'Identifier', 
     693  `id` int(11) unsigned NOT NULL COMMENT 'Identifier' AUTO_INCREMENT, 
    694694  `creature_id` int(11) unsigned NOT NULL default '0' COMMENT 'Creature Template Identifier', 
    695695  `event_type` tinyint(5) unsigned NOT NULL default '0' COMMENT 'Event Type', 
    696   `event_inverse_phase_mask` int(11) NOT NULL default '0' COMMENT 'Mask which phases this event will not trigger in', 
     696  `event_inverse_phase_mask` int(11) signed NOT NULL default '0' COMMENT 'Mask which phases this event will not trigger in', 
    697697  `event_chance` int(3) unsigned NOT NULL default '100', 
    698698  `event_flags` int(3) unsigned NOT NULL default '0', 
    699   `event_param1` int(11) NOT NULL default '0', 
    700   `event_param2` int(11) NOT NULL default '0', 
    701   `event_param3` int(11) NOT NULL default '0', 
    702   `event_param4` int(11) NOT NULL default '0', 
     699  `event_param1` int(11) signed NOT NULL default '0', 
     700  `event_param2` int(11) signed NOT NULL default '0', 
     701  `event_param3` int(11) signed NOT NULL default '0', 
     702  `event_param4` int(11) signed NOT NULL default '0', 
    703703  `action1_type` tinyint(5) unsigned NOT NULL default '0' COMMENT 'Action Type', 
    704   `action1_param1` int(11) NOT NULL default '0', 
    705   `action1_param2` int(11) NOT NULL default '0', 
    706   `action1_param3` int(11) NOT NULL default '0', 
     704  `action1_param1` int(11) signed NOT NULL default '0', 
     705  `action1_param2` int(11) signed NOT NULL default '0', 
     706  `action1_param3` int(11) signed NOT NULL default '0', 
    707707  `action2_type` tinyint(5) unsigned NOT NULL default '0' COMMENT 'Action Type', 
    708   `action2_param1` int(11) NOT NULL default '0', 
    709   `action2_param2` int(11) NOT NULL default '0', 
    710   `action2_param3` int(11) NOT NULL default '0', 
     708  `action2_param1` int(11) signed NOT NULL default '0', 
     709  `action2_param2` int(11) signed NOT NULL default '0', 
     710  `action2_param3` int(11) signed NOT NULL default '0', 
    711711  `action3_type` tinyint(5) unsigned NOT NULL default '0' COMMENT 'Action Type', 
    712   `action3_param1` int(11) NOT NULL default '0', 
    713   `action3_param2` int(11) NOT NULL default '0', 
    714   `action3_param3` int(11) NOT NULL default '0', 
     712  `action3_param1` int(11) signed NOT NULL default '0', 
     713  `action3_param2` int(11) signed NOT NULL default '0', 
     714  `action3_param3` int(11) signed NOT NULL default '0', 
    715715  `comment` varchar(255) NOT NULL default '' COMMENT 'Event Comment', 
    716   PRIMARY KEY  (`id`) 
     716  PRIMARY KEY (`id`) 
    717717) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='EventAI Scripts'; 
    718718 
     
    732732DROP TABLE IF EXISTS `eventai_summons`; 
    733733CREATE TABLE `eventai_summons` ( 
    734   `id` int(11) unsigned NOT NULL auto_increment COMMENT 'Location Identifier', 
     734  `id` int(11) unsigned NOT NULL COMMENT 'Location Identifier' AUTO_INCREMENT, 
    735735  `position_x` float NOT NULL default '0', 
    736736  `position_y` float NOT NULL default '0', 
     
    739739  `spawntimesecs` int(11) unsigned NOT NULL default '120', 
    740740  `comment` varchar(255) NOT NULL default '' COMMENT 'Summon Comment', 
    741   PRIMARY KEY  (`id`) 
     741  PRIMARY KEY (`id`) 
    742742) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='EventAI Summoning Locations'; 
    743743 
     
    757757DROP TABLE IF EXISTS `eventai_texts`; 
    758758CREATE TABLE `eventai_texts` ( 
    759   `id` int(11) unsigned NOT NULL default '0' COMMENT 'Identifier', 
    760   `text` varchar(255) NOT NULL default '', 
    761   `comment` varchar(255) NOT NULL default '' COMMENT 'Text Comment', 
    762   PRIMARY KEY  (`id`) 
    763 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Texts used in EventAI'; 
     759  `entry` mediumint(8) NOT NULL, 
     760  `content_default` text NOT NULL, 
     761  `content_loc1` text, 
     762  `content_loc2` text, 
     763  `content_loc3` text, 
     764  `content_loc4` text, 
     765  `content_loc5` text, 
     766  `content_loc6` text, 
     767  `content_loc7` text, 
     768  `content_loc8` text, 
     769  `sound` mediumint(8) unsigned NOT NULL default '0', 
     770  `type` tinyint unsigned NOT NULL default '0', 
     771  `language` tinyint unsigned NOT NULL default '0', 
     772  `comment` text, 
     773  PRIMARY KEY (`entry`) 
     774) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Script Texts'; 
    764775 
    765776-- 
     
    770781/*!40000 ALTER TABLE `eventai_texts` DISABLE KEYS */; 
    771782/*!40000 ALTER TABLE `eventai_texts` ENABLE KEYS */; 
     783UNLOCK TABLES; 
     784 
     785-- 
     786-- Table structure for table `script_texts` 
     787-- 
     788 
     789DROP TABLE IF EXISTS `script_texts`; 
     790CREATE TABLE `script_texts` ( 
     791  `entry` mediumint(8) NOT NULL, 
     792  `content_default` text NOT NULL, 
     793  `content_loc1` text, 
     794  `content_loc2` text, 
     795  `content_loc3` text, 
     796  `content_loc4` text, 
     797  `content_loc5` text, 
     798  `content_loc6` text, 
     799  `content_loc7` text, 
     800  `content_loc8` text, 
     801  `sound` mediumint(8) unsigned NOT NULL default '0', 
     802  `type` tinyint unsigned NOT NULL default '0', 
     803  `language` tinyint unsigned NOT NULL default '0', 
     804  `comment` text, 
     805  PRIMARY KEY  (`entry`) 
     806) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Script Texts'; 
     807 
     808-- 
     809-- Dumping data for table `script_texts` 
     810-- 
     811 
     812LOCK TABLES `eventai_texts` WRITE; 
     813/*!40000 ALTER TABLE `script_texts` DISABLE KEYS */; 
     814/*!40000 ALTER TABLE `script_texts` ENABLE KEYS */; 
    772815UNLOCK TABLES; 
    773816