Advertisement
crashbox

The Quest for Foo

Nov 11th, 2011
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <cfset list1 = "Run,Hop,Skip,Crawl,Jump">
  2. <cfset tverb = listToArray (list1, ",")>
  3.  
  4. <cfset list2 = "Alabama,Memphis,Walmart,the Superdome,Moobys">
  5. <cfset flocation = listToArray (list2, ",")>
  6.  
  7. <cfset list3 = "Lord Vader,Dick Cheney,the Joker,Michele Bachmann,the Black Knight">
  8. <cfset villain = listToArray (list3, ",")>
  9.  
  10. <cfset list4 = "Kill,Maim,Noogie,Fuck,Tickle">
  11. <cfset averb = listToArray (list4, ",")>
  12.  
  13. <cfset list5 = "peace,harmony,unity,drunkenness,civil unrest">
  14. <cfset ideal = listToArray (list5, ",")>
  15.  
  16. <cfset list6 = "the Force,the CF community,the New Orleans Saints,Crouch End in London,the Round Table">
  17. <cfset hlocation = listToArray (list6, ",")>
  18.  
  19. <cfset list7 = "Boyzoid's Cooler,the Holy Hand Grenade of Antioch,Tim Cunningham's bow-tie,Drew Brees' helmet,my pants">
  20. <cfset item = listToArray (list7, ",")>
  21.  
  22. <cfset i = RandRange(1, 5)>
  23. <cfset j = RandRange(1, 5)>
  24. <cfset k = RandRange(1, 5)>
  25. <cfset m = RandRange(1, 5)>
  26. <cfset n = RandRange(1, 5)>
  27. <cfset p = RandRange(1, 5)>
  28. <cfset q = RandRange(1, 5)>
  29.  
  30. <cfoutput>
  31. #tverb[i]# to #flocation[j]# and find #villain[k]#. #averb[m]#
  32. <cfif k is 4>her<cfelse>him</cfif>
  33. and bring back #item[q]# so that #ideal[n]# can be returned to #hlocation[p]#.
  34. </cfoutput>
  35.  
  36.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement