It is currently Tue Mar 19, 2024 12:19 am

All times are UTC - 8 hours [ DST ]




Post new topic Reply to topic  [ 30 posts ]  Go to page 1, 2  Next
Author Message
Offline
 Post subject: How to make diagrams
Post #1 Posted: Fri Apr 23, 2010 11:10 pm 
Judan
User avatar

Posts: 5539
Location: Banbeck Vale
Liked others: 1102
Was liked: 1456
Rank: 1D AGA
GD Posts: 1512
Kaya handle: Test
A diagram of a go board consists of 6 parts:

1) The opening tag, which is the word 'go' enclosed in brackets. This usually goes on one line by itself.

2) One line which includes several display codes and the label.
                              It starts with two dollar signs ('$$')

                              Next is optional, either a 'B or a 'W', indicating what color is the first move. ( If not specified, it defaults to 'B'. )

                              An optional lower case 'c' can be added for coordinates.

                              An optional lower case 'm' can be added, followed by one or more digits to indicate the number of the first move. ( Defaults to 'm1' )


3) The top of the board, which is two dollar signs and a row of dashes. ( '$$---------------' )

4) Multiple - up to 19 - lines which define the board. Each line should start with two dollar signs ('$$').
                              A period (".") is an empty intersection.

                              A comma (",") is a star point.

                              A vertical line ( "|" )( usually a shifted tab key ) is the edge of the board


5) The bottom of the board, which is two dollar signs and a row of dashes. ( '$$---------------' )

6) The closing tag, which is the word '/go' enclosed in brackets. This usually goes on one line by itself.


Strictly speaking, only parts 1 and 6 are necessary. In practice, usually only 3 or 5 are skipped to form portions of a board.

====================================================================================================================

Here it is:

Click Here To Show Diagram Code
[go]$$c This is a label for the diagram. Remember to replace it with something relevant.
$$ ---------------------------------------
$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . , . . . . . , . . . . . , . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . , . . . . . , . . . . . , . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . , . . . . . , . . . . . , . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ ---------------------------------------[/go]

Directly above this sentence, there should be a sentence in blue that says "Click here to show diagram code". It will show you all 6 parts put together.

====================================================================================================================


The above generates a blank board. Now let's look at putting something on the board. To do this, replace the periods with letters, numbers, or other symbols.

X = black stone
O = white stone
* = half black and half white
V = half wood and half white
A = half wood and half black

B = black stone with circle
W = white stone with circle
C = circle on empty intersection
# = black stone with square
@ = white stone with square
S = square on empty intersection
Y = black stone with triangle
Q = white stone with triangle
T = triangle on empty intersection
Z = black stone with X
P = white stone with X
M = X on empty intersection
? = shading

Click Here To Show Diagram Code
[go]$$Wcm31 Thanks to Kirby, \n we can now put line breaks \n in the label. \nAgain, click on the blue line \n below to see how it is done.
$$ ---------------------------------------
$$ | . . . . . . . . . . . . . . ? ? ? ? ? |
$$ | . . . . . . . . . . . . . . ? ? ? ? ? |
$$ | . . . . . . . . . . . . . . ? ? ? ? ? |
$$ | . . X X X . . A . * . V . . O O O . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . B . . . . . C . . . . . W . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . # . . . . . S . . . . . @ . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . Y . . . . . T . . . . . Q . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . Z . . . . . M . . . . . P . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . . . 1 . 2 . 3 . 4 . 5 . . . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . , . . . . . , . . . . . , . . . |
$$ | . . . a . b . c . d . x . y . z . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ ---------------------------------------[/go]


You can also use lowercase letters which appear literally.


Also, a hyphen can be used like this:

Click Here To Show Diagram Code
[go]$$W
$$ -------------------------------
$$ - . . . . . . . - . . . . . . .
$$ - . . . . . . . - . . 1 . . . .
$$ - . 0 3 X . . . - . X O X 3 . .
$$ - . . 4 5 . . . - . . X O . . .
$$ - . . 6 1 . . . - . 2 X O . . .
$$ - . 9 7 8 . . . - . O O X 5 . .
$$ - . . 2 . . . . - . 4 X 6 . . .
$$ - . . . . . . . - . . . . . . .
$$ - . . . . . . . - . . . . . . .[/go]



Lines and Arrows:

Click Here To Show Diagram Code
[go]$$Bc Example: using arrows to show influence
$$ ------------------
$$ | . . . . . . . . .
$$ | . . . . . . . . .
$$ | . O O O . O . . .
$$ | . O X X X . . . .
$$ | . X . . . . . . .
$$ | . . X . . . . . .
$$ | . . . . . . . . .
$$ | . . . . . . . . .
$$ | . . . . . . . . .
$$ {AR C14 C11}
$$ {AR 5:6 5:9}[/go]


As it is hard to visualize and edit such lines in edit mode, lines and arrows are specified in extra lines - usually after the diagram. The code for the above diagram looks like this:
$$ {AR C14 C11}
$$ {AR 5:6 5:9}
The syntax basically is "$$ {command point1 point2}".
Command can be either ''AR'' for arrows or ''LN'' for lines. Coordinates can be given in two different ways:
1) Board coordinates: this is the usual Go coordinate system. Points are denoted as A1 .. T19. For this to work the diagram has to be anchored in at least one corner, i.e. center diagrams cannot use this method. IOW, if you can switch on coordinates with the $$c option, then this method works.
2) Relative coordinates: points are denoted in 'X:Y' syntax. X and Y are a coordinate system with the root being in the upper left - numbering starts at 1:1. The second arrow in the example uses this system. These coordinates will always work, as they do not rely on borders and corners.

EDIT(10-10-15): For those who don't want to learn the nuts and bolts, Herman Hiddema has a very useful tool at http://hiddema.nl/diagrammer/

_________________
Help make L19 more organized. Make an index: https://lifein19x19.com/viewtopic.php?f=14&t=5207


This post by Joaz Banbeck was liked by 12 people: Bonobo, Celebrir, Dante31, Jardeus, ketchup, Loons, Magnus86, Maharani, prokofiev, rubin427, Shawn Ligocki, TheBigH
Top
 Profile  
 
Offline
 Post subject: Re: How to make diagrams
Post #2 Posted: Fri Apr 23, 2010 11:50 pm 
Lives with ko
User avatar

Posts: 185
Location: Kassel, Germany
Liked others: 66
Was liked: 6
Rank: 6k KGS
KGS: mic
Is there a way to create an empty board without copy and paste of an already existing board or typing in all by myself? If yes, I unfortunately have not found it, if not, this would be a nice feature for a button in the editor.

- Mic

_________________
Go is easy: don't play bad moves.

Top
 Profile  
 
Offline
 Post subject: Re: How to make diagrams
Post #3 Posted: Sat Apr 24, 2010 7:12 am 
Dies in gote
User avatar

Posts: 21
Liked others: 4
Was liked: 3
Rank: KGS 10 kyu
People probably have these already (or just copy/paste from existing ones) but I thought I'd stick these empty templates here for reference.

whole board:
$$B 19x19 board
$$ ---------------------------------------
$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . , . . . . . , . . . . . , . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . , . . . . . , . . . . . , . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . , . . . . . , . . . . . , . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ ---------------------------------------


Just a corner:
$$B Corner
$$ ------------------
$$ | . . . . . . . . .
$$ | . . . . . . . . .
$$ | . . . . . . . . .
$$ | . . . , . . . . .
$$ | . . . . . . . . .
$$ | . . . . . . . . .
$$ | . . . . . . . . .
$$ | . . . . . . . . .
$$ | . . . . . . . . .



Having buttons that load the different layouts within [go] tags would be nice, although I'm not sure how it would be done.


This post by zenith was liked by 3 people: Bonobo, Dusk Eagle, Joaz Banbeck
Top
 Profile  
 
Offline
 Post subject: Re: How to make diagrams
Post #4 Posted: Fri Apr 30, 2010 6:09 pm 
Gosei
User avatar

Posts: 1435
Location: California
Liked others: 53
Was liked: 171
Rank: Out of practice
GD Posts: 1104
KGS: fwiffo
This doesn't cover every option. It uses the same code as Sensei's library, so you can take a look at the Sensei's page on how diagrams work. That page misses a few options related searching, but you can read about them on the Sensei's help page on position search. We don't have a position search function here, but you can use those options in your diagrams.

_________________
KGS 4 kyu - Game Archive - Keyboard Otaku

Top
 Profile  
 
Offline
 Post subject: Re: How to make diagrams
Post #5 Posted: Mon May 03, 2010 12:00 pm 
Lives in gote
User avatar

