2017-07-08 22:24:24 +02:00
|
|
|
|
|
|
|
|
|
|
|
local function allowed_to_nuke(player)
|
2017-07-09 15:20:01 +02:00
|
|
|
return player.admin or is_mod(player.name) or is_regular(player.name) or ((player.online_time / 216000) > global.scenario.config.nuke_min_time_hours)
|
2017-07-08 22:24:24 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
local function ammo_changed(event)
|
|
|
|
local player = game.players[event.player_index]
|
|
|
|
if allowed_to_nuke(player) then return end
|
2017-07-23 04:39:02 +02:00
|
|
|
local nukes = player.remove_item({name="atomic-bomb", count=1000})
|
2017-07-08 22:24:24 +02:00
|
|
|
if nukes > 0 then
|
|
|
|
game.print(player.name .. " tried to use a nuke, but instead dropped it on his foot.")
|
|
|
|
player.character.health = 0
|
|
|
|
end
|
|
|
|
end
|
2017-07-23 04:39:02 +02:00
|
|
|
|
|
|
|
|
|
|
|
local function on_player_deconstructed_area(event)
|
|
|
|
local player = game.players[event.player_index]
|
|
|
|
if allowed_to_nuke(player) then return end
|
|
|
|
local nukes = player.remove_item({name="deconstruction-planner", count=1000})
|
|
|
|
game.print(player.name .. " tried to deconstruct something, but instead deconstructed himself.")
|
|
|
|
player.character.health = 0
|
|
|
|
for _,entity in pairs(game.players[event.player_index].surface.find_entities_filtered{area = event.area}) do
|
|
|
|
entity.cancel_deconstruction(game.players[event.player_index].force)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-07-08 22:24:24 +02:00
|
|
|
Event.register(defines.events.on_player_ammo_inventory_changed, ammo_changed)
|
2017-07-23 04:39:02 +02:00
|
|
|
Event.register(defines.events.on_player_deconstructed_area, on_player_deconstructed_area)
|