Skip to content

Commit a40187c

Browse files
committed
Added SQL teleporter script and query
1 parent 412061e commit a40187c

File tree

2 files changed

+130
-0
lines changed

2 files changed

+130
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
local Teleporter = {
2+
entry = 823 -- Unit entry
3+
}
4+
5+
-- Do not edit anything below this line.
6+
7+
function Teleporter.OnHello(event, player, unit)
8+
for k, v in pairs(Teleporter["Options"]) do
9+
if(player:GetTeam() == v["faction"] or v["faction"] == -1) and ( v["parent"] == 0) then
10+
player:GossipMenuAddItem(v["icon"], v["name"], 0, k)
11+
end
12+
end
13+
player:GossipSendMenu(1, unit)
14+
end
15+
16+
function Teleporter.OnSelect(event, player, unit, sender, intid, code)
17+
local t = Teleporter["Options"]
18+
19+
if(intid == 0) then -- Special handling for "Back" option in case parent is 0
20+
Teleporter.OnHello(event, player, unit)
21+
elseif(t[intid]["type"] == 1) then
22+
-- Hacky loops, but I want the results to be sorted damnit
23+
for i = 1, 2 do
24+
for k, v in pairs(t) do
25+
if(v["parent"] == intid and v["type"] == i and (player:GetTeam() == v["faction"] or v["faction"] == -1)) then
26+
player:GossipMenuAddItem(v["icon"], v["name"], 0, k)
27+
end
28+
end
29+
end
30+
player:GossipMenuAddItem(7, "[Back]", 0, t[intid]["parent"])
31+
player:GossipSendMenu(1, unit)
32+
elseif(t[intid]["type"] == 2) then
33+
player:Teleport(t[intid]["map"], t[intid]["x"], t[intid]["y"], t[intid]["z"], t[intid]["o"])
34+
end
35+
end
36+
37+
function Teleporter.LoadCache()
38+
Teleporter["Options"] = {}
39+
40+
if not(WorldDBQuery("SHOW TABLES LIKE 'eluna_teleporter';")) then
41+
print("[E-SQL Teleporter]: eluna_teleporter table missing from world database.")
42+
print("[E-SQL Teleporter]: Inserting table structure, initializing cache.")
43+
WorldDBQuery("CREATE TABLE `eluna_teleporter` (`id` int(5) NOT NULL AUTO_INCREMENT,`parent` int(5) NOT NULL DEFAULT '0',`type` int(1) NOT NULL DEFAULT '1',`faction` int(2) NOT NULL DEFAULT '-1',`icon` int(2) NOT NULL DEFAULT '0',`name` char(20) NOT NULL DEFAULT '',`map` int(5) DEFAULT NULL,`x` decimal(10,3) DEFAULT NULL,`y` decimal(10,3) DEFAULT NULL,`z` decimal(10,3) DEFAULT NULL,`o` decimal(10,3) DEFAULT NULL,PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=latin1;")
44+
return Teleporter.LoadCache();
45+
end
46+
47+
local Query = WorldDBQuery("SELECT * FROM eluna_teleporter;")
48+
if(Query) then
49+
repeat
50+
Teleporter["Options"][Query:GetUInt32(0)] = {
51+
parent = Query:GetUInt32(1),
52+
type = Query:GetUInt32(2),
53+
faction = Query:GetInt32(3),
54+
icon = Query:GetInt32(4),
55+
name = Query:GetString(5),
56+
map = Query:GetUInt32(6),
57+
x = Query:GetFloat(7),
58+
y = Query:GetFloat(8),
59+
z = Query:GetFloat(9),
60+
o = Query:GetFloat(10),
61+
};
62+
until not Query:NextRow()
63+
print("[E-SQL Teleporter]: Cache initialized. Loaded "..Query:GetRowCount().." results.")
64+
else
65+
print("[E-SQL Teleporter]: Cache initialized. No results found.")
66+
end
67+
end
68+
69+
Teleporter.LoadCache()
70+
RegisterCreatureGossipEvent(Teleporter.entry, 1, Teleporter.OnHello)
71+
RegisterCreatureGossipEvent(Teleporter.entry, 2, Teleporter.OnSelect)
+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
-- ----------------------------
2+
-- Table structure for `eluna_teleporter`
3+
-- ----------------------------
4+
DROP TABLE IF EXISTS `eluna_teleporter`;
5+
CREATE TABLE `eluna_teleporter` (
6+
`id` int(5) NOT NULL AUTO_INCREMENT,
7+
`parent` int(5) NOT NULL DEFAULT '0',
8+
`type` int(1) NOT NULL DEFAULT '1',
9+
`faction` int(2) NOT NULL DEFAULT '-1',
10+
`icon` int(2) NOT NULL DEFAULT '0',
11+
`name` char(255) NOT NULL DEFAULT '',
12+
`map` int(5) DEFAULT NULL,
13+
`x` decimal(10,3) DEFAULT NULL,
14+
`y` decimal(10,3) DEFAULT NULL,
15+
`z` decimal(10,3) DEFAULT NULL,
16+
`o` decimal(10,3) DEFAULT NULL,
17+
PRIMARY KEY (`id`)
18+
) ENGINE=InnoDB AUTO_INCREMENT=37 DEFAULT CHARSET=latin1;
19+
20+
-- ----------------------------
21+
-- Records of eluna_teleporter
22+
-- ----------------------------
23+
INSERT INTO `eluna_teleporter` (id, parent, type, faction, icon, name, map, x, y, z, o) VALUES
24+
('1', '0', '1', '1', '0', 'Horde Cities', null, null, null, null, null),
25+
('2', '0', '1', '0', '0', 'Alliance Cities', null, null, null, null, null),
26+
('3', '0', '1', '-1', '0', 'Outlands Locations', null, null, null, null, null),
27+
('4', '0', '1', '-1', '0', 'Northrend Locations', null, null, null, null, null),
28+
('5', '0', '1', '-1', '0', 'PvP Locations', null, null, null, null, null),
29+
('6', '1', '2', '1', '2', 'Orgrimmar', '1', '1503.000', '-4415.500', '22.000', '0.000'),
30+
('7', '1', '2', '1', '2', 'Undercity', '0', '1831.000', '238.500', '61.600', '0.000'),
31+
('8', '1', '2', '1', '2', 'Thunderbluff', '1', '-1278.000', '122.000', '132.000', '0.000'),
32+
('9', '1', '2', '1', '2', 'Silvermoon', '530', '9484.000', '-7294.000', '15.000', '0.000'),
33+
('10', '2', '2', '0', '2', 'Stormwind', '0', '-8905.000', '560.000', '94.000', '0.660'),
34+
('11', '2', '2', '0', '2', 'Ironforge', '0', '-4795.000', '-1117.000', '499.000', '0.000'),
35+
('12', '2', '2', '0', '2', 'Darnassus', '1', '9952.000', '2280.500', '1342.000', '1.600'),
36+
('13', '2', '2', '0', '2', 'The Exodar', '530', '-3863.000', '-11736.000', '-106.000', '2.000'),
37+
('14', '3', '2', '-1', '2', 'Blade\'s Edge Mountains', '530', '1481.000', '6829.000', '107.000', '6.000'),
38+
('15', '3', '2', '-1', '2', 'Hellfire Peninsula', '530', '-249.000', '947.000', '85.000', '2.000'),
39+
('16', '3', '2', '-1', '2', 'Nagrand', '530', '-1769.000', '7150.000', '-9.000', '2.000'),
40+
('17', '3', '2', '-1', '2', 'Netherstorm', '530', '3043.000', '3645.000', '143.000', '2.000'),
41+
('18', '3', '2', '-1', '2', 'Shadowmoon Valley', '530', '-3034.000', '2937.000', '87.000', '5.000'),
42+
('19', '3', '2', '-1', '2', 'Terokkar Forest', '530', '-1942.000', '4689.000', '-2.000', '5.000'),
43+
('20', '3', '2', '-1', '2', 'Zangarmarsh', '530', '-217.000', '5488.000', '23.000', '2.000'),
44+
('21', '3', '2', '-1', '2', 'Shattrath', '530', '-1822.000', '5417.000', '1.000', '3.000'),
45+
('22', '4', '2', '-1', '2', 'Borean Tundra', '571', '3230.000', '5279.000', '47.000', '3.000'),
46+
('23', '4', '2', '-1', '2', 'Crystalsong Forest', '571', '5732.000', '1016.000', '175.000', '3.600'),
47+
('24', '4', '2', '-1', '2', 'Dragonblight', '571', '3547.000', '274.000', '46.000', '1.600'),
48+
('25', '4', '2', '-1', '2', 'Grizzly Hills', '571', '3759.000', '-2672.000', '177.000', '3.000'),
49+
('26', '4', '2', '-1', '2', 'Howling Fjord', '571', '772.000', '-2905.000', '7.000', '5.000'),
50+
('27', '4', '2', '-1', '2', 'Icecrown Glaicer', '571', '8517.000', '676.000', '559.000', '4.700'),
51+
('28', '4', '2', '-1', '2', 'Sholazar Basin', '571', '5571.000', '5739.000', '-75.000', '2.000'),
52+
('29', '4', '2', '-1', '2', 'Storm Peaks', '571', '6121.000', '-1025.000', '409.000', '4.700'),
53+
('30', '4', '2', '-1', '2', 'Wintergrasp', '571', '5135.000', '2840.000', '408.000', '3.000'),
54+
('31', '4', '2', '-1', '2', 'Zul\'Drak', '571', '5761.000', '-3547.000', '387.000', '5.000'),
55+
('32', '4', '2', '-1', '2', 'Dalaran', '571', '5826.000', '470.000', '659.000', '1.400'),
56+
('33', '5', '2', '-1', '2', 'Gurubashi Arena', '0', '-13229.000', '226.000', '33.000', '1.000'),
57+
('34', '5', '2', '-1', '2', 'Dire Maul Arena', '1', '-3669.000', '1094.000', '160.000', '3.000'),
58+
('35', '5', '2', '-1', '2', 'Nagrand Arena', '530', '-1983.000', '6562.000', '12.000', '2.000'),
59+
('36', '5', '2', '-1', '2', 'Blade\'s Edge Arena', '530', '2910.000', '5976.000', '2.000', '4.000');

0 commit comments

Comments
 (0)