Posts: 603
Liked others: 43
Was liked: 139
Rank: 6-7k KGS
mic wrote:
Is there a way to create an empty board without copy and paste of an already existing board or typing in all by myself? If yes, I unfortunately have not found it, if not, this would be a nice feature for a button in the editor.


qGo has an Import/Export feature, although it includes the coordinates. That, and you have to go through the preferences to change the notation for Black stones -- I believe it uses # by default.

Top
 Profile  
 
Offline
 Post subject: Re: How to make diagrams
Post #6 Posted: Sun Jun 13, 2010 5:09 pm 
Lives in sente
User avatar

Posts: 914
Liked others: 391
Was liked: 161
Rank: German 2 dan
These threads are doubtlessly important, but they now appear constantly at the "View unread posts" list, which is very annoying.

_________________
A good system naturally covers all corner cases without further effort.

Top
 Profile  
 
Offline
 Post subject: Re: How to make diagrams
Post #7 Posted: Sun Jun 13, 2010 6:03 pm 
Lives with ko
User avatar

Posts: 129
Liked others: 5
Was liked: 14
Rank: KGS 4k
Thank you for posting this. Nothing quite like a diagram to show what you mean.

Top
 Profile  
 
Offline
 Post subject: Re: How to make diagrams
Post #8 Posted: Mon Jun 21, 2010 1:55 pm 
Gosei
User avatar

Posts: 2116
Location: Silicon Valley
Liked others: 152
Was liked: 330
Rank: 2d AGA
GD Posts: 1193
KGS: lavalamp
Tygem: imapenguin
IGS: lavalamp
OGS: daniel_the_smith
SL has a tool to make a diagram from an SGF, I think it deserves a mention here: http://senseis.xmp.net/tools/sgf2diagram.php

_________________
That which can be destroyed by the truth should be.
--
My (sadly neglected, but not forgotten) project: http://dailyjoseki.com


This post by daniel_the_smith was liked by 3 people: Chew Terr, schultz, Uberdude
Top
 Profile  
 
Offline
 Post subject: Re: How to make diagrams
Post #9 Posted: Wed Feb 09, 2011 8:48 am 
Dies with sente

Posts: 85
Liked others: 30
Was liked: 3
Rank: KGS 7k
KGS: markjgc, zombieboy
A lot of the diagrams in my study journal aren't showing up. Am I doing something wrong?

Top
 Profile  
 
Offline
 Post subject: Re: How to make diagrams
Post #10 Posted: Wed Feb 09, 2011 8:53 am 
Honinbo

Posts: 9545
Liked others: 1600
Was liked: 1711
KGS: Kirby
Tygem: 커비라고해
Mark356 wrote:
A lot of the diagrams in my study journal aren't showing up. Am I doing something wrong?


I see what you're referring to. It may have something to do with the update I made yesterday. I'm investigating it now.

_________________
be immersed

Top
 Profile  
 
Offline
 Post subject: Re: How to make diagrams
Post #11 Posted: Wed Feb 09, 2011 9:12 am 
Honinbo

Posts: 9545
Liked others: 1600
Was liked: 1711
KGS: Kirby
Tygem: 커비라고해
Mark356 wrote:
A lot of the diagrams in my study journal aren't showing up. Am I doing something wrong?


Were your diagrams working before?

I can find two issues in the diagrams in your study journal, which might make all of your problems go away:

1.) Do not add extra line breaks after the title line. An example of this is here:
Code:
[go]$$W

$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . O . . . . . . . . . . . . . O . . |
$$ | . . . . . . . . . . . . X . . . . . . |
$$ | . . X . . . . . . . . . . . . . . . . |
$$ | . . . O O . . . . . . X . O 8 . X . . |
$$ | . . O O X O O . O , . . 6 4 5 9 . . . |
$$ | . . X X X X . . . O . X 2 O 7 X 0 . . |
$$ | . . . . . . . X X O . 1 3 . . . . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$  ---------------------------------------[/go]


Above, you do not need the extra newline after the title line.

2.) You do not need extra spaces before your lines:
Code:
[go]$$B
  $$ --------------------
  $$ . . . . . . . . . . |
  $$ . . . . . . . . . . |
  $$ . . . 3 1 . X . . . |
  $$ , . 4 2 O . , . . . |
  $$ . . . . . . O . . . |
  $$ . . . . . . . . . . |
  $$ . . . . . . . . . . |
  $$ . . . . . . . . . . |
  $$ . . . . . . . . . . |
  $$ , . . . . . , . . . |[/go]


Here, there are two leading spaces before each of the lines (except for the title line). If you remove the leading spaces, you should be good to go.

---

Both of these are issues that I can work on fixing by doing some extra parsing of the text, but in the meantime, if you want your diagrams to work, you should be able to apply these format modifications.

_________________
be immersed


This post by Kirby was liked by: Mark356
Top
 Profile  
 
Offline
 Post subject: Re: How to make diagrams
Post #12 Posted: Wed Feb 09, 2011 11:08 am 
Dies with sente

Posts: 85
Liked others: 30
Was liked: 3
Rank: KGS 7k
KGS: markjgc, zombieboy
No, they weren't working before. I'd been wondering what was wrong, and wondering if maybe it was just me, since sometimes I'll make a diagram that other people can see but I can't.

But they're fixed now! Apparently it was just a space issue. I don't know how some of those extra spaces got in there, but at least for one of the posts, once they were in one diagram, they were in all of them, since I mostly pasted from one to the next. But it was a simple matter to remove them, and now they look fine. Thanks so much!


This post by Mark356 was liked by: Kirby
Top
 Profile  
 
Offline
 Post subject: Re: How to make diagrams
Post #13 Posted: Thu Mar 03, 2011 8:23 am 
Honinbo

Posts: 9545
Liked others: 1600
Was liked: 1711
KGS: Kirby
Tygem: 커비라고해
Line wrapping functionality has been added to the diagram annotation feature: viewtopic.php?f=14&t=3340

_________________
be immersed

Top
 Profile  
 
Offline
 Post subject: Re: How to make diagrams
Post #14 Posted: Thu Jun 09, 2011 2:00 pm 
Dies with sente

Posts: 86
Liked others: 8
Was liked: 2
Rank: 9k
OGS: thequietcenter
It'z too bad when you link to a particular move number in Eidogo you cant export that as SGF :)

_________________
My OGS profile is https://online-go.com/user/view/1084709
My twitch stream is https://www.twitch.tv/thedeepself
My flashcard software for baduk is www.may69.com/flash-goban

Top
 Profile  
 
Offline
 Post subject: Re: How to make diagrams
Post #15 Posted: Thu Jun 16, 2011 2:22 pm 
Dies with sente

Posts: 86
Liked others: 8
Was liked: 2
Rank: 9k
OGS: thequietcenter
Maybe there should be a way to simply provide SGF for a game and have it display the game at the last move played instead of the first move.

_________________
My OGS profile is https://online-go.com/user/view/1084709
My twitch stream is https://www.twitch.tv/thedeepself
My flashcard software for baduk is www.may69.com/flash-goban

Top
 Profile  
 
Offline
 Post subject: Lines, Arrows, text colors, font sizes
Post #16 Posted: Sat Jun 25, 2011 10:49 pm 
Honinbo
User avatar

Posts: 8859
Location: Santa Barbara, CA
Liked others: 349
Was liked: 2076
GD Posts: 312
Lines, arrows, text colors, fonts:
Click Here To Show Diagram Code
[go]$$Bc Lines and Arrows
$$ -----------------------------------------
$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ | . . . . . . . . . . . . . . . . . . . |
$$ {LN B18 E18}
$$ {AR H18 G18}
$$ {LN H18 K18}
$$ {AR K18 L18}[/go]

Different browsers may have different support for various fonts:
Red size 90, Medium green size 120, Blue size 150, italics, underlined, bold, italics+underlined, italics+bold, underlined+bold, italics+underlined+bold.
Century, Century, Century, Century; The quick brown fox jumps over the lazy dog.
Courier, Courier, Courier, Courier; The quick brown fox jumps over the lazy dog.
Georgia, Georgia, Georgia, Georgia; The quick brown fox jumps over the lazy dog.
Times, Times, Times, Times; The quick brown fox jumps over the lazy dog.
Helvetica, Helvetica, Helvetica, Helvetica; The quick brown fox jumps over the lazy dog.
Roman, Roman, Roman, Roman; The quick brown fox jumps over the lazy dog.
Script, Script, Script, Script; The quick brown fox jumps over the lazy dog.
System, System, System, System; The quick brown fox jumps over the lazy dog.
Tahoma, Tahoma, Tahoma, Tahoma; The quick brown fox jumps over the lazy dog.
Verdana, Verdana, Verdana, Verdana; The quick brown fox jumps over the lazy dog.

