Advertisement
Guest User

Untitled

a guest
Aug 31st, 2016
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. function caps_check(name, param)
  2. local a = 0
  3. minetest.register_on_chat_message(function(name,message)
  4. if string.match(message, "%u%u%u%u") or string.match(message, "%U%u%u%u%u") then
  5. local a = a + 1
  6. minetest.chat_send_all("<The All Seeing Eye> Please refrain from using all caps.")
  7. else
  8. if a > 4 then
  9. minetest.chat_send_all("You have really done it now.")
  10. end
  11. end
  12. end)
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement