World of Warcraft used to work flawlessly, now unplayable in 3D
  10 / 26    
Here is some kind of workaround that works for me.

1. I have made a small addon that changes slightly the convergence value every second, so you don't need to do it manually by moving the screen depth slider in the stereo options. Works with most but not all frames of the UI. (This is quick and dirty, as I have no skills in making addons. Use at your own risk. If someone can make a better one, please tell me.) The code is as follows:

Fresh3D.toc

[codebox]## Interface: 30300

## Title: Fresh3D
## Version: 0.0.1
## Author: Tambono

Fresh3D.xml
[/codebox]

Fresh3D.lua

[codebox]Fresh3D_UpdateInterval = 1; -- How often the OnUpdate code will run (in seconds)
Fresh3D_Pointer = 1;
Fresh3D_Convergence = 4.4; -- The convergence value - change it to what you like

function Fresh3D_OnUpdate(self, elapsed)
self.TimeSinceLastUpdate = self.TimeSinceLastUpdate + elapsed;
if (self.TimeSinceLastUpdate > Fresh3D_UpdateInterval) then
if (Fresh3D_Pointer > 0) then
SetCVar("gxStereoConvergence", Fresh3D_Convergence);
Fresh3D_Pointer = 0;
self.TimeSinceLastUpdate = 0
else
SetCVar("gxStereoConvergence", Fresh3D_Convergence - 0.1);
Fresh3D_Pointer = 1;
self.TimeSinceLastUpdate = 0
end
end
end
[/codebox]

Fresh3D.xml

[codebox]<Ui xmlns="http://www.blizzard.com/wow/ui/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.blizzard.com/wow/ui/FrameXML\UI.xsd">
<script file="Fresh3D.lua"/>
<Frame name="Fresh3DFrame">
<scripts>
<OnLoad>self.TimeSinceLastUpdate = 0 </OnLoad>
<OnUpdate function="Fresh3D_OnUpdate" />
</scripts>
</Frame>
</Ui>
[/codebox]

Copy the code, paste it into an editor and save it as <filename>. Put the three files in a folder called "Fresh3D". Move this folder into your World of Warcraft\Interface\Addons folder.

2. The cooldown shadows of the action buttons and buffs are still out of place. I use an addon called "OmniCC" (http://www.wowinterface.com/downloads/info4836-OmniCC.html) that changes the cooldown shadows to numbers.

3. The map is not displayed correctly. I use "Mapster" (http://www.wowinterface.com/downloads/info8306-Mapster.html) as a map replacement. "MetaMap" (http://www.wowinterface.com/downloads/info13311-MetaMapFanUpdatev3.3.html) would be an alternative.

4. Not a workaround, but nice: The addon "Kong" (http://www.wowinterface.com/downloads/info12550-KongUIHider.html) lets you fade out parts of the UI, so you can walk/fly around in a pure 3D environment. Works a lot better than "Alt-Z".

Have fun
Tambono

[i]Edit: Corrected Fresh3D.xml code.[/i]
Here is some kind of workaround that works for me.



1. I have made a small addon that changes slightly the convergence value every second, so you don't need to do it manually by moving the screen depth slider in the stereo options. Works with most but not all frames of the UI. (This is quick and dirty, as I have no skills in making addons. Use at your own risk. If someone can make a better one, please tell me.) The code is as follows:



Fresh3D.toc



[codebox]## Interface: 30300



## Title: Fresh3D

## Version: 0.0.1

## Author: Tambono



Fresh3D.xml

[/codebox]



Fresh3D.lua



[codebox]Fresh3D_UpdateInterval = 1; -- How often the OnUpdate code will run (in seconds)

Fresh3D_Pointer = 1;

Fresh3D_Convergence = 4.4; -- The convergence value - change it to what you like



function Fresh3D_OnUpdate(self, elapsed)

self.TimeSinceLastUpdate = self.TimeSinceLastUpdate + elapsed;

if (self.TimeSinceLastUpdate > Fresh3D_UpdateInterval) then

if (Fresh3D_Pointer > 0) then

SetCVar("gxStereoConvergence", Fresh3D_Convergence);

Fresh3D_Pointer = 0;

self.TimeSinceLastUpdate = 0

else

SetCVar("gxStereoConvergence", Fresh3D_Convergence - 0.1);

Fresh3D_Pointer = 1;

self.TimeSinceLastUpdate = 0

end

end

end

[/codebox]



Fresh3D.xml



[codebox]<Ui xmlns="http://www.blizzard.com/wow/ui/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.blizzard.com/wow/ui/FrameXML\UI.xsd">

<script file="Fresh3D.lua"/>

<Frame name="Fresh3DFrame">

<scripts>

<OnLoad>self.TimeSinceLastUpdate = 0 </OnLoad>

<OnUpdate function="Fresh3D_OnUpdate" />

</scripts>

</Frame>

</Ui>

[/codebox]



Copy the code, paste it into an editor and save it as <filename>. Put the three files in a folder called "Fresh3D". Move this folder into your World of Warcraft\Interface\Addons folder.



2. The cooldown shadows of the action buttons and buffs are still out of place. I use an addon called "OmniCC" (http://www.wowinterface.com/downloads/info4836-OmniCC.html) that changes the cooldown shadows to numbers.



3. The map is not displayed correctly. I use "Mapster" (http://www.wowinterface.com/downloads/info8306-Mapster.html) as a map replacement. "MetaMap" (http://www.wowinterface.com/downloads/info13311-MetaMapFanUpdatev3.3.html) would be an alternative.



4. Not a workaround, but nice: The addon "Kong" (http://www.wowinterface.com/downloads/info12550-KongUIHider.html) lets you fade out parts of the UI, so you can walk/fly around in a pure 3D environment. Works a lot better than "Alt-Z".



Have fun

Tambono



Edit: Corrected Fresh3D.xml code.

Posted 04/11/2010 08:27 AM   
Wow, thanks...I'm going to try this out as soon as I have some free time.
Wow, thanks...I'm going to try this out as soon as I have some free time.

Posted 04/11/2010 06:59 PM   
Nice, I was wondering if there was a way to do that!

So really, if Blizzard cared either; they could just refresh the convergence internally whenever a new UI element is drawn. According to them, they couldn't do anything to fix the issue last time I checked - so that clearly is not true on their part either.

I'll check out the fix later and see how it goes, thanks for posting that.
Nice, I was wondering if there was a way to do that!



So really, if Blizzard cared either; they could just refresh the convergence internally whenever a new UI element is drawn. According to them, they couldn't do anything to fix the issue last time I checked - so that clearly is not true on their part either.



I'll check out the fix later and see how it goes, thanks for posting that.

Core i7 920 @ 3.6Ghz, 6GB 3 Channel, SLi GTX670 2GB, SSD

Posted 04/12/2010 05:39 PM   
[quote name='Tambono' post='1037803' date='Apr 11 2010, 05:27 PM']Here is some kind of workaround that works for me.

1. I have made a small addon that changes slightly the convergence value every second, so you don't need to do it manually by moving the screen depth slider in the stereo options. Works with most but not all frames of the UI. (This is quick and dirty, as I have no skills in making addons. Use at your own risk. If someone can make a better one, please tell me.) The code is as follows:

Fresh3D.toc

[codebox]## Interface: 30300

## Title: Fresh3D
## Version: 0.0.1
## Author: Tambono

Fresh3D.xml
[/codebox]

Fresh3D.lua

[codebox]Fresh3D_UpdateInterval = 1; -- How often the OnUpdate code will run (in seconds)
Fresh3D_Pointer = 1;
Fresh3D_Convergence = 4.4; -- The convergence value - change it to what you like

function Fresh3D_OnUpdate(self, elapsed)
self.TimeSinceLastUpdate = self.TimeSinceLastUpdate + elapsed;
if (self.TimeSinceLastUpdate > Fresh3D_UpdateInterval) then
if (Fresh3D_Pointer > 0) then
SetCVar("gxStereoConvergence", Fresh3D_Convergence);
Fresh3D_Pointer = 0;
self.TimeSinceLastUpdate = 0
else
SetCVar("gxStereoConvergence", Fresh3D_Convergence - 0.1);
Fresh3D_Pointer = 1;
self.TimeSinceLastUpdate = 0
end
end
end
[/codebox]

Fresh3D.xml

[codebox]<Ui xmlns="http://www.blizzard.com/wow/ui/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.blizzard.com/wow/ui/FrameXML\UI.xsd">
<script file="Fresh3D.lua"/>
<Frame name="Fresh3DFrame">
<scripts>
<OnLoad>self.TimeSinceLastUpdate = 0 </OnLoad>
<OnUpdate function="Fresh3D_OnUpdate" />
</Scripts>
</Frame>
</Ui>
[/codebox]

Copy the code, paste it into an editor and save it as <filename>. Put the three files in a folder called "Fresh3D". Move this folder into your World of Warcraft\Interface\Addons folder.

2. The cooldown shadows of the action buttons and buffs are still out of place. I use an addon called "OmniCC" (http://www.wowinterface.com/downloads/info4836-OmniCC.html) that changes the cooldown shadows to numbers.

3. The map is not displayed correctly. I use "Mapster" (http://www.wowinterface.com/downloads/info8306-Mapster.html) as a map replacement. "MetaMap" (http://www.wowinterface.com/downloads/info13311-MetaMapFanUpdatev3.3.html) would be an alternative.

4. Not a workaround, but nice: The addon "Kong" (http://www.wowinterface.com/downloads/info12550-KongUIHider.html) lets you fade out parts of the UI, so you can walk/fly around in a pure 3D environment. Works a lot better than "Alt-Z".

Have fun
Tambono[/quote]

I am Korean. My english is not so good. Please be generous on that.
I tried this add-on. First of all, I had an error-occurring. In the fourth row of Fresh3D.xml, I had to replace <scripts> to <scripts> with capital S. Then it worked well.
but I couldn't feel any convergence. It means no pop-out effects. Did I try right?
Without this add-on, I can feel pop-out. But after using it, the pop-out's gone.
Is there anyone else who tried this add-on?

And new version of the driver, CD v1.25, didn't make any differences about WOW UI mess-up. Still I have to use cd v1.13.
[quote name='Tambono' post='1037803' date='Apr 11 2010, 05:27 PM']Here is some kind of workaround that works for me.



1. I have made a small addon that changes slightly the convergence value every second, so you don't need to do it manually by moving the screen depth slider in the stereo options. Works with most but not all frames of the UI. (This is quick and dirty, as I have no skills in making addons. Use at your own risk. If someone can make a better one, please tell me.) The code is as follows:



Fresh3D.toc



[codebox]## Interface: 30300



## Title: Fresh3D

## Version: 0.0.1

## Author: Tambono



Fresh3D.xml

[/codebox]



Fresh3D.lua



[codebox]Fresh3D_UpdateInterval = 1; -- How often the OnUpdate code will run (in seconds)

Fresh3D_Pointer = 1;

Fresh3D_Convergence = 4.4; -- The convergence value - change it to what you like



function Fresh3D_OnUpdate(self, elapsed)

self.TimeSinceLastUpdate = self.TimeSinceLastUpdate + elapsed;

if (self.TimeSinceLastUpdate > Fresh3D_UpdateInterval) then

if (Fresh3D_Pointer > 0) then

SetCVar("gxStereoConvergence", Fresh3D_Convergence);

Fresh3D_Pointer = 0;

self.TimeSinceLastUpdate = 0

else

SetCVar("gxStereoConvergence", Fresh3D_Convergence - 0.1);

Fresh3D_Pointer = 1;

self.TimeSinceLastUpdate = 0

end

end

end

[/codebox]



Fresh3D.xml



[codebox]<Ui xmlns="http://www.blizzard.com/wow/ui/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.blizzard.com/wow/ui/FrameXML\UI.xsd">

<script file="Fresh3D.lua"/>

<Frame name="Fresh3DFrame">

<scripts>

<OnLoad>self.TimeSinceLastUpdate = 0 </OnLoad>

<OnUpdate function="Fresh3D_OnUpdate" />

</Scripts>

</Frame>

</Ui>

[/codebox]



Copy the code, paste it into an editor and save it as <filename>. Put the three files in a folder called "Fresh3D". Move this folder into your World of Warcraft\Interface\Addons folder.



2. The cooldown shadows of the action buttons and buffs are still out of place. I use an addon called "OmniCC" (http://www.wowinterface.com/downloads/info4836-OmniCC.html) that changes the cooldown shadows to numbers.



3. The map is not displayed correctly. I use "Mapster" (http://www.wowinterface.com/downloads/info8306-Mapster.html) as a map replacement. "MetaMap" (http://www.wowinterface.com/downloads/info13311-MetaMapFanUpdatev3.3.html) would be an alternative.



4. Not a workaround, but nice: The addon "Kong" (http://www.wowinterface.com/downloads/info12550-KongUIHider.html) lets you fade out parts of the UI, so you can walk/fly around in a pure 3D environment. Works a lot better than "Alt-Z".



Have fun

Tambono



I am Korean. My english is not so good. Please be generous on that.

I tried this add-on. First of all, I had an error-occurring. In the fourth row of Fresh3D.xml, I had to replace <scripts> to <scripts> with capital S. Then it worked well.

but I couldn't feel any convergence. It means no pop-out effects. Did I try right?

Without this add-on, I can feel pop-out. But after using it, the pop-out's gone.

Is there anyone else who tried this add-on?



And new version of the driver, CD v1.25, didn't make any differences about WOW UI mess-up. Still I have to use cd v1.13.

Posted 04/15/2010 05:21 AM   
[quote name='Tambono' post='1037803' date='Apr 11 2010, 05:27 PM']Here is some kind of workaround that works for me.

1. I have made a small addon that changes slightly the convergence value every second, so you don't need to do it manually by moving the screen depth slider in the stereo options. Works with most but not all frames of the UI. (This is quick and dirty, as I have no skills in making addons. Use at your own risk. If someone can make a better one, please tell me.) The code is as follows:

Fresh3D.toc

[codebox]## Interface: 30300

## Title: Fresh3D
## Version: 0.0.1
## Author: Tambono

Fresh3D.xml
[/codebox]

Fresh3D.lua

[codebox]Fresh3D_UpdateInterval = 1; -- How often the OnUpdate code will run (in seconds)
Fresh3D_Pointer = 1;
Fresh3D_Convergence = 4.4; -- The convergence value - change it to what you like

function Fresh3D_OnUpdate(self, elapsed)
self.TimeSinceLastUpdate = self.TimeSinceLastUpdate + elapsed;
if (self.TimeSinceLastUpdate > Fresh3D_UpdateInterval) then
if (Fresh3D_Pointer > 0) then
SetCVar("gxStereoConvergence", Fresh3D_Convergence);
Fresh3D_Pointer = 0;
self.TimeSinceLastUpdate = 0
else
SetCVar("gxStereoConvergence", Fresh3D_Convergence - 0.1);
Fresh3D_Pointer = 1;
self.TimeSinceLastUpdate = 0
end
end
end
[/codebox]

Fresh3D.xml

[codebox]<Ui xmlns="http://www.blizzard.com/wow/ui/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.blizzard.com/wow/ui/FrameXML\UI.xsd">
<script file="Fresh3D.lua"/>
<Frame name="Fresh3DFrame">
<scripts>
<OnLoad>self.TimeSinceLastUpdate = 0 </OnLoad>
<OnUpdate function="Fresh3D_OnUpdate" />
</Scripts>
</Frame>
</Ui>
[/codebox]

Copy the code, paste it into an editor and save it as <filename>. Put the three files in a folder called "Fresh3D". Move this folder into your World of Warcraft\Interface\Addons folder.

2. The cooldown shadows of the action buttons and buffs are still out of place. I use an addon called "OmniCC" (http://www.wowinterface.com/downloads/info4836-OmniCC.html) that changes the cooldown shadows to numbers.

3. The map is not displayed correctly. I use "Mapster" (http://www.wowinterface.com/downloads/info8306-Mapster.html) as a map replacement. "MetaMap" (http://www.wowinterface.com/downloads/info13311-MetaMapFanUpdatev3.3.html) would be an alternative.

4. Not a workaround, but nice: The addon "Kong" (http://www.wowinterface.com/downloads/info12550-KongUIHider.html) lets you fade out parts of the UI, so you can walk/fly around in a pure 3D environment. Works a lot better than "Alt-Z".

Have fun
Tambono[/quote]

I am Korean. My english is not so good. Please be generous on that.
I tried this add-on. First of all, I had an error-occurring. In the fourth row of Fresh3D.xml, I had to replace <scripts> to <scripts> with capital S. Then it worked well.
but I couldn't feel any convergence. It means no pop-out effects. Did I try right?
Without this add-on, I can feel pop-out. But after using it, the pop-out's gone.
Is there anyone else who tried this add-on?

And new version of the driver, CD v1.25, didn't make any differences about WOW UI mess-up. Still I have to use cd v1.13.
[quote name='Tambono' post='1037803' date='Apr 11 2010, 05:27 PM']Here is some kind of workaround that works for me.



1. I have made a small addon that changes slightly the convergence value every second, so you don't need to do it manually by moving the screen depth slider in the stereo options. Works with most but not all frames of the UI. (This is quick and dirty, as I have no skills in making addons. Use at your own risk. If someone can make a better one, please tell me.) The code is as follows:



Fresh3D.toc



[codebox]## Interface: 30300



## Title: Fresh3D

## Version: 0.0.1

## Author: Tambono



Fresh3D.xml

[/codebox]



Fresh3D.lua



[codebox]Fresh3D_UpdateInterval = 1; -- How often the OnUpdate code will run (in seconds)

Fresh3D_Pointer = 1;

Fresh3D_Convergence = 4.4; -- The convergence value - change it to what you like



function Fresh3D_OnUpdate(self, elapsed)

self.TimeSinceLastUpdate = self.TimeSinceLastUpdate + elapsed;

if (self.TimeSinceLastUpdate > Fresh3D_UpdateInterval) then

if (Fresh3D_Pointer > 0) then

SetCVar("gxStereoConvergence", Fresh3D_Convergence);

Fresh3D_Pointer = 0;

self.TimeSinceLastUpdate = 0

else

SetCVar("gxStereoConvergence", Fresh3D_Convergence - 0.1);

Fresh3D_Pointer = 1;

self.TimeSinceLastUpdate = 0

end

end

end

[/codebox]



Fresh3D.xml



[codebox]<Ui xmlns="http://www.blizzard.com/wow/ui/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.blizzard.com/wow/ui/FrameXML\UI.xsd">

<script file="Fresh3D.lua"/>

<Frame name="Fresh3DFrame">

<scripts>

<OnLoad>self.TimeSinceLastUpdate = 0 </OnLoad>

<OnUpdate function="Fresh3D_OnUpdate" />

</Scripts>

</Frame>

</Ui>

[/codebox]



Copy the code, paste it into an editor and save it as <filename>. Put the three files in a folder called "Fresh3D". Move this folder into your World of Warcraft\Interface\Addons folder.



2. The cooldown shadows of the action buttons and buffs are still out of place. I use an addon called "OmniCC" (http://www.wowinterface.com/downloads/info4836-OmniCC.html) that changes the cooldown shadows to numbers.



3. The map is not displayed correctly. I use "Mapster" (http://www.wowinterface.com/downloads/info8306-Mapster.html) as a map replacement. "MetaMap" (http://www.wowinterface.com/downloads/info13311-MetaMapFanUpdatev3.3.html) would be an alternative.



4. Not a workaround, but nice: The addon "Kong" (http://www.wowinterface.com/downloads/info12550-KongUIHider.html) lets you fade out parts of the UI, so you can walk/fly around in a pure 3D environment. Works a lot better than "Alt-Z".



Have fun

Tambono



I am Korean. My english is not so good. Please be generous on that.

I tried this add-on. First of all, I had an error-occurring. In the fourth row of Fresh3D.xml, I had to replace <scripts> to <scripts> with capital S. Then it worked well.

but I couldn't feel any convergence. It means no pop-out effects. Did I try right?

Without this add-on, I can feel pop-out. But after using it, the pop-out's gone.

Is there anyone else who tried this add-on?



And new version of the driver, CD v1.25, didn't make any differences about WOW UI mess-up. Still I have to use cd v1.13.

Posted 04/15/2010 05:21 AM   
[quote name='dream143' post='1039967' date='Apr 15 2010, 07:21 AM']I tried this add-on. First of all, I had an error-occurring. In the fourth row of Fresh3D.xml, I had to replace <scripts> to <scripts> with capital S. Then it worked well.[/quote]

Sorry for that. [i][b]For some weird reason this forum doesn't let me write <script> with capital S, in the preview and the posted message it always changes automatically to lower s. /verymad.gif' class='bbc_emoticon' alt=':verymad:' /> It should read < S c r i p t > (without spaces). Very strange![/b][/i]

I edited both tags in the .xml file to lower s (<script> and </script>). It should work now. Thank you for finding out.


[quote name='dream143' post='1039967' date='Apr 15 2010, 07:21 AM']but I couldn't feel any convergence. It means no pop-out effects. Did I try right?
Without this add-on, I can feel pop-out. But after using it, the pop-out's gone.[/quote]

Try this:

1. Disable the Fresh3D addon
2. Log in, set the convergence value (first slider in the stereo options) to something you like
3. Log out and close the game
3. Open the file Config.wtf (in the World of Warcraft/WTF folder) with an editor
4. Look for the line "SET gxStereoConvergence"
5. Note the value
6. Open the file Fresh3D.lua and write this value into the third line (Fresh3D_Convergence = yourvalue)
7. Save the file, enable the addon, log in and it should be fine

Have fun,
Tambono
[quote name='dream143' post='1039967' date='Apr 15 2010, 07:21 AM']I tried this add-on. First of all, I had an error-occurring. In the fourth row of Fresh3D.xml, I had to replace <scripts> to <scripts> with capital S. Then it worked well.



Sorry for that. For some weird reason this forum doesn't let me write <script> with capital S, in the preview and the posted message it always changes automatically to lower s. /verymad.gif' class='bbc_emoticon' alt=':verymad:' /> It should read < S c r i p t > (without spaces). Very strange!



I edited both tags in the .xml file to lower s (<script> and </script>). It should work now. Thank you for finding out.





[quote name='dream143' post='1039967' date='Apr 15 2010, 07:21 AM']but I couldn't feel any convergence. It means no pop-out effects. Did I try right?

Without this add-on, I can feel pop-out. But after using it, the pop-out's gone.



Try this:



1. Disable the Fresh3D addon

2. Log in, set the convergence value (first slider in the stereo options) to something you like

3. Log out and close the game

3. Open the file Config.wtf (in the World of Warcraft/WTF folder) with an editor

4. Look for the line "SET gxStereoConvergence"

5. Note the value

6. Open the file Fresh3D.lua and write this value into the third line (Fresh3D_Convergence = yourvalue)

7. Save the file, enable the addon, log in and it should be fine



Have fun,

Tambono

Posted 04/15/2010 09:38 AM   
[quote name='dream143' post='1039967' date='Apr 15 2010, 07:21 AM']I tried this add-on. First of all, I had an error-occurring. In the fourth row of Fresh3D.xml, I had to replace <scripts> to <scripts> with capital S. Then it worked well.[/quote]

Sorry for that. [i][b]For some weird reason this forum doesn't let me write <script> with capital S, in the preview and the posted message it always changes automatically to lower s. /verymad.gif' class='bbc_emoticon' alt=':verymad:' /> It should read < S c r i p t > (without spaces). Very strange![/b][/i]

I edited both tags in the .xml file to lower s (<script> and </script>). It should work now. Thank you for finding out.


[quote name='dream143' post='1039967' date='Apr 15 2010, 07:21 AM']but I couldn't feel any convergence. It means no pop-out effects. Did I try right?
Without this add-on, I can feel pop-out. But after using it, the pop-out's gone.[/quote]

Try this:

1. Disable the Fresh3D addon
2. Log in, set the convergence value (first slider in the stereo options) to something you like
3. Log out and close the game
3. Open the file Config.wtf (in the World of Warcraft/WTF folder) with an editor
4. Look for the line "SET gxStereoConvergence"
5. Note the value
6. Open the file Fresh3D.lua and write this value into the third line (Fresh3D_Convergence = yourvalue)
7. Save the file, enable the addon, log in and it should be fine

Have fun,
Tambono
[quote name='dream143' post='1039967' date='Apr 15 2010, 07:21 AM']I tried this add-on. First of all, I had an error-occurring. In the fourth row of Fresh3D.xml, I had to replace <scripts> to <scripts> with capital S. Then it worked well.



Sorry for that. For some weird reason this forum doesn't let me write <script> with capital S, in the preview and the posted message it always changes automatically to lower s. /verymad.gif' class='bbc_emoticon' alt=':verymad:' /> It should read < S c r i p t > (without spaces). Very strange!



I edited both tags in the .xml file to lower s (<script> and </script>). It should work now. Thank you for finding out.





[quote name='dream143' post='1039967' date='Apr 15 2010, 07:21 AM']but I couldn't feel any convergence. It means no pop-out effects. Did I try right?

Without this add-on, I can feel pop-out. But after using it, the pop-out's gone.



Try this:



1. Disable the Fresh3D addon

2. Log in, set the convergence value (first slider in the stereo options) to something you like

3. Log out and close the game

3. Open the file Config.wtf (in the World of Warcraft/WTF folder) with an editor

4. Look for the line "SET gxStereoConvergence"

5. Note the value

6. Open the file Fresh3D.lua and write this value into the third line (Fresh3D_Convergence = yourvalue)

7. Save the file, enable the addon, log in and it should be fine



Have fun,

Tambono

Posted 04/15/2010 09:38 AM   
[quote name='Tambono' post='1040066' date='Apr 15 2010, 06:38 PM']Sorry for that. [i][b]For some weird reason this forum doesn't let me write <script> with capital S, in the preview and the posted message it always changes automatically to lower s. /verymad.gif' class='bbc_emoticon' alt=':verymad:' /> It should read < S c r i p t > (without spaces). Very strange![/b][/i]

I edited both tags in the .xml file to lower s (<script> and </script>). It should work now. Thank you for finding out.




Try this:

1. Disable the Fresh3D addon
2. Log in, set the convergence value (first slider in the stereo options) to something you like
3. Log out and close the game
3. Open the file Config.wtf (in the World of Warcraft/WTF folder) with an editor
4. Look for the line "SET gxStereoConvergence"
5. Note the value
6. Open the file Fresh3D.lua and write this value into the third line (Fresh3D_Convergence = yourvalue)
7. Save the file, enable the addon, log in and it should be fine

Have fun,
Tambono[/quote]


Wow, it works great, perfect ~ I really appreciate it.
I think what users can do is this much. The Rest is up to Nvidia corp., if they care...
Thanks again, Tambono !!
[quote name='Tambono' post='1040066' date='Apr 15 2010, 06:38 PM']Sorry for that. For some weird reason this forum doesn't let me write <script> with capital S, in the preview and the posted message it always changes automatically to lower s. /verymad.gif' class='bbc_emoticon' alt=':verymad:' /> It should read < S c r i p t > (without spaces). Very strange!



I edited both tags in the .xml file to lower s (<script> and </script>). It should work now. Thank you for finding out.









Try this:



1. Disable the Fresh3D addon

2. Log in, set the convergence value (first slider in the stereo options) to something you like

3. Log out and close the game

3. Open the file Config.wtf (in the World of Warcraft/WTF folder) with an editor

4. Look for the line "SET gxStereoConvergence"

5. Note the value

6. Open the file Fresh3D.lua and write this value into the third line (Fresh3D_Convergence = yourvalue)

7. Save the file, enable the addon, log in and it should be fine



Have fun,

Tambono





Wow, it works great, perfect ~ I really appreciate it.

I think what users can do is this much. The Rest is up to Nvidia corp., if they care...

Thanks again, Tambono !!

Posted 04/15/2010 11:57 AM   
[quote name='Tambono' post='1040066' date='Apr 15 2010, 06:38 PM']Sorry for that. [i][b]For some weird reason this forum doesn't let me write <script> with capital S, in the preview and the posted message it always changes automatically to lower s. /verymad.gif' class='bbc_emoticon' alt=':verymad:' /> It should read < S c r i p t > (without spaces). Very strange![/b][/i]

I edited both tags in the .xml file to lower s (<script> and </script>). It should work now. Thank you for finding out.




Try this:

1. Disable the Fresh3D addon
2. Log in, set the convergence value (first slider in the stereo options) to something you like
3. Log out and close the game
3. Open the file Config.wtf (in the World of Warcraft/WTF folder) with an editor
4. Look for the line "SET gxStereoConvergence"
5. Note the value
6. Open the file Fresh3D.lua and write this value into the third line (Fresh3D_Convergence = yourvalue)
7. Save the file, enable the addon, log in and it should be fine

Have fun,
Tambono[/quote]


Wow, it works great, perfect ~ I really appreciate it.
I think what users can do is this much. The Rest is up to Nvidia corp., if they care...
Thanks again, Tambono !!
[quote name='Tambono' post='1040066' date='Apr 15 2010, 06:38 PM']Sorry for that. For some weird reason this forum doesn't let me write <script> with capital S, in the preview and the posted message it always changes automatically to lower s. /verymad.gif' class='bbc_emoticon' alt=':verymad:' /> It should read < S c r i p t > (without spaces). Very strange!



I edited both tags in the .xml file to lower s (<script> and </script>). It should work now. Thank you for finding out.









Try this:



1. Disable the Fresh3D addon

2. Log in, set the convergence value (first slider in the stereo options) to something you like

3. Log out and close the game

3. Open the file Config.wtf (in the World of Warcraft/WTF folder) with an editor

4. Look for the line "SET gxStereoConvergence"

5. Note the value

6. Open the file Fresh3D.lua and write this value into the third line (Fresh3D_Convergence = yourvalue)

7. Save the file, enable the addon, log in and it should be fine



Have fun,

Tambono





Wow, it works great, perfect ~ I really appreciate it.

I think what users can do is this much. The Rest is up to Nvidia corp., if they care...

Thanks again, Tambono !!

Posted 04/15/2010 11:57 AM   
I bought this screen, only to play WoW really. And tbh, we shouldn't have to find our own solutions for this problem by making addons. This should just work, and it's a .25 release now, and we're still using .13? That's just bad service.

It's not as if it's a 100 euro thing, but most of us spent WAY more than that. So yeah, fix it please I'm tired of not being able to play it as it should be.
I bought this screen, only to play WoW really. And tbh, we shouldn't have to find our own solutions for this problem by making addons. This should just work, and it's a .25 release now, and we're still using .13? That's just bad service.



It's not as if it's a 100 euro thing, but most of us spent WAY more than that. So yeah, fix it please I'm tired of not being able to play it as it should be.

Posted 04/17/2010 09:59 AM   
I bought this screen, only to play WoW really. And tbh, we shouldn't have to find our own solutions for this problem by making addons. This should just work, and it's a .25 release now, and we're still using .13? That's just bad service.

It's not as if it's a 100 euro thing, but most of us spent WAY more than that. So yeah, fix it please I'm tired of not being able to play it as it should be.
I bought this screen, only to play WoW really. And tbh, we shouldn't have to find our own solutions for this problem by making addons. This should just work, and it's a .25 release now, and we're still using .13? That's just bad service.



It's not as if it's a 100 euro thing, but most of us spent WAY more than that. So yeah, fix it please I'm tired of not being able to play it as it should be.

Posted 04/17/2010 09:59 AM   
[quote]I bought this screen, only to play WoW really. And tbh, we shouldn't have to find our own solutions for this problem by making addons. This should just work, and it's a .25 release now, and we're still using .13? That's just bad service.

It's not as if it's a 100 euro thing, but most of us spent WAY more than that. So yeah, fix it please I'm tired of not being able to play it as it should be.[/quote]

this...

btw..is there any way how to make drivers v1.13 work for newest acer and dell monitor?
I bought this screen, only to play WoW really. And tbh, we shouldn't have to find our own solutions for this problem by making addons. This should just work, and it's a .25 release now, and we're still using .13? That's just bad service.



It's not as if it's a 100 euro thing, but most of us spent WAY more than that. So yeah, fix it please I'm tired of not being able to play it as it should be.




this...



btw..is there any way how to make drivers v1.13 work for newest acer and dell monitor?

Posted 04/17/2010 01:18 PM   
[quote]I bought this screen, only to play WoW really. And tbh, we shouldn't have to find our own solutions for this problem by making addons. This should just work, and it's a .25 release now, and we're still using .13? That's just bad service.

It's not as if it's a 100 euro thing, but most of us spent WAY more than that. So yeah, fix it please I'm tired of not being able to play it as it should be.[/quote]

this...

btw..is there any way how to make drivers v1.13 work for newest acer and dell monitor?
I bought this screen, only to play WoW really. And tbh, we shouldn't have to find our own solutions for this problem by making addons. This should just work, and it's a .25 release now, and we're still using .13? That's just bad service.



It's not as if it's a 100 euro thing, but most of us spent WAY more than that. So yeah, fix it please I'm tired of not being able to play it as it should be.




this...



btw..is there any way how to make drivers v1.13 work for newest acer and dell monitor?

Posted 04/17/2010 01:18 PM   
[quote name='redcorer' post='1041185' date='Apr 18 2010, 01:18 AM']this...

btw..is there any way how to make drivers v1.13 work for newest acer and dell monitor?[/quote]

I wish!
[quote name='redcorer' post='1041185' date='Apr 18 2010, 01:18 AM']this...



btw..is there any way how to make drivers v1.13 work for newest acer and dell monitor?



I wish!

Posted 04/17/2010 04:19 PM   
[quote name='redcorer' post='1041185' date='Apr 18 2010, 01:18 AM']this...

btw..is there any way how to make drivers v1.13 work for newest acer and dell monitor?[/quote]

I wish!
[quote name='redcorer' post='1041185' date='Apr 18 2010, 01:18 AM']this...



btw..is there any way how to make drivers v1.13 work for newest acer and dell monitor?



I wish!

Posted 04/17/2010 04:19 PM   
  10 / 26    
Scroll To Top