Advertisement
Guest User

Untitled

a guest
May 5th, 2015
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.58 KB | None | 0 0
  1. function rightLeg()
  2.  
  3.     if keyCounter6 == 1 and high == 1
  4.         then venom = vTab["c"]
  5.     elseif keyCounter6 == 2 and high == 1
  6.         then venom = vTab["k"]
  7.     elseif keyCounter6 == 3 and high == 1
  8.         then venom = vTab["a"]
  9.     elseif keyCounter6 == 4 and high == 1
  10.         then venom = vTab["a"]
  11.     elseif keyCounter6 == 5 and high == 1
  12.         then venom = vTab["k"]
  13.     elseif keyCounter6 == 1 and low == 1
  14.         then venom = vTab["c"]
  15.     elseif keyCounter6 == 2 and low == 1
  16.         then venom = vTab["h"]
  17.     elseif keyCounter6 == 3 and low == 1
  18.         then venom = vTab["c"]
  19.     elseif keyCounter6 == 4 and low == 1
  20.         then venom = vTab["i"]
  21.     elseif keyCounter6 == 5 and low == 1
  22.         then venom = vTab["c"]
  23.     elseif keyCounter6 == 1 and drive == 1
  24.         then venom = vTab["c"]
  25.     elseif keyCounter6 == 2 and drive == 1
  26.         then venom = vTab["a"]
  27.     elseif keyCounter6 == 3 and drive == 1
  28.         then venom = vTab["n"]
  29.     elseif keyCounter6 == 4 and drive == 1
  30.         then venom = vTab["n"]
  31.     elseif keyCounter6 == 5 and drive == 1
  32.         then venom = vTab["c"]
  33.     elseif keyCounter6 == 1 and trip == 1
  34.         then venom = vTab["m"]
  35.     elseif keyCounter6 == 2 and trip == 1
  36.         then venom = vTab["f"]
  37.     elseif keyCounter6 == 3 and trip == 1
  38.         then venom = vTab["m"]
  39.     elseif keyCounter6 == 4 and trip == 1
  40.         then venom = vTab["f"]
  41.     elseif keyCounter6 == 5 and trip == 1
  42.         then venom = vTab["m"]
  43.     elseif mid == 1
  44.         then venom = ""
  45.        
  46.     else
  47.         vTab = {
  48.                 a       = "aconite",                    
  49.                 b       = "epseth",                    
  50.                 c       = "curare",                    
  51.                 d       = "darkshade",          
  52.                 e       = "digitalis",          --shyness
  53.                 f       = "gecko",                      --slickness
  54.                 g       = "euphorbia",          --vomitting
  55.                 h       = "eurypteria",                 --recklessness
  56.                 i       = "vernalius",          --weakness
  57.                 j       = "kalmia",                     --asthma
  58.                 k       = "larkspur",           --dizziness
  59.                 l       = "monkshood",          --disloyalty
  60.                 m       = "epteth",                     --shivel arms
  61.                 n       = "prefarar",           --sensitivity
  62.                 o      = "notechis",           --haemophilia
  63.                 p       = "vardrax",                    --addiction
  64.                 q       = "slike",                      --anorexia
  65.                 r       = "selarnia",           --animal spirit disruption
  66.                 s       = "xentio",                     --clumsiness
  67.         }
  68.    
  69.     end
  70. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement