forked from ac-minetest/basic_robot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.default.lua
22 lines (19 loc) · 1.11 KB
/
settings.default.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
basic_robot.call_limit = 48 -- how many execution calls per script run allowed
basic_robot.entry_count = 2 -- how many robots ordinary player can have
basic_robot.advanced_count = 16 -- how many robots player with robot privs can have
basic_robot.radius = 32 -- divide whole world into blocks of this size - used for managing events like keyboard punches
basic_robot.password = "password" -- IMPORTANT: change it before running mod, password used for authentifications
basic_robot.bad_inventory_blocks = { -- disallow taking from these nodes inventories to prevent player abuses
["craft_guide:sign_wall"] = true,
}
basic_robot.maxoperations = 3 -- how many operations (dig, generate energy,..) available per run, 0 = unlimited
basic_robot.dig_require_energy = true -- does robot require energy to dig?
basic_robot.control_recipe = {
{"default:stick"},
{"default:mese_crystal"}
}
basic_robot.spawner_recipe = {
{"default:mese_crystal", "default:mese_crystal", "default:mese_crystal"},
{"default:mese_crystal", "default:mese_crystal", "default:mese_crystal"},
{"default:stone", "default:steel_ingot", "default:stone"}
}