Sword marker: Decrease cooldowns, fix trivial bug (#826)
* Improve sword markers * Fix timer * checks every 2 seconds * Edit string sent to chat * Clean up and increase sword special cooldown Co-authored-by: LoneWolfHT <lonewolf04361@gmail.com>
This commit is contained in:
parent
6fb0510b73
commit
723301dd12
1 changed files with 7 additions and 7 deletions
|
@ -29,12 +29,12 @@ end, true)
|
||||||
|
|
||||||
|
|
||||||
local sword_special_timer = {}
|
local sword_special_timer = {}
|
||||||
local SWORD_SPECIAL_COOLDOWN = 40
|
local SWORD_SPECIAL_COOLDOWN = 20
|
||||||
local function sword_special_timer_func(pname, timeleft)
|
local function sword_special_timer_func(pname, timeleft)
|
||||||
sword_special_timer[pname] = timeleft
|
sword_special_timer[pname] = timeleft
|
||||||
|
|
||||||
if timeleft - 10 >= 0 then
|
if timeleft - 2 >= 0 then
|
||||||
minetest.after(10, sword_special_timer_func, pname, timeleft - 10)
|
minetest.after(2, sword_special_timer_func, pname, timeleft - 2)
|
||||||
else
|
else
|
||||||
sword_special_timer[pname] = nil
|
sword_special_timer[pname] = nil
|
||||||
end
|
end
|
||||||
|
@ -57,8 +57,8 @@ minetest.register_tool("ctf_classes:sword_bronze", {
|
||||||
local pname = placer:get_player_name()
|
local pname = placer:get_player_name()
|
||||||
if not pointed_thing then return end
|
if not pointed_thing then return end
|
||||||
|
|
||||||
if sword_special_timer[pname] then
|
if sword_special_timer[pname] and placer:get_player_control().sneak then
|
||||||
minetest.chat_send_player(pname, "You can't place a marker yet (>"..sword_special_timer[pname].."s left)")
|
minetest.chat_send_player(pname, "You have to wait "..sword_special_timer[pname].."s to place marker again")
|
||||||
|
|
||||||
if pointed_thing.type == "node" then
|
if pointed_thing.type == "node" then
|
||||||
return minetest.item_place(itemstack, placer, pointed_thing)
|
return minetest.item_place(itemstack, placer, pointed_thing)
|
||||||
|
@ -102,8 +102,8 @@ minetest.register_tool("ctf_classes:sword_bronze", {
|
||||||
-- Check if player is sneaking before placing marker
|
-- Check if player is sneaking before placing marker
|
||||||
if not placer:get_player_control().sneak then return end
|
if not placer:get_player_control().sneak then return end
|
||||||
|
|
||||||
sword_special_timer[pname] = 20
|
sword_special_timer[pname] = 4
|
||||||
sword_special_timer_func(pname, 20)
|
sword_special_timer_func(pname, 4)
|
||||||
|
|
||||||
minetest.registered_chatcommands["m"].func(pname, "placed with sword")
|
minetest.registered_chatcommands["m"].func(pname, "placed with sword")
|
||||||
end,
|
end,
|
||||||
|
|
Loading…
Reference in a new issue