-
Notifications
You must be signed in to change notification settings - Fork 202
Expand file tree
/
Copy pathworld_map_scripts.h
More file actions
45 lines (38 loc) · 1.34 KB
/
world_map_scripts.h
File metadata and controls
45 lines (38 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/* This file is part of the ScriptDev2 Project. See AUTHORS file for Copyright information
* This program is free software licensed under GPL version 2
* Please see the included DOCS/LICENSE.TXT for more information */
#ifndef DEF_WORLD_MAP_SCRIPTS_H
#define DEF_WORLD_MAP_SCRIPTS_H
enum
{
// Quest 4740
NPC_GREYMIST_COASTRUNNNER = 2202,
NPC_GREYMIST_WARRIOR = 2205,
NPC_GREYMIST_HUNTER = 2206,
NPC_MURKDEEP = 10323,
QUEST_WANTED_MURKDEEP = 4740,
// Quest 6403
NPC_JONATHAN = 466,
NPC_WRYNN = 1747,
NPC_BOLVAR = 1748,
NPC_PRESTOR = 1749,
NPC_WINDSOR = 12580,
// Quest 11538
NPC_EMISSARY_OF_HATE = 25003,
NPC_IRESPEAKER = 24999,
NPC_UNLEASHED_HELLION = 25002,
};
enum SpawnIndexes
{
POS_IDX_EMISSARY_SPAWN = 0,
POS_IDX_MURKDEEP_SPAWN = 1,
POS_IDX_MURKDEEP_MOVE = 2,
POS_IDX_MAX = 3
};
static const float aSpawnLocations[POS_IDX_MAX][4] =
{
{12583.019f, -6916.194f, 4.601f, 6.18f}, // Emissary of Hate, guesswork
{4981.031f, 597.955f, -1.361f, 4.82f}, // Murkdeep spawn, guesswork
{4988.970f, 547.002f, 5.379f, 0.0f}, // Murkdeep move, guesswork
};
#endif