|
|
Модератор форума: Dimitro |
Форум TrinityCore Установка / Настройка TrinityCore [Видео] Создание телепорт-мастера |
[Видео] Создание телепорт-мастера |
Приветствую всех юзеров данного портала.В этом видео я вам покажу как создать самого простого телепорт-мастера на SmartAI.
Видео: Видео Всё что использовалось в видео: Код INSERT INTO `gossip_menu` VALUES (61900, 0); - создание нового gossip_menu UPDATE `creature_template` SET `gossip_menu_id`='61900' WHERE `entry`='180000'; - дать gossip_menu нашему нпц. Где 61900 - это ID нашего меню, где 180000 - это ID нашего нпц. INSERT INTO `gossip_menu_option` (`menu_id`, `id`, `option_icon`, `option_text`, `option_id`, `npc_option_npcflag`, `action_menu_id`, `action_poi_id`, `box_coded`, `box_money`, `box_text`) VALUES('61900','1','10','One teleportation','1','1','0','0','0','0','Вы уверены?'); - думаю тут объяснять не нужно,где 10 это ID иконки. INSERT INTO `gossip_menu_option` (`menu_id`, `id`, `option_icon`, `option_text`, `option_id`, `npc_option_npcflag`, `action_menu_id`, `action_poi_id`, `box_coded`, `box_money`, `box_text`) VALUES('61900','8','4','Twot teleportation','1','1','0','0','0','0',''); DELETE FROM `smart_scripts` WHERE (`entryorguid`=180000 AND `source_type`=0); INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES (180000, 0, 1, 0, 62, 0, 100, 0, 61900, 1, 0, 0, 62, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0, 1300, -4531, 21.51, 1.78, 'Test'); - 180000 Id нашего нпц. - 1300 ( x ) - -4531 ( y ) - 21.51 ( z ) - 1.78 ( o ) |
| |||
| |||