Skip to content

Instantly share code, notes, and snippets.

@dneelyep
dneelyep / WoW Change Audio Volume Macros
Last active June 10, 2023 17:05
A set of macros to easily set the Master Volume in World of Warcraft to a desired level.
# Set volume to maximum:
/run SetCVar("Sound_MasterVolume", 1)
/run print("Master Volume set to 100%")
# Set volume to minimum:
/run SetCVar("Sound_MasterVolume", 0.05)
/run print("Master Volume set to 5%")
@dneelyep
dneelyep / WoW Show Garrison Macros
Created June 4, 2023 21:21
A set of macros to show World of Warcraft Garrison UIs
# These macros will allow you to open up your garrison UIs from any expansion from anywhere in the world.
# This is partially documented here: https://wowpedia.fandom.com/wiki/Enum.GarrisonType
# Warlords of Draenor:
/run ShowGarrisonLandingPage(Enum.GarrisonType.Type_6_0)
# Legion:
/run ShowGarrisonLandingPage(Enum.GarrisonType.Type_7_0)
# Battle for Azeroth:
@dneelyep
dneelyep / schema.json
Last active November 23, 2022 00:02
Test schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://neelindustries.net/schemas/dnsintent.json",
"title": "DNS Intent Configuration",
"description": "A configuration listing the intended DNS configuration for a system.",
"type": "object",
"properties": {
"service-ingress-points": {
"type": "array",
"description": "A list of unique ingress points into your service",