PDA

View Full Version : alt+z with no labels


sdwNico
10-02-2004, 06:36 PM
Can u fix so that when alt+z is pressed (take screenshot-mode..) player names are also removed?

sarf
10-02-2004, 06:40 PM
Not really.

However, if you found out what command alt-z executes, you could combine it with the command to remove names and then do both.

The command to change names is "/console unitnamerender 0" or something like that.

Sarf
---
Proofread carefully to see if you any words out.

Sir.Bender
10-13-2004, 05:48 PM
I think it could be done by changing the "Bindings.xml" in "Interface\FrameXML". Open the file and in line 594 you will find:

<Binding name="TOGGLEUI">
if ( UIParent:IsVisible() ) then
CloseAllWindows();
UIParent:Hide();
else
UIParent:Show();
end
</Binding>

Replace it with (or insert the new lines):

<Binding name="TOGGLEUI">
if ( UIParent:IsVisible() ) then
CloseAllWindows();
UIParent:Hide();
ConsoleExec("unitnamerendermode 0");
else
UIParent:Show();
ConsoleExec("unitnamerendermode 1");
end
</Binding>

However, I have no chance to test it.
Sir.Bender

sarf
10-14-2004, 02:30 AM
That looks like it would work. I thought alt-z was not a binding, but a bypass key... oh well. I learn something new each day!

Sarf
---
Davis's Basic Law of ********: Pills to be taken in twos always come out of the bottle in threes.