Regedit problems-Guild Wars

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
unused_bagels
Level 1
Level 1
Posts: 7
Joined: Mon Jan 19, 2009 6:15 pm

Regedit problems-Guild Wars

Post by unused_bagels »

I'm trying to configure guild wars to work, and that "Oh it works perfectly!" thing is really making me mad. I've been trying for a very long time now (off and on for a year), and I finally stumbled upon this:

Code: Select all

If you are having graphics issues, use regedit to try some registry keys:

    * UseGLSL=disabled
    * DirectDrawRenderer=opengl
    * OffscreenRenderingMode=pbuffer or fbo
    * RenderTargetLockMode=auto
now, where the heck are these registry keys? I've scoured my registry for them, and can't seem to find them in hkley current user software wine, or wherever they're supposed to be.
using wine 1.1.13
vitamin
Moderator
Moderator
Posts: 6605
Joined: Sat Feb 23, 2008 2:29 pm

Re: Regedit problems-Guild Wars

Post by vitamin »

unused_bagels wrote:now, where the heck are these registry keys?
http://wiki.winehq.org/UsefulRegistryKeys

Make sure to read the top of that page.
unused_bagels
Level 1
Level 1
Posts: 7
Joined: Mon Jan 19, 2009 6:15 pm

Post by unused_bagels »

Ok, I failed to notice that if it doesn't exist, create it thing, but wow, I'm overwhelmed at the idea of creating registry values. Is there a tutorial?
vitamin
Moderator
Moderator
Posts: 6605
Joined: Sat Feb 23, 2008 2:29 pm

Post by vitamin »

unused_bagels wrote:Is there a tutorial?
Right-click -> New->String Value....

What you never created directories with explorer before? And don't afraid to break registry in Wine. "Reinstalling" Wine is much faster (you actually don't even need to reinstall it).
unused_bagels
Level 1
Level 1
Posts: 7
Joined: Mon Jan 19, 2009 6:15 pm

Post by unused_bagels »

haha, no, I never made my own registry values. I spent too many weeks picking up the pieces of my shattered OS when I tried doing anything with my registry back in my windows days.
James McKenzie

Regedit problems-Guild Wars

Post by James McKenzie »

unused_bagels wrote:
haha, no, I never made my own registry values. I spent too many weeks picking up the pieces of my shattered OS when I tried doing anything with my registry back in my windows days.

As Vitamin stated it is easy to restore your registry:

Code: Select all

cd $HOME/.wine
ls
(notice there are two .reg files)
cp system.reg system.old.reg
cp user.reg user.old.reg
wine regedit
(makes changes to registry and SAVES them)
It is that simple. If you break the registry:

Code: Select all

rm system.reg
rm user.reg
cp system.old.reg system.reg
cp user.old.reg user.reg
All changes are now gone and you should be able to run Wine again.

James McKenzie
vitamin
Moderator
Moderator
Posts: 6605
Joined: Sat Feb 23, 2008 2:29 pm

Re: Regedit problems-Guild Wars

Post by vitamin »

James McKenzie wrote:

Code: Select all

rm system.reg
rm user.reg
cp system.old.reg system.reg
cp user.old.reg user.reg
All changes are now gone and you should be able to run Wine again.
Just make sure wineserver is not running, or it will overwrite these files. Same when saving them.
Kaldyr
Newbie
Newbie
Posts: 4
Joined: Thu Jan 22, 2009 12:15 am

Post by Kaldyr »

Why not try using some software to work with the registry?
I'm not that good in this subject but there are some nice programs, as far as I am concerned!
austin987
Wine Developer
Wine Developer
Posts: 2383
Joined: Fri Feb 22, 2008 8:19 pm

Regedit problems-Guild Wars

Post by austin987 »

On Wed, Jan 21, 2009 at 11:17 PM, Kaldyr <[email protected]> wrote:
Why not try using some software to work with the registry?
I'm not that good in this subject but there are some nice programs, as far as I am concerned!
Like...regedit?



--
-Austin
unused_bagels
Level 1
Level 1
Posts: 7
Joined: Mon Jan 19, 2009 6:15 pm

Post by unused_bagels »

lol yeah regedit worked fine for me
Locked