Page 1 of 3

KJA plot generator

Posted: 17 Sep 2009 20:10
by othaderak
Modified from Maddox's Tom Clancy plot generator. It's code, so hopefully someone knows what to do with it all. I'm no programmer :P Hope it works!

Also, feel free to change the nouns if you feel they could be replaced for more comedic value.

Code: Select all

<P>
<FONT COLOR=#FFFFFF><U>Kevin J. Anderson Plot Generator:</U></FONT>
<P>
<FORM NAME=KJA>
<TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=2>
<TR>
 <TD CLASS=h3>
  Bad guys:
 </TD>
 <TD CLASS=h3>
  Diabolical scheme:
 </TD>

 <TD CLASS=h3>
  Third party:
 </TD>
</TR>
<TR>
 <TD CLASS=h3>
  <SELECT NAME=badguys onchange=results(1)>
  <Option VALUE="blank" selected>Select one:
  <Option VALUE="Tleilaxu">Tleilaxu
  <Option VALUE="Independent robots">Independent robots
  <Option VALUE="Rogue Imperial officers">Rogue Imperial officers
  <Option VALUE="Talifans">Talifans
  </SELECT>

 </TD>
 <TD CLASS=h3>
  <SELECT NAME=diabolical onchange=results(1)>
  <Option VALUE="blank" selected>Select one:
  <Option VALUE="d1">build a ridiculously overblown superweapon
  <Option VALUE="d2">take over the galaxy
  <Option VALUE="d3">act really, really dark
  <Option VALUE="d4">write mean reviews on Amazon
  </SELECT>
 </TD>
 <TD CLASS=h3>

  <SELECT NAME=third_party onchange=results(1)>
  <Option VALUE="blank" selected>Select one:
  <Option VALUE="tp1">corrupt New Republic senators
  <Option VALUE="tp2">corrupt Parks and Recreation officials
  <Option VALUE="tp3">corrupt Spacing Guild officials
  <Option VALUE="tp4">fans of the old books
  </SELECT>
 </TD>
</TR>
<TR>
 <TD CLASS=h3>
  Increased stake:
 </TD>

 <TD CLASS=h3 COLSPAN=2>
  Hero:
 </TD>
</TR>
<TR>
 <TD CLASS=h3>
  <SELECT NAME=increased_stake onchange=results(1)>
  <Option VALUE="blank" selected>Select one:
  <Option VALUE="is1">freighter full of ultraspice
  <Option VALUE="is2">some really good hiking trails
  <Option VALUE="is3">laregly ignored internet forum
  <Option VALUE="is4">string of bestsellers
  </SELECT>

 </TD>
 <TD CLASS=h3 COLSPAN=2>
  <SELECT NAME=hero onchange=results(1)>
  <Option VALUE="blank" selected>Select one:
  <Option VALUE="h1">washed-up forum administrator
  <Option VALUE="h2">self-avowed literary genius
  <Option VALUE="h3">plucky squad of teen Jedi
  <Option VALUE="h4">seemingly inexplicable superbeing from another time/novel
  </SELECT>
 </TD>
</TR>
<TR>

 <TD CLASS=h3 COLSPAN=2>
  Conclusion:
 </TD>
</TR>
<TR>
 <TD CLASS=h3 COLSPAN=3>
  <SELECT NAME=conclusion onchange=results(1)>
  <Option VALUE="blank" selected>Select one:
  <Option VALUE="c1">Another satisfying tale of political intrigue and personal redemption closes, and we all walk away from this book a little wiser.
  </SELECT>
 </TD>

</TR>
</TABLE>
<P>
Your plot:
<P>
<TEXTAREA NAME=plot COLS=110 ROWS=7 READONLY>[Select one item from each category above to create your plot]</TEXTAREA>
</FORM>

<SCRIPT LANGUAGE=JAVASCRIPT TYPE="TEXT/JAVASCRIPT">
// Copyright 2004 by Maddox, used here as a fair-use parody
function results(s_option)
{ 
 with (document.forms["KJA"])
 {
  //var plot_tot = "";

  if (badguys.value != 'blank')
  {
   plot.value = badguys.value + " devise a scheme to ";

   if (diabolical.value != 'blank')
   {
    if (diabolical.value == 'd1')
     plot.value = plot.value + "build a ridiculously overblown superweapon ";
    else if (diabolical.value == 'd2')
     plot.value = plot.value + "take over the galaxy ";
    else if (diabolical.value == 'd3')
     plot.value = plot.value + "act really, really dark ";
    else if (diabolical.value == 'd4')
     plot.value = plot.value + "write mean reviews on Amazon while claiming to be merely ";

    if (third_party != 'blank')
    {
     if (third_party.value == 'tp1')
      plot.value = plot.value + "Tleilaxu.  The plot twists when the ";
     else if (third_party.value == 'tp2')
      plot.value = plot.value + "Independent robots.  The plot twists when the ";
     else if (third_party.value == 'tp3')
      plot.value = plot.value + "Rogue Imperial officers.  The plot twists when the ";
     else if (third_party.value == 'tp4')
      plot.value = plot.value + "Talifans.  The plot twists when the ";
     
     if (increased_stake != 'blank')
     {
      if (increased_stake.value == 'is1')
       plot.value = plot.value + badguys.value + "hijack a shipment of ultraspice even after their demands are met, unless ";
      else if (increased_stake.value == 'is2')
       plot.value = plot.value + badguys.value + "threaten to close some really good hiking trails. Hundreds of dictating hours are at stake unless ";
      else if (increased_stake.value == 'is3')
       plot.value = plot.value + badguys.value + "abandon and mock a largely ignored internet forum, unless ";
      else if (increased_stake.value == 'is4')
       plot.value = plot.value + badguys.value + "threaten to disrupt an unbroken string of national bestsellers, unless ";

      if (hero.value != 'blank')
      {
       if (hero.value == 'h1')
        plot.value = plot.value + "washed-up forum administrator " + badguys.value + " once and for all.  ";
       else if (hero.value == 'h2')
        plot.value = plot.value + "self-avowed literary genius " + badguys.value + " once and for all.  ";
       else if (hero.value == 'h3')
        plot.value = plot.value + "plucky squad of teen Jedi can gain the courage to stop the " + badguys.value + " once and for all.  ";
       else if (hero.value == 'h4')
        plot.value = plot.value + "seemingly inexplicable superbeing from another time/novel appears just in time to save humanity and stop the " + badguys.value + " once and for all.  ";

       if (conclusion.value != 'blank')
        if (conclusion.value == 'c1')
         plot.value = plot.value + "The book ends with a mildly comical and/or ironic scene in which the " + badguys.value + " blow up or get sent to another dimension.  Another satisfying tale of political intrigue and personal redemption closes, and we all walk away from this book a little wiser.";
      } // if (hero.value != 'blank')
     } // if (increased_stake != 'blank')
    } // if (third_party != 'blank')
   } // if (diabolical.value != 'blank')
  } // if (badguys.value != 'blank')
 } // with (document.forms["KJA"])
} // function results(s_option)
</SCRIPT>
<P>

Re: KJA plot generator

Posted: 17 Sep 2009 20:58
by Futar
did some programming a couple years back when i was in engineering so it doesnt look completely foreign

although i unfortunately reformatted my laptop since then and i lost my copy of Matlab7 i was using. wish i still had it so i could have some fun with this

Re: KJA plot generator

Posted: 17 Sep 2009 21:52
by SandChigger
I think if you stick it inside a standard webpage template it should work fine, even on your computer, viewed in IE or Firefox or the browser of your chosing.

Use the plain vanilla text editor, not Word (I think it's called NotePad or something like that?), and enter the following:

Code: Select all

<html>
<head>
<title>KJA Plot Generator</title>
</head>
<body>

<!-- Replace this entire line with all the earlier code posted by othaderak above-->

</body>
</html>
And save as a file named "kjaplotgen.html" or something similar. Works like a charm (for me). :)

Re: KJA plot generator

Posted: 17 Sep 2009 23:33
by othaderak
Fix'd.

Code: Select all

    <html>
    <head>
    <title>KJA Plot Generator</title>
    </head>
    <body>

<BODY BGCOLOR="black" TEXT="white" LINK="yellow" VLINK="839590">

    <P>
<FONT COLOR=#FFFFFF><U>Kevin J. Anderson Plot Generator:</U></FONT>

<P>
<FORM NAME=KJA>
<TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=2>
<TR>
 <TD CLASS=h3>
  Bad guys:
 </TD>
 <TD CLASS=h3>
  Diabolical scheme:
 </TD>

 <TD CLASS=h3>

  Third party:
 </TD>
</TR>
<TR>
 <TD CLASS=h3>
  <SELECT NAME=badguys onchange=results(1)>
  <Option VALUE="blank" selected>Select one:
  <Option VALUE="Tleilaxu">Tleilaxu 
  <Option VALUE="Independent robots">Independent robots 
  <Option VALUE="Rogue Imperial officers">Rogue Imperial officers 
  <Option VALUE="Talifans">Talifans 
  </SELECT>

 </TD>
 <TD CLASS=h3>
  <SELECT NAME=diabolical onchange=results(1)>
  <Option VALUE="blank" selected>Select one:
  <Option VALUE="d1">build a ridiculously overblown superweapon
  <Option VALUE="d2">take over the galaxy
  <Option VALUE="d3">act really, really dark
  <Option VALUE="d4">write mean reviews on Amazon
  </SELECT>
 </TD>
 <TD CLASS=h3>

  <SELECT NAME=third_party onchange=results(1)>
  <Option VALUE="blank" selected>Select one:
  <Option VALUE="tp1">with the help of some corrupt New Republic senators.
  <Option VALUE="tp2">with the help of some corrupt Parks and Recreation officials.
  <Option VALUE="tp3">with the help of some corrupt Spacing Guild officials.
  <Option VALUE="tp4">fans of the old books.
  </SELECT>
 </TD>
</TR>
<TR>
 <TD CLASS=h3>
  Increased stake:
 </TD>

 <TD CLASS=h3 COLSPAN=2>
  Hero:
 </TD>
</TR>
<TR>
 <TD CLASS=h3>
  <SELECT NAME=increased_stake onchange=results(1)>
  <Option VALUE="blank" selected>Select one:
  <Option VALUE="is1">freighter full of ultraspice
  <Option VALUE="is2">some really good hiking trails
  <Option VALUE="is3">largely ignored internet forum
  <Option VALUE="is4">string of bestsellers
  </SELECT>

 </TD>
 <TD CLASS=h3 COLSPAN=2>
  <SELECT NAME=hero onchange=results(1)>
  <Option VALUE="blank" selected>Select one:
  <Option VALUE="h1">a washed-up forum administrator
  <Option VALUE="h2">a self-avowed literary genius
  <Option VALUE="h3">a plucky squad of teen Jedi
  <Option VALUE="h4">a seemingly inexplicable superbeing from another time/novel
  </SELECT>
 </TD>
</TR>

<TR>

 <TD CLASS=h3 COLSPAN=2>
  Conclusion:
 </TD>
</TR>
<TR>
 <TD CLASS=h3 COLSPAN=3>
  <SELECT NAME=conclusion onchange=results(1)>
  <Option VALUE="blank" selected>Select one:
  <Option VALUE="c1">Another satisfying tale of political intrigue and personal redemption closes, and we all walk away from this book a little wiser.
  </SELECT>

 </TD>

</TR>
</TABLE>
<P>
Your plot:
<P>
<TEXTAREA NAME=plot COLS=110 ROWS=7 READONLY>[Select one item from each category above to create your plot]</TEXTAREA>
</FORM>

<SCRIPT LANGUAGE=JAVASCRIPT TYPE="TEXT/JAVASCRIPT">
// Copyright 2004 by Maddox, used here as a fair-use parody
function results(s_option)
{ 
 with (document.forms["KJA"])
 {
  //var plot_tot = "";

  if (badguys.value != 'blank')
  {
   plot.value = badguys.value + " devise a scheme to ";

   if (diabolical.value != 'blank')
   {
    if (diabolical.value == 'd1')
     plot.value = plot.value + "build a ridiculously overblown superweapon ";
    else if (diabolical.value == 'd2')
     plot.value = plot.value + "take over the galaxy ";
    else if (diabolical.value == 'd3')
     plot.value = plot.value + "act really, really dark ";
    else if (diabolical.value == 'd4')
     plot.value = plot.value + "write mean reviews on Amazon while claiming to be merely ";

    if (third_party != 'blank')
    {
     if (third_party.value == 'tp1')
      plot.value = plot.value + "with the help of some corrupt New Republic senators. The plot twists when the ";
     else if (third_party.value == 'tp2')
      plot.value = plot.value + "with the help of some corrupt Parks and Recreation officials. The plot twists when the ";
     else if (third_party.value == 'tp3')
      plot.value = plot.value + "with the help of some corrupt Spacing Guild officials. The plot twists when the ";
     else if (third_party.value == 'tp4')
      plot.value = plot.value + "fans of the old books. The plot twists when the ";
     
     if (increased_stake != 'blank')
     {
      if (increased_stake.value == 'is1')
       plot.value = plot.value + badguys.value + " hijack a shipment of ultraspice even after their demands are met, unless ";
      else if (increased_stake.value == 'is2')
       plot.value = plot.value + badguys.value + " threaten to close some really good hiking trails. Hundreds of dictating hours are at stake unless ";
      else if (increased_stake.value == 'is3')
       plot.value = plot.value + badguys.value + " abandon and mock a largely ignored internet forum, unless ";
      else if (increased_stake.value == 'is4')
       plot.value = plot.value + badguys.value + " threaten to disrupt an unbroken string of national bestsellers, unless ";

      if (hero.value != 'blank')
      {
       if (hero.value == 'h1')
        plot.value = plot.value + "a washed-up forum administrator " + badguys.value + " once and for all.  ";
       else if (hero.value == 'h2')
        plot.value = plot.value + "a self-avowed literary genius " + badguys.value + " once and for all.  ";
       else if (hero.value == 'h3')
        plot.value = plot.value + "a plucky squad of teen Jedi can gain the courage to stop the " + badguys.value + " once and for all.  ";
       else if (hero.value == 'h4')
        plot.value = plot.value + "a seemingly inexplicable superbeing from another time/novel appears just in time to save humanity and stop the " + badguys.value + " once and for all.  ";

       if (conclusion.value != 'blank')
        if (conclusion.value == 'c1')
         plot.value = plot.value + "The book ends with a mildly comical and/or ironic scene in which the " + badguys.value + " blow up or get sent to another dimension.  Another satisfying tale of political intrigue and personal redemption closes, and we all walk away from this book a little wiser.";
      } // if (hero.value != 'blank')
     } // if (increased_stake != 'blank')
    } // if (third_party != 'blank')
   } // if (diabolical.value != 'blank')
  } // if (badguys.value != 'blank')
 } // with (document.forms["KJA"])
} // function results(s_option)
</SCRIPT>
<P>


    </body>
    </html>

Re: KJA plot generator

Posted: 18 Sep 2009 00:31
by E. LeGuille
Othandrek's KJA Plot Generator

If there are any problems with it, let me know. I sort of just cut and paste and left it as is.
The rest of the site is just in works. I was playing around with features, don't even have a banner. :dance:

Re: KJA plot generator

Posted: 18 Sep 2009 00:37
by othaderak
E. LeGuille wrote:Othandrek's KJA Plot Generator

If there are any problems with it, let me know. I sort of just cut and paste and left it as is.
The rest of the site is just in works. I was playing around with features, don't even have a banner. :dance:
Many thanks for giving it a home!

Now that I'm going through it some more, I think there might be more bugs :oops: I shall eradicate them at once! :cylon101:

