spell_target_position
主要用法
- 记录 Target_Dest_DB(17)的 法术效果坐标信息
- 记录 SPELL_EFFECT_TRIGGER_MISSILE(32)法术效果起始坐标
- id:取值链接 Spell.db2
- EffectIndex:法术效果索引
- MapID:取值链接 map.db2
- PositionX | PositionY | PositionZ | Orientation:具体坐标及朝向
举例
-- eg.1
INSERT INTO `world`.`spell_target_position` (`ID`, `EffectIndex`, `MapID`, `PositionX`, `PositionY`, `PositionZ`, `Orientation`, `VerifiedBuild`) VALUES
(89971, 0, 0, -929.976, -580.834, 0.589943, NULL, 0);
-- eg.2
INSERT INTO `world`.`spell_target_position` (`ID`, `EffectIndex`, `OrderIndex`, `MapID`, `PositionX`, `PositionY`, `PositionZ`, `Orientation`, `VerifiedBuild`) VALUES
(69881, 0, 4, 1, 4330.53, -5053.82, 335.543, NULL, 0),
(69881, 0, 0, 1, 4345, -5039.45, 335.599, NULL, 0),
(69881, 0, 2, 1, 4386.87, -5113.11, 335.595, NULL, 0),
(69881, 0, 5, 1, 4366.58, -5120, 335.604, NULL, 0),
(69881, 0, 7, 1, 4350.35, -5114.65, 335.758, NULL, 0),
(69881, 0, 3, 1, 4336.19, -5102.63, 335.595, NULL, 0),
(69881, 0, 6, 1, 4331.03, -5086.92, 335.595, NULL, 0),
(69881, 0, 1, 1, 4322.61, -5069.79, 336.026, NULL, 0);