Advertisement
Risk_exe

Untitled

Apr 9th, 2022
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1.  
  2. local position = {
  3. lo = 20,
  4. hi = 40
  5. }
  6.  
  7. local start_point = {
  8. x = 0,
  9. y = 0,
  10. z = 0
  11. }
  12.  
  13. for i,v in ipairs(arg) do
  14. if (i == 1) then
  15. start_point.x = v
  16. end
  17. if (i == 2) then
  18. start_point.y = v
  19. end
  20. if (i == 3) then
  21. start_point.z = v
  22. end
  23. end
  24.  
  25. print(start_point);
  26.  
  27. print(position.hi);
  28. local lowest_level = 8;
  29. local highest_level = 22;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement