Advertisement
ddson888

Untitled

Apr 21st, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. --========================================
  2. function roll1(o, c, a)
  3. AdjustDiceCache(1, o, c, a)
  4. end
  5. --========================================
  6. function roll2(o, c, a)
  7. AdjustDiceCache(2, o, c, a)
  8. end
  9. --========================================
  10. function roll3(o, c, a)
  11. AdjustDiceCache(3, o, c, a)
  12. end
  13. --========================================
  14. function roll4(o, c, a)
  15. AdjustDiceCache(4, o, c, a)
  16. end
  17. --========================================
  18. function roll5(o, c, a)
  19. AdjustDiceCache(5, o, c, a)
  20. end
  21. --========================================
  22. function roll6(o, c, a)
  23. AdjustDiceCache(6, o, c, a)
  24. end
  25. --========================================
  26. function roll7(o, c, a)
  27. AdjustDiceCache(7, o, c, a)
  28. end
  29. --========================================
  30. function roll8(o, c, a)
  31. AdjustDiceCache(8, o, c, a)
  32. end
  33. --========================================
  34. function roll9(o, c, a)
  35. AdjustDiceCache(9, o, c, a)
  36. end
  37. --========================================
  38. function roll10(o, c, a)
  39. AdjustDiceCache(10, o, c, a)
  40. end
  41. --========================================
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement