-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathImprovedGraphics.lua
More file actions
51 lines (47 loc) · 1.54 KB
/
Copy pathImprovedGraphics.lua
File metadata and controls
51 lines (47 loc) · 1.54 KB
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
44
45
46
47
48
49
50
51
local IG_EventFrame = CreateFrame("Frame")
IG_EventFrame:RegisterEvent("PLAYER_ENTERING_WORLD")
IG_EventFrame:Hide()
function runAddonCommands()
ConsoleExec("overridefarclip 1")
ConsoleExec("horizonfarclip 6226")
ConsoleExec("groundeffectdensity 256")
ConsoleExec("smallcull 0")
ConsoleExec("characterAmbient")
ConsoleExec("extshadowquality 4")
ConsoleExec("farclip 1000")
ConsoleExec("horizonFarclipScale 6")
ConsoleExec("skycloudlod 3")
ConsoleExec("waterDetail 3")
ConsoleExec("reflectionMode 3")
ConsoleExec("rippleDetail 2")
ConsoleExec("shadowmode 3")
ConsoleExec("shadowtexturesize 2048")
ConsoleExec("particleDensity 100")
ConsoleExec("environmentDetail 150")
ConsoleExec("groundEffectDist 600")
ConsoleExec("groundEffectFade 1277")
ConsoleExec("spellEffectLevel 20")
ConsoleExec("ffxGlow 1")
ConsoleExec("ffxspecial 1")
ConsoleExec("ffxnetherworld 1")
ConsoleExec("ffxDeath 1")
ConsoleExec("sunshafts 2")
ConsoleExec("textureFilteringMode 5")
ConsoleExec("terrainMipLevel 0")
ConsoleExec("ssao 2")
ConsoleExec("ssaoblur 2")
ConsoleExec("weatherDensity 3")
ConsoleExec("gxmultiesample 8")
ConsoleExec("violencelevel 5")
ConsoleExec("componentTextureLevel 9")
ConsoleExec("frillDensity 256")
end
IG_EventFrame:SetScript("OnEvent",
function(self, event, ...)
runAddonCommands()
end)
SLASH_IG1 = '/ig'
function SlashCmdList.IG(msg, editbox)
runAddonCommands()
end
print("ImprovedGraphics", "Addon", "is", "loaded");