View Single Post
08-15-16, 11:18 PM   #6
Thrumbar
A Chromatic Dragonspawn
Join Date: Jan 2005
Posts: 157
The scroll texture is because of this line in the NxQuest.lua

5467 t:SetTexture ("Interface\\QuestFrame\\QuestBG", true, true)

Change that to

5467 t:SetColorTexture (.7, .7, .5, .7)

In other words

texture:SetColorTexture(r, g, b[, a]);
Arguments
r
Number (0.0 to 1.0) - Red component.
g
Number (0.0 to 1.0) - Green component.
b
Number (0.0 to 1.0) - Blue component.
a
Number (0.0 to 1.0) - Alpha component (1.0 is opaque, 0.0 is transparent). The default value is 1.0.


Will remove the scroll texture and make the background a solid olive grey.



Originally Posted by Xaemyl View Post
I'm referring to the parchment scroll texture on the right hand side. Before 7.0.3 dropped, that texture wasn't there at all. Maybe it's a vestige of the blizzard quest frame that cant be turned off for some reason?

Last edited by Thrumbar : 08-15-16 at 11:56 PM.
  Reply With Quote