Hi, apologies for a very basic question, but I have just played my first game on the server, and can't find out where to save the game to my PC for review.
Does anyone know?
Many thanks.
Saving a game
- Garuseimasahi
- Beginner
- Posts: 18
- Joined: Wed Jul 25, 2012 8:48 pm
- Rank: KGS8kyu
- GD Posts: 0
- KGS: Gaseimasha
Re: Saving a game
If you mean KGS: "user information" -> "games" -> download as sgf(right click on game you want)
-
speedchase
- Lives in sente
- Posts: 800
- Joined: Sun Dec 04, 2011 4:36 pm
- Rank: AGA 2kyu
- GD Posts: 0
- Universal go server handle: speedchase
- Has thanked: 139 times
- Been thanked: 122 times
Re: Saving a game
he means Wbaduk.
If you use the Wbaduk IOS app, there is a list of all of your games that you can look at at any time in the app, but I don't know about using it on a computer.
If you use the Wbaduk IOS app, there is a list of all of your games that you can look at at any time in the app, but I don't know about using it on a computer.
-
bleep
- Dies with sente
- Posts: 92
- Joined: Fri Oct 28, 2011 1:31 am
- Rank: 6 - 9k
- GD Posts: 0
- KGS: bleep
- Tygem: rbleep
- IGS: rbleep
- Location: Zimbabwe
- Has thanked: 3 times
- Been thanked: 18 times
Re: Saving a game
Thanks blade90.
Any idea what other editors can open an .ngf file? My primary ones don't recognise it.
Any idea what other editors can open an .ngf file? My primary ones don't recognise it.
-
EricBackus
- Dies with sente
- Posts: 83
- Joined: Sun May 09, 2010 10:28 pm
- Rank: 2 kyu
- GD Posts: 109
- Universal go server handle: EricBackus
- Has thanked: 4 times
- Been thanked: 29 times
Re: Saving a game
bleep wrote:Thanks blade90.
Any idea what other editors can open an .ngf file? My primary ones don't recognise it.
I have a perl script for converting .ngf to .sgf, at http://alum.mit.edu/www/eric_backus/. After it's in sgf format, almost anything will open it!
-
bleep
- Dies with sente
- Posts: 92
- Joined: Fri Oct 28, 2011 1:31 am
- Rank: 6 - 9k
- GD Posts: 0
- KGS: bleep
- Tygem: rbleep
- IGS: rbleep
- Location: Zimbabwe
- Has thanked: 3 times
- Been thanked: 18 times
Re: Saving a game
Eric, I have downloaded the perl file, and also downloaded ActivePerl, but a couple of days of fiddling have brought me no closer to any form of success. Is it a simple matter to explain to a complete non-programmer, or some fiendishly complex procedure? What do I need to do to run the file? If it's too complicated to briefly explain, then just say so, and I'll play elsewhere.
Any help appreciated. I think I get a lot out of reviewing my games, and not being able to do it is frustrating!
EDIT: I just discovered that Multigo can open these files, so I am using that for review.
Any help appreciated. I think I get a lot out of reviewing my games, and not being able to do it is frustrating!
EDIT: I just discovered that Multigo can open these files, so I am using that for review.
-
EricBackus
- Dies with sente
- Posts: 83
- Joined: Sun May 09, 2010 10:28 pm
- Rank: 2 kyu
- GD Posts: 109
- Universal go server handle: EricBackus
- Has thanked: 4 times
- Been thanked: 29 times
Re: Saving a game
bleep wrote:Eric, I have downloaded the perl file, and also downloaded ActivePerl, but a couple of days of fiddling have brought me no closer to any form of success.
I haven't used ActivePerl myself, but it seems like it should work.
First, the file you downloaded from my website is ngf2sgf.zip, and you need to unzip this file somewhere. I'll assume you can do that successfully, so you end up with a file called ngf2sgf.pl.
Then, the basic idea is to get a command prompt (Start Menu/All Programs/Accessories/Command Prompt), and type something like:
perl ngf2sgf.pl savedwbadukfile.ngf
For savedbadukfile.ngf, you should substitute the actual file name you got from WBaduk.
Now, the first time you try to do this, there's a decent chance that the command prompt will come back and say that 'perl' is not a recognized command. If so, it means that perl is not in your PATH environment variable. You can add it to PATH, or instead you can explicitly provide the path to perl, which would look something like this:
C:\Program Files (x86)\ActivePerl\bin\perl ngf2sgf.pl savedwbadukfile.ngf
But I probably don't have the path exactly correct, because I don't know where ActivePerl gets installed, so you'll have to figure that out.
When you get it all working, what happens is the perl script will write a new .sgf file in the same folder you run the script from. So after you run the perl script, use Windows Explorer or something to see the file.
Good luck!