Guest User

Untitled

a guest
May 25th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. function newDebate()
  2.  
  3. local ms = math.random(1, 3)
  4.  
  5. if ms = 1 then
  6. mindset = cautious
  7. send("mindset "..mindset)
  8. elseif ms = 2 then
  9. mindset = pedantic
  10. send("mindset "..mindset)
  11. elseif ms = 3 then
  12. mindset = analytical
  13. send("mindset "..mindset)
  14. end
  15. end
Add Comment
Please, Sign In to add comment