For those who find the website's drop-down menus a bit too limiting, use this program instead (DBPro):
set text font "arial black"
set text size 16
set window on
set display mode 800,600,screen depth()
type Field
DispText as string
UserInput as string
endtype
DIM Fields(20) as Field
Fields(1).DispText="What is your overall objective? (noun)"
Fields(2).DispText="What is your motive? (noun)"
Fields(3).DispText="What is the first step of your plan? (verb only, target is a person)"
Fields(4).DispText="Who will be the target in this step? (noun)"
Fields(5).DispText="How will people react when you enter a room? (verb)"
Fields(6).DispText="What is the second step of your plan? (verb only, target is an object)"
Fields(7).DispText="What will be the target of this step? (noun, location or monument)"
Fields(8).DispText="How do mere mortals react to your presence? (verb)"
Fields(9).DispText="What will be the final stage of your plan? (verb only, action)"
Fields(10).DispText="What will you use to carry out this stage? (noun)"
Fields(11).DispText="What will the people do upon seeing this? (verb)"
Fields(12).DispText="How would you characterize the look on the doctor's face when you were born? (adjective)"
Fields(13).DispText="What is your base of operations? (noun)"
Fields(14).DispText="Who/what are your prefered henchmen? (noun, plural)"
Fields(15).DispText="What will you be upon accomplishing this? (noun, NO ARTICLE)"
Fields(16).DispText="What is your prefered clothing? (noun)"
Fields(17).DispText="What will your appearance foreshadow? (noun)"
Fields(18).DispText="Enter a random noun. (noun)"
Fields(19).DispText="What will no man ever dare to do in your presence or to you? (verb)"
Fields(20).DispText="What kind of power/ability will you have? (noun)"
print "YOUR EVIL PLAN:"
print ""
print "Answer the 20 following questions."
print "Be sure to follow the part-of speech guidelines after the questions!"
print "Be sure to include articles such as 'a' or 'an'."
print "Keep the answers simple, don't try to include all kinds of subordinate clauses."
for c=1 to 20
print ""
print Fields(c).DispText
input "-> ",Fields(c).UserInput
next c
cls
tempstr$="Your objective is simple: "+Fields(1).UserInput+chr$(13)+chr$(13)
tempstr$=tempstr$+"Your motive is a little bit more complex: "+Fields(2).UserInput+chr$(13)+chr$(13)
tempstr$=tempstr$+"Stage One"+chr$(13)+chr$(13)
tempstr$=tempstr$+"To begin your plan, you must first "+Fields(3).UserInput+" "+Fields(4).UserInput+". "
tempstr$=tempstr$+"This will cause the world to "+Fields(5).UserInput+", "+Fields(12).UserInput+" by your arrival. "
tempstr$=tempstr$+"Who is this "+Fields(15).UserInput+"? Where did they come from? "
tempstr$=tempstr$+"And why do they look so good in "+Fields(16).UserInput+"?"+chr$(13)+chr$(13)
tempstr$=tempstr$+"Stage Two"+chr$(13)+chr$(13)
tempstr$=tempstr$+"Next, you must "+Fields(6).UserInput+" "+Fields(7).UserInput+". "
tempstr$=tempstr$+"This will all be done from "+Fields(13).UserInput+", a mysterious place of unrivaled dark glory. "
tempstr$=tempstr$+"Upon seeing this, the world will "+Fields(8).UserInput+", as countless hordes of "+Fields(14).UserInput+" hasten to do your every bidding. "+chr$(13)+chr$(13)
tempstr$=tempstr$+"Stage Three"+chr$(13)+chr$(13)
tempstr$=tempstr$+"Finally, you must "+Fields(9).UserInput+" with "+Fields(10).UserInput+", bringing about "+Fields(17).UserInput+". "
tempstr$=tempstr$+"Your name shall be synonymous with "+Fields(18).UserInput+", and no man will ever again "+Fields(19).UserInput+". "
tempstr$=tempstr$+"Everyone will bow before your "+Fields(20).UserInput+", and the world will have no choice but to "+Fields(11).UserInput+"."
write to clipboard tempstr$
print "YOUR EVIL PLAN:"
print ""
print "Has been saved to the clipboard."
print ""
print "Press any key to quit."
pressed=1
do
if pressed=0 and scancode()>0 then end
if scancode()=0 then pressed=0
loop
Quote: "Your objective is simple: kill everyone
Your motive is a little bit more complex: just because
Stage One
To begin your plan, you must first own a WoW nerd. This will cause the world to drop their tacos, amazement by your arrival. Who is this l33t h4x0r? Where did they come from? And why do they look so good in diving gear?
Stage Two
Next, you must eat the Pacific Ocean. This will all be done from IanM\'s moon base, a mysterious place of unrivaled dark glory. Upon seeing this, the world will faint, as countless hordes of small parakeets hasten to do your every bidding.
Stage Three
Finally, you must run with missiles, bringing about the end of an era. Your name shall be synonymous with lamp, and no man will ever again breathe. Everyone will bow before your political influence, and the world will have no choice but to laugh uncontrollably."