Ignore:
Timestamp:
Jan 16, 2012 7:56:19 AM (4 months ago)
Author:
MELERIX
Message:

STABLE: Sync with BETA [8629]

Location:
trunk/L2J_DataPack
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/L2J_DataPack

  • trunk/L2J_DataPack/dist/sql/game/custom/custom_npc_elementals.sql

    r8227 r8630  
    11CREATE TABLE IF NOT EXISTS `custom_npc_elementals` ( 
    2   `npc_id` decimal(11,0) NOT NULL default '0', 
    3   `elemAtkType` tinyint(1) NOT NULL default -1, 
    4   `elemAtkValue` int(3) NOT NULL default 0, 
    5   `fireDefValue` int(3) NOT NULL default 0, 
    6   `waterDefValue` int(3) NOT NULL default 0, 
    7   `windDefValue` int(3) NOT NULL default 0, 
    8   `earthDefValue` int(3) NOT NULL default 0, 
    9   `holyDefValue` int(3) NOT NULL default 0, 
    10   `darkDefValue` int(3) NOT NULL default 0, 
     2  `npc_id` mediumint(7) unsigned NOT NULL, 
     3  `elemAtkType` tinyint(1) NOT NULL default '-1', 
     4  `elemAtkValue` int(3) NOT NULL default '0', 
     5  `fireDefValue` int(3) NOT NULL default '0', 
     6  `waterDefValue` int(3) NOT NULL default '0', 
     7  `windDefValue` int(3) NOT NULL default '0', 
     8  `earthDefValue` int(3) NOT NULL default '0', 
     9  `holyDefValue` int(3) NOT NULL default '0', 
     10  `darkDefValue` int(3) NOT NULL default '0', 
    1111  PRIMARY KEY (`npc_id`) 
    1212) ENGINE=InnoDB DEFAULT CHARSET=utf8; 
     13 
     14INSERT IGNORE INTO `custom_npc_elementals` VALUES 
     15(50007,0,0,20,20,20,20,20,20), 
     16(70010,0,0,20,20,20,20,20,20), 
     17(1000003,0,0,20,20,20,20,20,20), 
     18-- eventmod Elpies 
     19(900100,0,0,20,20,20,20,20,20), 
     20-- eventmod Rabbits 
     21(900101,0,0,20,20,20,20,20,20), 
     22(900102,0,0,20,20,20,20,20,20), 
     23-- eventmod Race 
     24(900103,0,0,20,20,20,20,20,20), 
     25(900104,0,0,20,20,20,20,20,20); 
Note: See TracChangeset for help on using the changeset viewer.