Re: KJA plot generator

Posted: 18 Sep 2009 00:41
by othaderak
This is getting embarrassing :P

KJA plot generator version 3.0:

Code: Select all

    <html>
    <head>
    <title>KJA Plot Generator</title>
    </head>
    <body>

<BODY BGCOLOR="black" TEXT="white" LINK="yellow" VLINK="839590">

    <P>
<FONT COLOR=#FFFFFF><U>Kevin J. Anderson Plot Generator:</U></FONT>

<P>
<FORM NAME=KJA>
<TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=2>
<TR>
 <TD CLASS=h3>
  Bad guys:
 </TD>
 <TD CLASS=h3>
  Diabolical scheme:
 </TD>

 <TD CLASS=h3>

  Third party:
 </TD>
</TR>
<TR>
 <TD CLASS=h3>
  <SELECT NAME=badguys onchange=results(1)>
  <Option VALUE="blank" selected>Select one:
  <Option VALUE="Tleilaxu">Tleilaxu 
  <Option VALUE="Independent robots">Independent robots 
  <Option VALUE="Rogue Imperial officers">Rogue Imperial officers 
  <Option VALUE="Talifans">Talifans 
  </SELECT>

 </TD>
 <TD CLASS=h3>
  <SELECT NAME=diabolical onchange=results(1)>
  <Option VALUE="blank" selected>Select one:
  <Option VALUE="d1">build a ridiculously overblown superweapon
  <Option VALUE="d2">take over the galaxy
  <Option VALUE="d3">act really, really dark
  <Option VALUE="d4">write mean reviews on Amazon
  </SELECT>
 </TD>
 <TD CLASS=h3>

  <SELECT NAME=third_party onchange=results(1)>
  <Option VALUE="blank" selected>Select one:
  <Option VALUE="tp1">with the help of some corrupt New Republic senators.
  <Option VALUE="tp2">with the help of some corrupt Parks and Recreation officials.
  <Option VALUE="tp3">with the help of some corrupt Spacing Guild officials.
  <Option VALUE="tp4">fans of the old books.
  </SELECT>
 </TD>
</TR>
<TR>
 <TD CLASS=h3>
  Increased stake:
 </TD>

 <TD CLASS=h3 COLSPAN=2>
  Hero:
 </TD>
</TR>
<TR>
 <TD CLASS=h3>
  <SELECT NAME=increased_stake onchange=results(1)>
  <Option VALUE="blank" selected>Select one:
  <Option VALUE="is1">freighter full of ultraspice
  <Option VALUE="is2">some really good hiking trails
  <Option VALUE="is3">largely ignored internet forum
  <Option VALUE="is4">string of bestsellers
  </SELECT>

 </TD>
 <TD CLASS=h3 COLSPAN=2>
  <SELECT NAME=hero onchange=results(1)>
  <Option VALUE="blank" selected>Select one:
  <Option VALUE="h1">a washed-up forum administrator
  <Option VALUE="h2">a self-avowed literary genius
  <Option VALUE="h3">a plucky squad of teen Jedi
  <Option VALUE="h4">a seemingly inexplicable superbeing from another time/novel
  </SELECT>
 </TD>
</TR>

<TR>

 <TD CLASS=h3 COLSPAN=2>
  Conclusion:
 </TD>
</TR>
<TR>
 <TD CLASS=h3 COLSPAN=3>
  <SELECT NAME=conclusion onchange=results(1)>
  <Option VALUE="blank" selected>Select one:
  <Option VALUE="c1">Another satisfying tale of political intrigue and personal redemption closes, and we all walk away from this book a little wiser.
  </SELECT>

 </TD>

</TR>
</TABLE>
<P>
Your plot:
<P>
<TEXTAREA NAME=plot COLS=110 ROWS=7 READONLY>[Select one item from each category above to create your plot]</TEXTAREA>
</FORM>

<SCRIPT LANGUAGE=JAVASCRIPT TYPE="TEXT/JAVASCRIPT">
// Copyright 2004 by Maddox, used here as a fair-use parody
function results(s_option)
{ 
 with (document.forms["KJA"])
 {
  //var plot_tot = "";

  if (badguys.value != 'blank')
  {
   plot.value = badguys.value + " devise a scheme to ";

   if (diabolical.value != 'blank')
   {
    if (diabolical.value == 'd1')
     plot.value = plot.value + "build a ridiculously overblown superweapon ";
    else if (diabolical.value == 'd2')
     plot.value = plot.value + "take over the galaxy ";
    else if (diabolical.value == 'd3')
     plot.value = plot.value + "act really, really dark ";
    else if (diabolical.value == 'd4')
     plot.value = plot.value + "write mean reviews on Amazon while claiming to be merely ";

    if (third_party != 'blank')
    {
     if (third_party.value == 'tp1')
      plot.value = plot.value + "with the help of some corrupt New Republic senators. The plot twists when the ";
     else if (third_party.value == 'tp2')
      plot.value = plot.value + "with the help of some corrupt Parks and Recreation officials. The plot twists when the ";
     else if (third_party.value == 'tp3')
      plot.value = plot.value + "with the help of some corrupt Spacing Guild officials. The plot twists when the ";
     else if (third_party.value == 'tp4')
      plot.value = plot.value + "fans of the old books. The plot twists when the ";
     
     if (increased_stake != 'blank')
     {
      if (increased_stake.value == 'is1')
       plot.value = plot.value + badguys.value + " hijack a shipment of ultraspice even after their demands are met, unless ";
      else if (increased_stake.value == 'is2')
       plot.value = plot.value + badguys.value + " threaten to close some really good hiking trails. Hundreds of dictating hours are at stake unless ";
      else if (increased_stake.value == 'is3')
       plot.value = plot.value + badguys.value + " abandon and mock a largely ignored internet forum, unless ";
      else if (increased_stake.value == 'is4')
       plot.value = plot.value + badguys.value + " threaten to disrupt an unbroken string of national bestsellers, unless ";

      if (hero.value != 'blank')
      {
       if (hero.value == 'h1')
        plot.value = plot.value + "a washed-up forum administrator can grow a pair and stop the " + badguys.value + " once and for all.  ";
       else if (hero.value == 'h2')
        plot.value = plot.value + "a self-avowed literary genius can stop dicta-hiking long enough to stop the " + badguys.value + " once and for all.  ";
       else if (hero.value == 'h3')
        plot.value = plot.value + "a plucky squad of teen Jedi can summon the courage to stop the " + badguys.value + " once and for all.  ";
       else if (hero.value == 'h4')
        plot.value = plot.value + "a seemingly inexplicable superbeing from another time/novel appears just in time to save humanity and stop the " + badguys.value + " once and for all.  ";

       if (conclusion.value != 'blank')
        if (conclusion.value == 'c1')
         plot.value = plot.value + "The book ends with a mildly comical and/or ironic scene in which the " + badguys.value + " blow up or get sent to another dimension.  Another satisfying tale of political intrigue and 

personal redemption closes, and we all walk away from this book a little wiser.";
      } // if (hero.value != 'blank')
     } // if (increased_stake != 'blank')
    } // if (third_party != 'blank')
   } // if (diabolical.value != 'blank')
  } // if (badguys.value != 'blank')
 } // with (document.forms["KJA"])
} // function results(s_option)
</SCRIPT>
<P>


    </body>
    </html>

Re: KJA plot generator

Posted: 18 Sep 2009 00:44
by E. LeGuille
3.0 is up.

Also, if you want to add things to it, let me know.

Re: KJA plot generator

Posted: 18 Sep 2009 00:50
by othaderak
E. LeGuille wrote:3.0 is up.

Also, if you want to add things to it, let me know.
Sure thing.

Re: KJA plot generator

Posted: 18 Sep 2009 00:52
by E. LeGuille
It's got some errors in the new one. It won't generate the list. So, I am going to replace it with the previous.

Re: KJA plot generator

Posted: 18 Sep 2009 00:58
by othaderak
It works fine on mine... That's weird.

