Olá BGame você que esteja fazendo um servidor e precisa de um teleport com suas áreas
estou postando 1
Créditos WindBR
estou postando 1
Código:
SET
@ENTRY := 200000,
@NAME := "WindBR",
@SUBNAME := "",
@MODEL := 24191,
@TEXT_ID := 300000,
@GOSSIP_MENU := 50000;
DELETE FROM creature_template WHERE entry = @ENTRY;
DELETE FROM gossip_menu_option WHERE menu_id BETWEEN @GOSSIP_MENU AND @GOSSIP_MENU+8;
DELETE FROM smart_scripts WHERE entryorguid = @ENTRY AND source_type = 0;
REPLACE INTO `creature_template` (`entry`, `modelid1`, `name`, `gossip_menu_id`, `minlevel`, `maxlevel`, `exp`, `faction_A`, `faction_H`, `npcflag`, `scale`, `unit_class`, `AIName`) VALUES
('200000','24191','WindBR','50000','60','80','2','35','35','1','1','1','SmartAI');
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
(@GOSSIP_MENU, 1, 2, "Zeus", 1, 1, @GOSSIP_MENU, 0, 0, 0, "Quer teleportar mesmo?"),
(@GOSSIP_MENU, 2, 2, "Voidrak", 1, 1, @GOSSIP_MENU, 0, 0, 0, "Quer teleportar mesmo?"),
(@GOSSIP_MENU, 3, 2, "Onixya Lair", 1, 1, @GOSSIP_MENU, 0, 0, 0, "Quer teleportar mesmo?"),
(@GOSSIP_MENU, 4, 2, "World Boss", 1, 1, @GOSSIP_MENU, 0, 0, 0, "Quer teleportar mesmo?");
-- Teleport scripts:
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
(@ENTRY, 0, 1, 0, 62, 0, 100, 0, @GOSSIP_MENU, 1, 0, 0, 62, 571, 0, 0, 0, 0, 0, 7, 0, 0, 0, 7367.751953, -553.011780, 1897.348022, 0.164136, "Teleporter script"),
(@ENTRY, 0, 2, 0, 62, 0, 100, 0, @GOSSIP_MENU, 2, 0, 0, 62, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, -7626.669922, -710.423706, 183.285645, 5.005519, "Teleporter script"),
(@ENTRY, 0, 3, 0, 62, 0, 100, 0, @GOSSIP_MENU, 3, 0, 0, 62, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0, -4678.064453, -3722.556885, 46.541351, 2.268593, "Teleporter script"),
(@ENTRY, 0, 4, 0, 62, 0, 100, 0, @GOSSIP_MENU, 4, 0, 0, 62, 530, 0, 0, 0, 0, 0, 7, 0, 0, 0, -3545.479004, 305.690857, 40.117954, 3.146269, "Teleporter script");
Créditos WindBR