-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathinit.lua
More file actions
37 lines (34 loc) · 798 Bytes
/
init.lua
File metadata and controls
37 lines (34 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
multidimensions={
start_y=4000,
max_distance=50, --(50 is 800)
max_distance_chatt=800,
limited_chat=true,
limeted_nametag=true,
remake_home=true,
remake_bed=true,
user={},
player_pos={},
earth = {
above=31000,
under=-31000,
},
craftable_teleporters=true,
registered_dimensions={},
first_dimensions_appear_at = 2000,
calculating_dimensions_from_min_y = 0,
map={
offset=0,
scale=1,
spread={x=100,y=18,z=100},
seeddiff=24,
octaves=5,
persist=0.7,
lacunarity=1,
flags="absvalue",
},
}
dofile(minetest.get_modpath("multidimensions") .. "/api.lua")
if minetest.get_modpath("default") then
dofile(minetest.get_modpath("multidimensions") .. "/dimensions.lua")
end
dofile(minetest.get_modpath("multidimensions") .. "/tools.lua")