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

[svn] * Merge Temp dev SVN with Assembla.
* Changes include:

  • Implementation of w12x's Outdoor PvP and Game Event Systems.
  • Temporary removal of IRC Chat Bot (until infinite loop when disabled is fixed).
  • All mangos -> trinity (to convert your mangos_string table, please run mangos_string_to_trinity_string.sql).
  • Improved Config cleanup.
  • And many more changes.

Original author: Seline
Date: 2008-10-14 11:57:03-05:00

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/sql/characters.sql

    r37 r44  
    663663 
    664664-- 
     665-- Table structure for table `game_event_condition_save` 
     666-- 
     667 
     668CREATE TABLE `game_event_condition_save` (                     
     669 `event_id` mediumint(8) unsigned NOT NULL, 
     670 `condition_id` mediumint(8) unsigned NOT NULL default '0', 
     671 `done` float default '0', 
     672 PRIMARY KEY  (`event_id`,`condition_id`) 
     673) ENGINE=InnoDB DEFAULT CHARSET=utf8; 
     674 
     675-- 
     676-- Table structure for table `game_event_save` 
     677-- 
     678 
     679CREATE TABLE `game_event_save` ( 
     680 `event_id` mediumint(8) unsigned NOT NULL, 
     681 `state` tinyint(3) unsigned NOT NULL default '1', 
     682 `next_start` timestamp NOT NULL default '0000-00-00 00:00:00', 
     683 PRIMARY KEY  (`event_id`) 
     684) ENGINE=InnoDB DEFAULT CHARSET=utf8; 
     685 
     686-- 
    665687-- Table structure for table `groups` 
    666688--