Skip to content

Instantly share code, notes, and snippets.

@kurapica
kurapica / ChatFrameFix.lua
Created June 29, 2021 16:10
Chat Frame Fix for WOW
Scorpio "ChatFix" ""
local _LoadedTab = 1
local _CheckCompare = false
local _CheckType = nil
local _CheckAchievement = nil
local GameTooltip = _G.GameTooltip
_G.CHAT_FRAME_TAB_SELECTED_NOMOUSE_ALPHA = 0
_G.CHAT_FRAME_TAB_NORMAL_NOMOUSE_ALPHA = 0
@kurapica
kurapica / infobar.lua
Created June 29, 2021 13:44
Info bar for world of warcraft
Scorpio "InfoBar" ""
_Status = Frame("_Status", UIParent)
_Text = FontString("Text", _Status)
Style[_Status] = {
{
Text = {
drawLayer = "ARTWORK",
fontObject = TextStatusBarTextLarge,
@kurapica
kurapica / minimap.lua
Created June 28, 2021 14:06
Minimap Patch For WOW
Scorpio "MinimmapPatch" ""
MinimapZoneTextButton:SetParent(Minimap)
MinimapZoneTextButton:ClearAllPoints()
MinimapZoneTextButton:SetPoint("BOTTOMLEFT", Minimap, "TOPLEFT", 0, 4)
MinimapZoneTextButton:SetPoint("BOTTOMRIGHT", Minimap, "TOPRIGHT", 0, 4)
MiniMapTracking:Show()
MiniMapTrackingBackground:Hide()
MiniMapTrackingIconOverlay:Hide()
@kurapica
kurapica / siwtch.lua
Last active June 28, 2021 14:07
PLoop-Switcher
require "PLoop" (function(_ENV)
__Sealed__()
struct "Case" (function(_ENV)
import "System.Text"
export { unpack = unpack or table.unpack }
member "vars" { type = Variables, require = true }
member "func" { type = Callable, require = true }