Strikethrough
hilighting
Let's see how long these emoticons stay valid: ImageImageImage


This post by EdLee was liked by 3 people: ez4u, Joaz Banbeck, Loons
Top
 Profile  
 
Offline
 Post subject: Re: How to make diagrams
Post #17 Posted: Thu Oct 06, 2011 1:00 am 
Beginner
User avatar

Posts: 8
Location: China
Liked others: 1
Was liked: 0
Rank: KGS 1 dan
.


Hello everybody.


we use approximatically the same system, we call it : The Kifu-Ga.
see here how it run....

http://go-on.forumactif.com/t203-faites ... ga-de-goon



enjoy !


Image


Code:

:aaa::bbb::bbb::bbb::bbb::bbb::bbb::bbb::bbb::bbb::bbb::bbb::bbb::bbb::bbb::bbb::bbb::bbb::ccc:
:ddd::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::fff:
:ddd::eee::eee::eee::032::eee::eee::eee::eee::eee::eee::eee::eee::014::eee::eee::eee::eee::fff:
:ddd::eee::eee::002::eee::eee::eee::eee::eee::XXX::eee::eee::eee::eee::eee::001::eee::eee::fff:
:ddd::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::fff:
:ddd::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::015::eee::eee::fff:
:ddd::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::fff:
:ddd::eee::030::eee::033::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::fff:
:ddd::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::fff:
:ddd::eee::eee::029::eee::eee::eee::eee::eee::XXX::eee::eee::eee::eee::eee::005::eee::eee::fff:
:ddd::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::fff:
:ddd::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::fff:
:ddd::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::fff:
:ddd::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::eee::fff:
:ddd::eee::eee::eee::eee::eee::eee::031::eee::eee::eee::eee::013::eee::eee::eee::eee::eee::fff:
:ddd::eee::023::017::019::eee::eee::eee::eee::XXX::eee::eee::eee::eee::011::003::009::eee::fff:
:ddd::025::004::018::021::020::024::027::eee::eee::eee::007::eee::006::eee::010::008::eee::fff:
:ddd::026::eee::eee::022::eee::028::eee::eee::eee::eee::eee::eee::012::eee::eee::eee::eee::fff:
:ggg::hhh::hhh::hhh::hhh::hhh::hhh::hhh::hhh::hhh::hhh::hhh::hhh::hhh::hhh::hhh::hhh::hhh::iii:



.

_________________
LDL . Founder & Admin
GO.ON l The french-speaking go community's forum
http://goon-forum.com/
.

Top
 Profile  
 
Offline
 Post subject: Re: How to make diagrams
Post #18 Posted: Mon Apr 29, 2013 12:50 am 
Oza
User avatar

Posts: 2508
Liked others: 1304
Was liked: 1128
In case you missed it, Herman Hiddema has written a website which makes writing a diagram even easier: you can find it here: http://hiddema.nl/diagrammer/

_________________
Patience, grasshopper.


Last edited by daal on Wed Jan 07, 2015 10:59 pm, edited 1 time in total.

This post by daal was liked by 4 people: Bonobo, happysocks, lobotommy, wineandgolover
Top
 Profile  
 
Offline
 Post subject: Re: How to make diagrams
Post #19 Posted: Wed Jan 07, 2015 9:40 am 
Lives in gote

Posts: 676
Liked others: 6
Was liked: 31
KGS: 2d
daal wrote:
In case you missed it, Hermann Hiddema has written a website which makes writing a diagram even easier: you can find it here: http://hiddema.nl/diagrammer/


The link is broken, anybody know a new one to this fine tool?

Top
 Profile  
 
Offline
 Post subject: Re: How to make diagrams
Post #20 Posted: Wed Jan 07, 2015 12:10 pm 
Gosei
User avatar

Posts: 2011
Location: Groningen, NL
Liked others: 202
Was liked: 1087
Rank: Dutch 4D
GD Posts: 645
Universal go server handle: herminator
It's back!


This post by HermanHiddema was liked by 5 people: emeraldemon, Gomoto, luigi, oca, wineandgolover
Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 30 posts ]  Go to page 1, 2  Next

All times are UTC - 8 hours [ DST ]


Who is online

Users browsing this forum: Google [Bot] and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group