Difference between revisions of "minetest.register on protection violation"

From Minetest Developer Wiki
Jump to navigation Jump to search
m (Add sort key)
Line 25: Line 25:
 
</source>
 
</source>
  
[[Category:Methods]]
+
[[Category:Methods|r]]

Revision as of 16:48, 3 March 2019

Syntax

minetest.register_on_protection_violation(function(pos, playername))

Description

Registers a function to be called when a player violates protection.

Example

-- Show a message to protection violators
minetest.register_on_protection_violation(function(pos, name)
  if not mymod:can_interact(pos, name) then
    local pos_string = minetest.pos_to_string(pos)
    local owner_string = mymod:get_owner_string(pos)
    minetest.chat_send_player(name, pos_string.." is protected by "..owner_string)
  end
end)

-- Damage protection violators
minetest.register_on_protection_violation(function(pos, name)
  local player = minetest.get_player_by_name(name)
  if not player then return end
  player:set_hp(math.max(player:get_hp() - 1, 0))
end)