Advertisement
Guest User

Untitled

a guest
Sep 29th, 2016
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. -- Setyaw by red-001
  2. minetest.register_chatcommand("setyaw", {
  3. params = "<yaw>",
  4. description = "Set player yaw",
  5. func = function(caller,yaw)
  6. if (yaw ~= '') and tonumber(yaw) then
  7. local player = minetest.get_player_by_name(caller)
  8. player:set_look_yaw(math.rad(yaw))
  9. return true, "Yaw set to "..yaw
  10. end
  11. return false, "invaild input"
  12. end,
  13. })
  14.  
  15. -- Setpitch by red-001
  16. minetest.register_chatcommand("setpitch", {
  17. params = "<pitch>",
  18. description = "Set player pitch",
  19. func = function(caller,pitch)
  20. if (pitch ~= '') and tonumber(pitch) then
  21. local player = minetest.get_player_by_name(caller)
  22. player:set_look_pitch(math.rad(pitch))
  23. return true, "Pitch set to "..pitch
  24. end
  25. return false, "invaild input"
  26. end,
  27. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement