mirror of
https://github.com/minetest-mods/technic.git
synced 2024-12-22 05:42:33 +01:00
ui update
This commit is contained in:
parent
cc06004381
commit
d300a54c65
@ -327,6 +327,7 @@ minetest.register_on_player_receive_fields(function(player, formname, fields)
|
||||
end
|
||||
if fields.misc_set_day then
|
||||
if minetest.get_player_privs(player_name).settime==true then
|
||||
minetest.sound_play("birds", {to_player=player_name, gain = 1.0})
|
||||
minetest.env:set_timeofday((6000 % 24000) / 24000)
|
||||
minetest.chat_send_player(player_name, "Time of day set to 6am")
|
||||
else
|
||||
@ -335,6 +336,7 @@ minetest.register_on_player_receive_fields(function(player, formname, fields)
|
||||
end
|
||||
if fields.misc_set_night then
|
||||
if minetest.get_player_privs(player_name).settime==true then
|
||||
minetest.sound_play("owl", {to_player=player_name, gain = 1.0})
|
||||
minetest.env:set_timeofday((21000 % 24000) / 24000)
|
||||
minetest.chat_send_player(player_name, "Time of day set to 9pm")
|
||||
else
|
||||
@ -355,21 +357,27 @@ minetest.register_on_player_receive_fields(function(player, formname, fields)
|
||||
local pagemax = math.floor((unified_inventory.filtered_items_list_size[player_name]-1) / (80) + 1)
|
||||
|
||||
if fields.start_list then
|
||||
minetest.sound_play("click", {to_player=player_name, gain = 1.0})
|
||||
start_i = 1
|
||||
end
|
||||
if fields.rewind1 then
|
||||
minetest.sound_play("click", {to_player=player_name, gain = 1.0})
|
||||
start_i = start_i - 1
|
||||
end
|
||||
if fields.forward1 then
|
||||
minetest.sound_play("click", {to_player=player_name, gain = 1.0})
|
||||
start_i = start_i + 1
|
||||
end
|
||||
if fields.rewind3 then
|
||||
minetest.sound_play("click", {to_player=player_name, gain = 1.0})
|
||||
start_i = start_i - 3
|
||||
end
|
||||
if fields.forward3 then
|
||||
minetest.sound_play("click", {to_player=player_name, gain = 1.0})
|
||||
start_i = start_i + 3
|
||||
end
|
||||
if fields.end_list then
|
||||
minetest.sound_play("click", {to_player=player_name, gain = 1.0})
|
||||
start_i = pagemax
|
||||
end
|
||||
if start_i < 1 then
|
||||
@ -389,6 +397,7 @@ minetest.register_on_player_receive_fields(function(player, formname, fields)
|
||||
for i=0,80,1 do
|
||||
local button="item_button"..list_index
|
||||
if fields[button] then
|
||||
minetest.sound_play("click", {to_player=player_name, gain = 1.0})
|
||||
if minetest.setting_getbool("creative_mode")==false then
|
||||
unified_inventory.set_inventory_formspec(player, unified_inventory.get_formspec(player,"craftguide"))
|
||||
page="craftguide"
|
||||
|
BIN
unified_inventory/sounds/birds.ogg
Normal file
BIN
unified_inventory/sounds/birds.ogg
Normal file
Binary file not shown.
BIN
unified_inventory/sounds/click.ogg
Normal file
BIN
unified_inventory/sounds/click.ogg
Normal file
Binary file not shown.
BIN
unified_inventory/sounds/owl.ogg
Normal file
BIN
unified_inventory/sounds/owl.ogg
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user