Advertisement
comicidiot

Strax Quotes for Linkinus IRC

Jul 5th, 2015
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. -- ------------------------------------------------------- --
  2. -- A Strax Quote Script for Linkinus                       --
  3. -- by Alex "comic" Glanville                               --
  4. -- Version 1                                               --
  5. -- Adapted from my Image version: comicidiot.com/strax.jpg --
  6. -- ------------------------------------------------------- --
  7.  
  8. on linkinuscmd()
  9.     set strax_2 to {"a full-frontal", "a pincer", "a surprise", "a brutally excessive", "a suicide", "a multi-pronged", "a glorious", "an acid-heavy", "an immediate", "a violent", "a traditional Sontaran", "a devasting"}
  10.     set strax_3 to {"assault", "attack", "bombardment", "offensive", "barrage", "charge", "strike", "operation", "manoeuvre"}
  11.     set strax_5 to {"laser", "berserker", "acid", "armoured attack", "proton", "three kinds of", "atomic", "toxic", "explosive", "red-hot", "thermal", "automated fire", "cluster", "enhanced germ", "energy-drink-fueled"}
  12.     set strax_6 to {"bees", "chainsaws", "marmots", "acid", "monkeys", "mines", "bombs", "snakes", "spiders", "knives", "rockets", "sharks", "owls", "repurposed cybermats", "cannons", "alligators", "scalpel mines"}
  13.     set strax_8 to {"robots", "ninjas", "grenades", "a dolphin full of napalm", "acid", "dynamite", "xenomorphs", "lots and lots of C4", "tactical nukes", "MacGyver", "bio-weapons", "rocket launchers", "an elephant", "automated laser monkeys", "a memory worm for afterwards", "this pencil"}
  14.    
  15.     set one to "Might I suggest"
  16.    
  17.     set the list_count to the count of strax_2
  18.     set pick to random number from 1 to list_count
  19.     set two to item pick of strax_2 as string
  20.    
  21.     set the list_count to the count of strax_3
  22.     set pick to random number from 1 to list_count
  23.     set three to item pick of strax_3 as string
  24.    
  25.     set four to "with"
  26.    
  27.     set the list_count to the count of strax_5
  28.     set pick to random number from 1 to list_count
  29.     set five to item pick of strax_5 as string
  30.    
  31.     set the list_count to the count of strax_6
  32.     set pick to random number from 1 to list_count
  33.     set six to item pick of strax_6 as string
  34.    
  35.     set seven to "and"
  36.    
  37.     set the list_count to the count of strax_8
  38.     set pick to random number from 1 to list_count
  39.     set eight to item pick of strax_8 as string
  40.    
  41.     set strax to one & " " & two & " " & three & " " & four & " " & five & " " & six & " " & seven & " " & eight & "!"
  42.     return strax
  43. end linkinuscmd
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement