MapID | ID | Zone Name | Area Name |
---|---|---|---|
4 | 1 | Kalimdor | Durotar |
9 | 1 | Kalimdor | Mulgore |
11 | 1 | Kalimdor | Barrens |
13 | 1 | Kalimdor | Kalimdor |
14 | 0 | Eastern Kingdoms | Azeroth |
16 | 0 | Eastern Kingdoms | Arathi |
17 | 0 | Eastern Kingdoms | Badlands |
19 | 0 | Eastern |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "toc", | |
"fileTypes": [ | |
"toc" | |
], | |
"scopeName": "source.toc", | |
"uuid": "C22B105F-216F-4779-9E20-7C881A2B0C99", | |
"patterns": [ | |
{ | |
"match": "^(##\\s*(\\S+))\\s*(:)\\s*(.*)$", |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# A standard library for World of Warcraft generated from Blizzard_APIDocumentation | |
[selene] | |
base = "lua51" | |
name = "wow" | |
# std lua changes | |
[debug] | |
removed = true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# A standard library for World of Warcraft generated from Blizzard_APIDocumentation | |
[selene] | |
base = "lua51" | |
name = "wow" | |
# std lua changes | |
[debug] | |
removed = true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
// API | |
"Log": { | |
"scope": "lua", | |
"prefix": "bwlog", | |
"body": "self:Log(\"${1:event}\", \"${2:func}\", ${3:...})$0", | |
}, | |
"Log AURA_APPLIED": { | |
"scope": "lua", | |
"prefix": "bwlogauraapplied", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local f = CreateFrame("Frame") | |
f:SetScript("OnEvent", function(self, event) | |
if Transcriptor:IsLogging() then | |
Transcriptor:StopLog(event ~= "CHALLENGE_MODE_COMPLETED" and event ~= "PLAYER_ENTERING_WORLD") | |
end | |
if event ~= "PLAYER_ENTERING_WORLD" and event ~= "CHALLENGE_MODE_COMPLETED" then | |
Transcriptor:StartLog(event ~= "CHALLENGE_MODE_START") | |
end | |
end) | |
f:RegisterEvent("PLAYER_ENTERING_WORLD") -- left early |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release AddOn | |
on: | |
push: | |
tags: | |
- '**' | |
env: | |
CF_API_KEY: ${{ secrets.CF_API_KEY }} | |
WOWI_API_TOKEN: ${{ secrets.WOWI_API_TOKEN }} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker Image CI | |
on: | |
push | |
branches: | |
- master | |
tags: | |
- * | |
paths-ignore: | |
- README.md |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ -z "$WEBHOOK_URL" ]; then | |
echo "ERROR! You need to set the WEBHOOK_URL environment variable." | |
exit 0 | |
fi | |
AUTHOR_NAME=$( git -C "$GITHUB_WORKSPACE" log -1 "$GITHUB_SHA" --pretty="%aN" ) | |
COMMITTER_NAME=$( git -C "$GITHUB_WORKSPACE" log -1 "$GITHUB_SHA" --pretty="%cN" ) | |
if [ "$AUTHOR_NAME" = "$COMMITTER_NAME" ]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
------------------------------------------------------------------------------ | |
-- DevToolsFrameStack.lua | |
-- | |
-- Frame stacking monitor | |
-- | |
-- Globals: DevTools, SLASH_DEVTOOLS_FRAMESTACK1 | |
-- Globals: BINDING_HEADER_DEVTOOLS | |
-- Globals: BINDING_NAME_DEVTOOLS_FRAMESTACK_* | |
--------------------------------------------------------------------------- |
NewerOlder