From GamingWiki
Jump to: navigation, search
(Graphviz)
(Games)
 
(46 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
{| class="listing floatright" style="width:auto;"
 +
! What I've been playing recently
 +
|-
 +
| <html><script language="javascript" src="http://rpggeek.com/jswidget.php?username=memethief&numitems=3&text=none&images=medium&show=recentplays&imagesonly=1&imagepos=center&addstyles=1&domains%5B%5D=boardgame&domains%5B%5D=rpg"></script></html>
 +
|}
 
Dave is the administrator of this website.
 
Dave is the administrator of this website.
  
Line 8: Line 13:
  
 
I'm probably involved in every game mentioned on this site. More details as I make time to write them.
 
I'm probably involved in every game mentioned on this site. More details as I make time to write them.
 
[[Steel Town summary]]
 
  
 
== Characters ==
 
== Characters ==
Line 26: Line 29:
 
Experiments below. If my page breaks your browser, this is probably why:
 
Experiments below. If my page breaks your browser, this is probably why:
  
=== Graphviz ===
+
=== Header/footer hax ===
<graphviz border='frame' format='png'>
+
 
  graph example1 {Hello -> World  [arrowhead = vee, arrowtail = diamond]}
+
[[MediaWiki:Hf-nsfooter-]] and [[MediaWiki:Hf-nsheader-]]
 +
 
 +
=== Graphviz 1 ===
 +
What I'd like is something like:
 +
<pre>
 +
Sephii ----- Antares
 +
| \  \      /  |
 +
|  \  \  /    |
 +
|  \  Zash'ar  |
 +
|    \    \    |
 +
|    Deneb  \  |
 +
|    /  \  \  |
 +
|    /    \  \ |
 +
Eridanus -- Nov'Orion
 +
</pre>
 +
<graphviz border='frame' format='png' renderer='neato'>
 +
  digraph teraPhi {
 +
  {
 +
  Sephii [URL="Sephii", fontcolor=blue];
 +
  Antares [URL="Antares", fontcolor =blue, group="AZ"];
 +
  Deneb [URL="Deneb", fontcolor =blue, group="DE"];
 +
  Eridanus [URL="Eridanus", fontcolor =blue, group="DE"];
 +
  Zashar [URL="Zash'ar", label="Zash'ar", fontcolor =blue, group="AZ"];
 +
  NovOrion [URL="Nov'Orion" label="Nov'Orion" fontcolor =blue];
 +
  }
 +
  edge [len=2,dir=both];
 +
  Sephii -> { Antares } -> NovOrion;
 +
  Sephii -> { Zashar } -> NovOrion;
 +
  Sephii -> { Eridanus } -> NovOrion;
 +
  Sephii -> { Deneb } -> NovOrion;
 +
  edge [len=2,dir=forward];
 +
  Antares -> Zashar
 +
    Deneb -> Eridanus
 +
  ;
 +
  subgraph { rank=same;
 +
  Sephii ;
 +
  }
 +
  subgraph { rank=same;
 +
  Antares ;
 +
  Deneb ;
 +
  Eridanus ;
 +
  Zashar ;
 +
  }
 +
  subgraph { rank=same;
 +
  NovOrion;
 +
  }
 +
}
 
</graphviz>
 
</graphviz>
 +
 +
=== Graphviz 2 ===
 +
<graphviz border='frame' format='png' renderer='neato'>
 +
digraph thozeva {edge [len=2,dir=both]; Viagra -> Tombstone -> Oregon -> Viagra -> Halogia -> Tombstone -> Zana -> Viagra -> Areston -> Erewhon -> Viagra Areston -> Zana Oregon -> New_system}
 +
</graphviz>
 +
 +
=== Notes ===
 +
 +
* use "everything is blue in this world"

Latest revision as of 03:11, 15 December 2012

What I've been playing recently

Dave is the administrator of this website.

Dave is the ruler of this domain.

Dave is the geek to complain to when something is not working properly.

Games[edit]

I'm probably involved in every game mentioned on this site. More details as I make time to write them.

Characters[edit]

{{#ask: player::Dave | ?campaign= | ?blurb= | ?high concept= | format=ul | template=SMW Character list }}

Scratchpad[edit]

Experiments below. If my page breaks your browser, this is probably why:

Header/footer hax[edit]

MediaWiki:Hf-nsfooter- and MediaWiki:Hf-nsheader-

Graphviz 1[edit]

What I'd like is something like:

Sephii ----- Antares
 | \  \      /   |
 |  \   \   /    |
 |   \  Zash'ar  |
 |    \     \    |
 |    Deneb  \   |
 |     /  \   \  |
 |    /     \  \ |
Eridanus -- Nov'Orion

<graphviz border='frame' format='png' renderer='neato'>

digraph teraPhi {
 {
 Sephii [URL="Sephii", fontcolor=blue];
 Antares [URL="Antares", fontcolor =blue, group="AZ"];
 Deneb [URL="Deneb", fontcolor =blue, group="DE"];
 Eridanus [URL="Eridanus", fontcolor =blue, group="DE"];
 Zashar [URL="Zash'ar", label="Zash'ar", fontcolor =blue, group="AZ"];
 NovOrion [URL="Nov'Orion" label="Nov'Orion" fontcolor =blue];
 }
 edge [len=2,dir=both];
 Sephii -> { Antares } -> NovOrion;
 Sephii -> { Zashar } -> NovOrion;
 Sephii -> { Eridanus } -> NovOrion;
 Sephii -> { Deneb } -> NovOrion;
 edge [len=2,dir=forward];
 Antares -> Zashar
   Deneb -> Eridanus
 ;
 subgraph { rank=same;
 Sephii ;
 }
 subgraph { rank=same;
 Antares ;
 Deneb ;
 Eridanus ;
 Zashar ;
 }
 subgraph { rank=same;
 NovOrion;
 }
}

</graphviz>

Graphviz 2[edit]

<graphviz border='frame' format='png' renderer='neato'>

digraph thozeva {edge [len=2,dir=both]; Viagra -> Tombstone -> Oregon -> Viagra -> Halogia -> Tombstone -> Zana -> Viagra -> Areston -> Erewhon -> Viagra Areston -> Zana Oregon -> New_system}

</graphviz>

Notes[edit]

  • use "everything is blue in this world"