2021-05-29 14:12:33 +00:00
local S = minetest.get_translator ( minetest.get_current_modname ( ) )
2020-08-10 08:40:10 +00:00
-- ░█████╗░██╗░░██╗░█████╗░████████╗ ░█████╗░░█████╗░███╗░░░███╗███╗░░░███╗░█████╗░███╗░░██╗██████╗░░██████╗
-- ██╔══██╗██║░░██║██╔══██╗╚══██╔══╝ ██╔══██╗██╔══██╗████╗░████║████╗░████║██╔══██╗████╗░██║██╔══██╗██╔════╝
-- ██║░░╚═╝███████║███████║░░░██║░░░ ██║░░╚═╝██║░░██║██╔████╔██║██╔████╔██║███████║██╔██╗██║██║░░██║╚█████╗░
-- ██║░░██╗██╔══██║██╔══██║░░░██║░░░ ██║░░██╗██║░░██║██║╚██╔╝██║██║╚██╔╝██║██╔══██║██║╚████║██║░░██║░╚═══██╗
-- ╚█████╔╝██║░░██║██║░░██║░░░██║░░░ ╚█████╔╝╚█████╔╝██║░╚═╝░██║██║░╚═╝░██║██║░░██║██║░╚███║██████╔╝██████╔╝
-- ░╚════╝░╚═╝░░╚═╝╚═╝░░╚═╝░░░╚═╝░░░ ░╚════╝░░╚════╝░╚═╝░░░░░╚═╝╚═╝░░░░░╚═╝╚═╝░░╚═╝╚═╝░░╚══╝╚═════╝░╚═════╝░
minetest.register_chatcommand ( " effect " , {
2023-10-12 21:51:14 +00:00
params = S ( " <effect>|heal|list <duration|heal-amount> [<level>] [<factor>] " ) ,
description = S ( " Add a status effect to yourself. Arguments: <effect>: name of status effect, e.g. poison. Passing list as effect name lists available effects. Passing heal as effect name heals (or harms) by amount designed by the next parameter. <duration>: duration in seconds. (<heal-amount>: amount of healing when the effect is heal, passing a negative value subtracts health.) <level>: effect power determinant, bigger level results in more powerful effect for effects that depend on the level, defaults to 1, pass F to use low-level factor instead. <factor>: effect strength modifier, can mean different things depending on the effect. " ) ,
2020-08-10 08:40:10 +00:00
privs = { server = true } ,
func = function ( name , params )
local P = { }
local i = 0
for str in string.gmatch ( params , " ([^ ]+) " ) do
i = i + 1
P [ i ] = str
end
if not P [ 1 ] then
return false , S ( " Missing effect parameter! " )
2023-10-09 23:07:26 +00:00
elseif P [ 1 ] == " list " then
local regs = mcl_potions.get_registered_effects ( )
local effects = " heal "
for name , _ in pairs ( regs ) do
effects = effects .. " , " .. name
end
return true , effects
2023-10-12 21:51:14 +00:00
elseif P [ 1 ] == " heal " then
local hp = tonumber ( P [ 2 ] )
if not hp or hp == 0 then
return false , S ( " Missing or invalid heal amount parameter! " )
else
mcl_potions.healing_func ( minetest.get_player_by_name ( name ) , hp )
if hp > 0 then
if hp < 1 then hp = 1 end
return true , S ( " Player @1 healed by @2 HP. " , name , hp )
else
if hp > - 1 then hp = - 1 end
return true , S ( " Player @1 harmed by @2 HP. " , name , hp )
end
end
elseif not tonumber ( P [ 2 ] ) then
2020-08-10 08:40:10 +00:00
return false , S ( " Missing or invalid duration parameter! " )
2023-10-09 23:07:26 +00:00
elseif P [ 3 ] and not tonumber ( P [ 3 ] ) and P [ 3 ] ~= " F " then
return false , S ( " Invalid level parameter! " )
elseif P [ 3 ] and P [ 3 ] == " F " and not P [ 4 ] then
return false , S ( " Missing or invalid factor parameter when level is F! " )
2020-08-10 08:40:10 +00:00
end
2023-10-09 23:07:26 +00:00
-- Default level = 1
2020-08-10 08:40:10 +00:00
if not P [ 3 ] then
2023-10-09 23:07:26 +00:00
P [ 3 ] = 1
2020-08-10 08:40:10 +00:00
end
2023-10-09 23:07:26 +00:00
if mcl_potions.is_effect_registered ( P [ 1 ] ) then
if P [ 3 ] == " F " then
local given = mcl_potions.give_effect ( P [ 1 ] , minetest.get_player_by_name ( name ) , tonumber ( P [ 4 ] ) , tonumber ( P [ 2 ] ) )
if given then
return true , S ( " @1 effect given to player @2 for @3 seconds with factor of @4. " , P [ 1 ] , name , P [ 2 ] , P [ 4 ] )
else
return false , S ( " Giving effect @1 to player @2 failed. " , P [ 1 ] , name )
end
else
local given = mcl_potions.give_effect_by_level ( P [ 1 ] , minetest.get_player_by_name ( name ) , tonumber ( P [ 3 ] ) , tonumber ( P [ 2 ] ) )
if given then
return true , S ( " @1 effect on level @2 given to player @3 for @4 seconds. " , P [ 1 ] , P [ 3 ] , name , P [ 2 ] )
else
return false , S ( " Giving effect @1 to player @2 failed. " , P [ 1 ] , name )
end
end
2020-08-10 08:40:10 +00:00
else
2020-08-10 08:44:57 +00:00
return false , S ( " @1 is not an available status effect. " , P [ 1 ] )
2020-08-10 08:40:10 +00:00
end
end ,
} )
2023-10-09 23:07:26 +00:00