title dark_red instead red

fancyshop
Freeman 2 years ago
parent 3070c3f0ca
commit 305e26b750

@ -51,7 +51,7 @@ function emeraldbank.keep(player, itemstack)
emeraldbank.add_emeralds(player, itemcount*9) emeraldbank.add_emeralds(player, itemcount*9)
return true return true
end end
mcl_title.set(player, "actionbar", {text=S("You need keep emeralds or emeraldblocks in your hand!"), color="red"}) mcl_title.set(player, "actionbar", {text=S("You need keep emeralds or emeraldblocks in your hand!"), color="dark_red"})
return false return false
end end
@ -69,7 +69,7 @@ function emeraldbank.take(player)
core.add_item(pos, "mcl_core:emerald "..num) core.add_item(pos, "mcl_core:emerald "..num)
return true return true
end end
mcl_title.set(player, "actionbar", {text=S("Not enough Emeralds in your account"), color="red"}) mcl_title.set(player, "actionbar", {text=S("Not enough Emeralds in your account"), color="dark_red"})
return false return false
end end

@ -298,7 +298,7 @@ core.register_on_player_receive_fields(function(sender, formname, fields)
-- owner try exchanges -- owner try exchanges
if meta:get_string("owner") == name then if meta:get_string("owner") == name then
mcl_title.set(sender, "subtitle", {text=S("This is your own shop, you can't exchange to yourself!"), color="red"}) mcl_title.set(sender, "subtitle", {text=S("This is your own shop, you can't exchange to yourself!"), color="dark_red"})
else else
@ -307,13 +307,13 @@ core.register_on_player_receive_fields(function(sender, formname, fields)
-- have u money? -- have u money?
if bankemeralds < old_price then if bankemeralds < old_price then
can_exchange = false can_exchange = false
mcl_title.set(sender, "subtitle", {text=S("Not enough Emeralds in your account"), color="red"}) mcl_title.set(sender, "subtitle", {text=S("Not enough Emeralds in your account"), color="dark_red"})
end end
--there are enough items? --there are enough items?
if not minv:contains_item("stock", shop_item.." "..old_count, true) then if not minv:contains_item("stock", shop_item.." "..old_count, true) then
can_exchange = false can_exchange = false
mcl_title.set(sender, "subtitle", {text=S("Out of Stock!"), color="red"}) mcl_title.set(sender, "subtitle", {text=S("Out of Stock!"), color="dark_red"})
end end
-- do not trade air -- do not trade air
@ -326,7 +326,7 @@ core.register_on_player_receive_fields(function(sender, formname, fields)
core.add_item(player_pos, shop_item.." "..old_count) core.add_item(player_pos, shop_item.." "..old_count)
emeraldbank.add_emeralds(sender, -old_price) emeraldbank.add_emeralds(sender, -old_price)
meta:set_int("stonks", meta:get_int("stonks")+old_price) meta:set_int("stonks", meta:get_int("stonks")+old_price)
core.chat_send_player(name, S("Exchanged!")) mcl_title.set(sender, "subtitle", {text=S("Exchanged!"), color="green"})
check_empty(pos) check_empty(pos)
core.show_formspec(sender:get_player_name(), formspec_prefix..core.pos_to_string(pos), emeraldbank.get_shop_fs(pos, sender) ) core.show_formspec(sender:get_player_name(), formspec_prefix..core.pos_to_string(pos), emeraldbank.get_shop_fs(pos, sender) )
end end

Loading…
Cancel
Save