77 lines
2.6 KiB
Lua
77 lines
2.6 KiB
Lua
-- rumble - Client side mod for Minetest
|
|
-- Scripted by: Li0n
|
|
|
|
|
|
-- To do list:
|
|
-- chatcommand to start and stop logging
|
|
-- chatcommand to write what is being logged into the chat
|
|
-- sadist mode
|
|
-- tnt griefer mode
|
|
-- move python program to a different directory
|
|
-- chat mode: trigger from specific words written by either yourself (humiliation) or others (degradation)
|
|
|
|
-- configureable settings:
|
|
local rumble_strength_max_standard = 0.5
|
|
local rumble_duration_max_standard = 5
|
|
|
|
local rumble_strength_max
|
|
local rumble_duration_max
|
|
|
|
-- step 1 (start)
|
|
minetest.register_on_mods_loaded(function()
|
|
minetest.display_chat_message("rumble mod loaded. May the rumble be with you!")
|
|
rumble_strength_max = rumble_strength_max_standard
|
|
rumble_duration_max = rumble_duration_max_standard
|
|
end)
|
|
|
|
-- step 2 (take damage)
|
|
minetest.register_on_damage_taken(function(hp)
|
|
local rumble_strength = math.min( hp/20, rumble_strength_max )
|
|
local rumble_duration = math.min( hp, rumble_duration_max )
|
|
minetest.log("action", "[rumble] ".."queue "..rumble_strength.." "..rumble_duration)
|
|
minetest.display_chat_message("[rumble] ".."queue "..rumble_strength.." "..rumble_duration)
|
|
end)
|
|
|
|
-- step 3 (die)
|
|
minetest.register_on_death(function()
|
|
minetest.log("action", "[rumble] instant 0 0")
|
|
end)
|
|
|
|
-- step 4 (disconnect)
|
|
minetest.register_on_shutdown(function()
|
|
minetest.log("action", "[rumble] instant 0 0")
|
|
end)
|
|
|
|
-- step 5 (commands)
|
|
minetest.register_chatcommand("strength", {
|
|
description = "set max rumble strength (between 0 and 1)",
|
|
func = function(text)
|
|
if (string.match((text), "^%d+$")) then
|
|
rumble_strength_max = (text)
|
|
minetest.display_chat_message("max rumble strength set to "..rumble_strength_max)
|
|
else
|
|
minetest.display_chat_message(minetest.colorize("#FF0", "error: value after .strength should be a positive number"))
|
|
end
|
|
end,
|
|
})
|
|
|
|
minetest.register_chatcommand("duration", {
|
|
description = "set max rumble duration (in seconds)",
|
|
func = function(text)
|
|
if (string.match((text), "^%d+$")) then
|
|
rumble_duration_max = (text)
|
|
minetest.display_chat_message("max rumble duration set to "..rumble_duration_max)
|
|
else
|
|
minetest.display_chat_message(minetest.colorize("#FF0", "error: value after .duration should be a positive number"))
|
|
end
|
|
end,
|
|
})
|
|
|
|
minetest.register_chatcommand("settings", {
|
|
description = "shows current values of settings",
|
|
func = function()
|
|
minetest.display_chat_message("max rumble strength: "..rumble_strength_max)
|
|
minetest.display_chat_message("max rumble duration: "..rumble_duration_max)
|
|
end,
|
|
})
|