-
Notifications
You must be signed in to change notification settings - Fork 7
/
globals.lua
43 lines (30 loc) · 1.03 KB
/
globals.lua
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
--[[
globals.lua
This file contains all globally defined data strings.
These strings are not to be localised, so they are here, and not in any of the locale files.
]]
-- Global define
EFM_Version = "4.1.2-Classic/Cata";
-- Define some stuff here to handle global stuff...
EFM_Global_Faction = UnitFactionGroup("player");
-- Timer variables (see timer.lua)
EFM_Timer_StartRecording = false;
EFM_Timer_Recording = false;
EFM_Timer_Paused = false;
EFM_Timer_LastTime = time();
EFM_Timer_TimeRemaining = 0;
EFM_Timer_TimeKnown = false;
EFM_Timer_FlightTime = 0;
EFM_Timer_NodeStyle = 0;
-- For the map updates (see map.lua)
knownPoints = {};
-- Flightmaster defines (see flightmaster.lua)
EFM_TaxiOrigin = "";
EFM_TaxiDistantButtonData = {};
-- Reference globals (see data.lua)
EFM_LocTypes = {};
-- Special strings. These strings do not get modified for locale-specificness...
EFM_HELPCMD_STRING = "|c00FFFFFF%s|r";
-- Show unknown flight times while in flight
EFM_ShowUnknownTimes = false;
Lys_Debug = false;