Re: KJA plot generator

Posted: 18 Sep 2009 01:14
by E. LeGuille
Image

Code: Select all

[url=http://wifi.co.nr/viewpage.php?page_id=1][img]http://i151.photobucket.com/albums/s142/LeGuille/oth.png[/img][/url]
For your siggy.

Re: KJA plot generator

Posted: 18 Sep 2009 01:18
by othaderak
E. LeGuille wrote:Image

Code: Select all

[url=http://wifi.co.nr/viewpage.php?page_id=1][img]http://i151.photobucket.com/albums/s142/LeGuille/oth.png[/img][/url]
For your siggy.
Haha! 'Bout time someone else messed up around here! :twisted:

My name's spelled OTHADERAK

Sorry, I just had to :)

Re: KJA plot generator

Posted: 18 Sep 2009 01:19
by E. LeGuille
lol, I already saved it, too.

Re: KJA plot generator

Posted: 18 Sep 2009 01:27
by othaderak
E. LeGuille wrote:lol, I already saved it, too.
No problem, I'll just swap the letters around in MSPaint or something.

Re: KJA plot generator

Posted: 18 Sep 2009 01:37
by othaderak
All better now.

Re: KJA plot generator

Posted: 18 Sep 2009 02:06
by E. LeGuille
lol, awesome MSPaint job. I did that in Linux GIMP, and forgot to save the layered format :P

Re: KJA plot generator

Posted: 18 Sep 2009 13:46
by DuneFishUK
E. LeGuille wrote:lol, awesome MSPaint job. I did that in Linux GIMP, and forgot to save the layered format :P
Layered formats are the reason I have bugger all HDD space left :wink:

Hmm not sure about this plot generator.. there aren;t nearly enough pointless predictable sub-plots :P

Re: KJA plot generator

Posted: 18 Sep 2009 17:57
by Freakzilla
Needs repetition, too. :P

Re: KJA plot generator

Posted: 19 Sep 2009 00:21
by othaderak
You know what, guys? I'll just take my skills somewhere else if you aren't gonna appreciate them :cry:


This one's just the economy version. Maybe I'll add to it later, but I'm either a.) too lazy to worry about it now, or b.) not good at coding. I'm leaning toward b, but a sounds good, too :)

Re: KJA plot generator

Posted: 19 Sep 2009 04:48
by Freakzilla
Awww... we appreciate you, but we also must criticize. :D

Re: KJA plot generator

Posted: 19 Sep 2009 17:04
by othaderak
Freakzilla wrote:Awww... we appreciate you, but we also must criticize. :D
They say you can't win 'em all, to which I say "eh, that's alright". By the way, where's Obama Spock?! What's with all these people changing their avatars? First GamePlayer, now Freak... Who's next? Chig?!??

Blasphemy, I say! :Adolf:

Re: KJA plot generator

Posted: 22 Sep 2009 10:50
by KJA Special Forces
I think it is clear that some of you are simply jealous that Kevin can write such good stories and create very entertaining plot lines. Kevin is a master of the cliffhanger and plot lines that keep you turning the pages.

Re: KJA plot generator

Posted: 22 Sep 2009 11:04
by TheDukester
And here it comes.

I wondered how long it would take for the actual trolling to begin, and now I have my answer: seven posts.

This post might as well be labeled "Troll Tactics 101." It's just so breathtakingly lame and obvious.

The only question now is if we're stupid enough to fall for this nonsense. I'd like to think we're not ...

Re: KJA plot generator

Posted: 22 Sep 2009 11:07
by Drunken Idaho
othaderak wrote:
Freakzilla wrote:Awww... we appreciate you, but we also must criticize. :D
They say you can't win 'em all, to which I say "eh, that's alright". By the way, where's Obama Spock?! What's with all these people changing their avatars? First GamePlayer, now Freak... Who's next? Chig?!??

Blasphemy, I say! :Adolf:
The Dude is a much cooler avatar than Baspock Obama. :obscene-smokingjoint: