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
> local function format_anchor_link(name) | |
> -- make an educated guess at what the id of the function header will be | |
> return name:lower():gsub("%p", ""):gsub("%s", "-") | |
> end | |
> local function format_see_link(see) | |
> if see.href then return see.href end | |
> return format_anchor_link(see.name) | |
> end | |
> local escape = ldoc.escape | |
> local show_return_and_params = not ldoc.no_return_or_parms |
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
'.source.lua': | |
################ | |
# BigWigs stuff | |
################ | |
# API | |
'Log': | |
'prefix': 'bwlog' |
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
-- http://luacheck.readthedocs.io/en/stable/warnings.html | |
std = "lua51" | |
max_line_length = false | |
codes = true | |
exclude_files = { | |
"**/Libs", | |
} | |
ignore = { | |
"11./SLASH_.*", -- Setting an undefined (Slash handler) global variable |
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
#!/usr/bin/env python3 | |
import sys | |
import requests | |
from bs4 import BeautifulSoup | |
def parse_page(locale, page): | |
url = 'http://%s.wowhead.com/%s' % (locale, page) | |
if locale == 'www': | |
locale = 'en' |
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_* | |
--------------------------------------------------------------------------- |
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
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
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
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 |
OlderNewer