First Upload

master
DonBatman 2016-04-10 16:07:47 -07:00
commit 80555b1f92
11 changed files with 956 additions and 0 deletions

332
init.lua Normal file
View File

@ -0,0 +1,332 @@
-- Portal Particles
local function parti(pos)
minetest.add_particlespawner(50, 0.4,
{x=pos.x + 0.5, y=pos.y, z=pos.z + 0.5}, {x=pos.x - 0.5, y=pos.y, z=pos.z - 0.5},
{x=0, y=5, z=0}, {x=0, y=0, z=0},
{x=0, y=5, z=0}, {x=0, y=0, z=0},
3, 5,
3, 5,
false,
"myminegate_portal_parti.png")
end
-- Player Particles
local function parti2(pos)
minetest.add_particlespawner(50, 0.4,
{x=pos.x + 0.5, y=pos.y + 10, z=pos.z + 0.5}, {x=pos.x - 0.5, y=pos.y, z=pos.z - 0.5},
{x=0, y=-5, z=0}, {x=0, y=0, z=0},
{x=0, y=-5, z=0}, {x=0, y=0, z=0},
3, 5,
3, 5,
false,
"myminegate_portal_parti.png")
end
-- Portal Formspec
local function show_form(placer)
minetest.show_formspec(placer:get_player_name(),"portal_fs",
"size[4.5,6;]"..
"background[-0.5,-0.5;5.5,7;myminegate_bg.png]"..
"field[1,1.5;1,1;px;x;]"..
"field[2,1.5;1,1;py;y;]"..
"field[3,1.5;1,1;pz;z;]"..
"label[0.5,2.5;Put a portal at the other location?]"..
"dropdown[1.25,3;2,1;yn;Yes,No;]"..
"button_exit[1.25,4;2,1;set;Set]")
end
minetest.register_node("myminegate:portal_placer", {
description = "Portal Placer",
tiles = {
"myminegate_metal.png"
},
drawtype = "normal",
paramtype = "light",
paramtype2 = "facedir",
groups = {cracky = 2},
on_place = function(itemstack, placer, pointed_thing)
local pos = pointed_thing.above
local meta = minetest.get_meta(pos)
local par = minetest.get_node(pos).param2
local schem = minetest.get_modpath("myminegate").."/schems/myminegate_portal.mts"
local rot = 0
local dir = minetest.dir_to_facedir(placer:get_look_dir())
-- Sets Schematic in the right place
local tpos = {}
local rot = ""
if dir == 0 then rot = "90" tpos = {x = pos.x - 1, y = pos.y, z = pos.z}
elseif dir == 1 then rot = "0" tpos = {x = pos.x, y = pos.y, z = pos.z - 1}
elseif dir == 2 then rot = "90" tpos = {x = pos.x - 1, y = pos.y, z = pos.z}
elseif dir == 3 then rot = "0" tpos = {x = pos.x, y = pos.y, z = pos.z - 1}
elseif dir >= 4 then rot = "0" tpos = {x = pos.x, y = pos.y, z = pos.z - 1}
end
minetest.place_schematic(tpos,schem,rot, "air", true)
show_form(placer)
minetest.register_on_player_receive_fields(function(player, portal_fs, fields)
if fields["px"]
and fields["py"]
and fields["pz"]
and fields["yn"]
and fields["set"] then
if fields["set"] then
if fields["set"] then
meta:set_string("posx",fields["px"])
meta:set_string("posy",fields["py"])
meta:set_string("posz",fields["pz"])
end
if fields["yn"] == "Yes" then
-- checks for number or nil
local a = fields["px"]
local b = fields["py"]
local c = fields["pz"]
local px = string.match(a,"^(-?%d+)")
local py = string.match(b,"^(-?%d+)")
local pz = string.match(c,"^(-?%d+)")
-- change strings to number
px = tonumber(px)
py = tonumber(py)
pz = tonumber(pz)
if px and py and pz then
-- make sure it is in map limits
if px < -30000 or py < -30000 or pz < -30000 or
px > 30000 or py > 30000 or pz > 30000 then
minetest.chat_send_player(placer:get_player_name(),
"Needs to be numbers between -30000 and 30000")
show_form(placer)
end
local npos = {x = px, y = py, z = pz} -- this is the position of the second portal
minetest.forceload_block(npos) -- Load block at new location
-- check to make sure there is a 3 x 3 x 3 air at new location
local _, counts = minetest.find_nodes_in_area({x=npos.x-1, y=npos.y+1, z=npos.z-1},
{x = npos.x+1, y=npos.y+3, z = npos.z+1}, {"air","ignore"})
local air_count = counts.ignore + counts.air
if npos and
air_count == 27 then
local mdir = minetest.get_node(pos).param2
local mpos = {}
if mdir == 0 then mpos = {x = npos.x , y = npos.y, z = npos.z + 1}
elseif mdir == 1 then mpos = {x = npos.x + 1, y = npos.y, z = npos.z}
elseif mdir == 2 then mpos = {x = npos.x, y = npos.y, z = npos.z + 1}
elseif mdir == 3 then mpos = {x = npos.x + 1, y = npos.y, z = npos.z}
end
minetest.place_schematic(npos,schem,rot, "air", true)
local m = minetest.get_meta({x = mpos.x , y = mpos.y, z = mpos.z})
minetest.after(0.5, function()
m:set_string("posx",tostring(pos.x))
m:set_string("posy",tostring(pos.y))
m:set_string("posz",tostring(pos.z))
meta:set_string("dr",mdir)
end)
else
minetest.chat_send_player(placer:get_player_name(),
"not enough room there")
show_form(placer)
end
return true
else
minetest.chat_send_player(placer:get_player_name(),
"Needs to be numbers between -30000 and 30000")
show_form(placer)
end
end
end
end
end) -- ends recieve_fields
end, -- end on_place
})
local pwc_box = {
type = "fixed",
fixed = {
{-0.3125,-0.5,-1.5,0.3125,-0.25,1.5},
{-0.3125,2.25,-1.5,0.3125,2.5,1.5},}}
-- Portal with center
minetest.register_node("myminegate:portal", {
description = "portal",
drawtype = "mesh",
mesh = "myminegate_portal_gate.obj",
tiles = {"myminegate_portal_gate.png"},
paramtype = "light",
paramtype2 = "facedir",
pointable = false,
walkable = true,
drop = "",
groups = {cracky = 2,not_in_creative_inventory = 0},
selection_box = pwc_box,
collision_box = pwc_box,
})
local pnc_box = {
type = "fixed",
fixed = {
{-1.5,-1.5,-0.5,1.5,1.5,0.5},}}
-- Portal without Center
minetest.register_node("myminegate:portal2", {
description = "portal",
drawtype = "mesh",
mesh = "myminegate_portal_gate.obj",
tiles = {"myminegate_portal_gate.png"},
paramtype = "light",
paramtype2 = "facedir",
walkable = true,
drop = "",
groups = {cracky = 2,not_in_creative_inventory = 1},
selection_box = pnc_box,
collision_box = pnc_box,
})
minetest.register_node("myminegate:center", {
description = "center",
tiles = {{name="myminegate_ani_blue.png",
animation={type="vertical_frames",aspect_w=16, aspect_h=16, length=0.5}}},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
post_effect_color = { r=3, g=42, b=50, a=255 },
walkable = false,
drop = "",
light_source = 14,
groups = {cracky = 2,not_in_creative_inventory = 0},
node_box = {
type = "fixed",
fixed = {
{-0.45, -1.25, -0.3125, 0.45, 0.5, 0.3125},
{-1.25, -0.45, -0.3125, 1.25, 0.5, 0.3125},
{-0.9, -1, -0.3125, 0.9, 0.5, 0.3125},
{-0.65, -1.25, -0.3125, 0.65, 0.5, 0.3125},
{-1.15, -0.75, -0.3125, 1.15, 0.5, 0.3125},
}
},
selection_box = pnc_box,
collision_box = pnc_box,
on_destruct = function(pos)
local p = minetest.find_nodes_in_area({x=pos.x-2, y=pos.y-2, z=pos.z-2},
{x=pos.x+2, y=pos.y+2, z=pos.z+2},
{"myminegate:portal","myminegate:portal2","myminegate:centerb","myminegate:hidden"})
for _,ps in ipairs(p) do
minetest.remove_node(ps)
end
end,
})
minetest.register_node("myminegate:centerb", {
description = "center",
tiles = {{name="myminegate_ani_blue.png",
animation={type="vertical_frames",aspect_w=16, aspect_h=16, length=0.5}}},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
post_effect_color = { r=3, g=42, b=50, a=250 },
pointable = false,
drop = "",
light_source = 14,
groups = {cracky = 2,not_in_creative_inventory = 0},
node_box = {
type = "fixed",
fixed = {
{-0.45, -0.5, -0.3125, 0.45, 0.25, 0.3125},
{-0.9, -0.5, -0.3125, 0.9, 0, 0.3125},
{-0.65, -0.5, -0.3125, 0.65, 0.25, 0.3125},
{-1.15, -0.5, -0.3125, 1.15, -0.25, 0.3125},
}
},
selection_box = {
type = "fixed",
fixed = {
{-1.5, 2.25, -0.3125, 1.5, 2.5, 0.3125},
}
},
collision_box = {
type = "fixed",
fixed = {
{-1.5, 2.25, -0.3125, 1.5, 2.5, 0.3125},
}
},
})
minetest.register_node("myminegate:hidden", {
description = "hidden",
tiles = {"myminegate_hidden.png"},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
pointable = false,
drop = "",
groups = {cracky = 2,not_in_creative_inventory = 0},
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, 0.25, 0.5, 0.5},
}
}
})
---[[
minetest.register_abm({
nodenames = {"myminegate:center"},
interval = 0.5,
chance = 1,
action = function(pos, node, active_object_count, active_object_count_wider)
local spawn_spot = {}
local meta = minetest.get_meta({x = pos.x, y = pos.y - 1, z = pos.z})
local p1 = tonumber(meta:get_string("posx")) or pos.x
local p2 = tonumber(meta:get_string("posy")) or pos.y
local p3 = tonumber(meta:get_string("posz")) or pos.z + 3
local par = tonumber(meta:get_string("dr")) or 0
spawn_spot = {x=p1, y=p2, z=p3}
local objs = minetest.get_objects_inside_radius({x = pos.x, y = pos.y - 1, z = pos.z}, 1)
for k, player in pairs(objs) do
if player:get_player_name() then
if minetest.get_player_privs(player:get_player_name()).interact == true then
if par == 0 or par == 2 then
spawn_spot.x = spawn_spot.x+2
elseif par == 1 or par == 3 then
spawn_spot.z = spawn_spot.z+2
end
parti(pos)
player:setpos(spawn_spot)
parti2(spawn_spot)
end
end
end
end
})
--]]

BIN
models/Stargate.blend Normal file

Binary file not shown.

View File

@ -0,0 +1,624 @@
# Blender v2.77 (sub 0) OBJ File: 'Stargate.blend'
# www.blender.org
o Stargate_Circle.002
v -0.500000 2.500000 0.160000
v -0.450000 2.200000 0.050000
v -0.500000 2.500000 -0.160000
v -0.450000 2.200000 -0.050000
v 0.500000 2.500000 0.160000
v 0.450000 2.200000 0.050000
v 0.500000 2.500000 -0.160000
v 0.450000 2.200000 -0.050000
v -0.500000 2.251913 -0.841614
v -0.450000 1.951393 -0.733043
v -0.500000 2.046221 -1.086748
v -0.450000 1.887114 -0.809647
v 0.500000 2.251913 -0.841614
v 0.450000 1.951393 -0.733043
v 0.500000 2.046221 -1.086749
v 0.450000 1.887114 -0.809648
v -0.500000 1.418042 -1.449428
v -0.450000 1.257618 -1.173087
v -0.500000 1.102903 -1.504995
v -0.450000 1.159138 -1.190452
v 0.500000 1.418042 -1.449428
v 0.450000 1.257618 -1.173087
v 0.500000 1.102903 -1.504996
v 0.450000 1.159138 -1.190452
v -0.500000 0.388564 -1.379038
v -0.450000 0.443301 -1.064231
v -0.500000 0.111436 -1.219038
v -0.450000 0.356699 -1.014231
v 0.500000 0.388564 -1.379039
v 0.450000 0.443301 -1.064231
v 0.500000 0.111436 -1.219039
v 0.450000 0.356699 -1.014231
v -0.500000 -0.354816 -0.663381
v -0.450000 -0.110530 -0.457409
v -0.500000 -0.464262 -0.362680
v -0.450000 -0.144732 -0.363440
v 0.500000 -0.354816 -0.663382
v 0.450000 -0.110530 -0.457409
v 0.500000 -0.464262 -0.362680
v 0.450000 -0.144733 -0.363440
v -0.500000 -0.464262 0.362679
v -0.450000 -0.144732 0.363439
v -0.500000 -0.354816 0.663381
v -0.450000 -0.110530 0.457409
v 0.500000 -0.464263 0.362679
v 0.450000 -0.144733 0.363439
v 0.500000 -0.354816 0.663381
v 0.450000 -0.110531 0.457409
v -0.500000 0.111435 1.219038
v -0.450000 0.356698 1.014230
v -0.500000 0.388563 1.379038
v -0.450000 0.443301 1.064230
v 0.500000 0.111435 1.219038
v 0.450000 0.356698 1.014231
v 0.500000 0.388563 1.379038
v 0.450000 0.443301 1.064231
v -0.500000 1.102902 1.504996
v -0.450000 1.159137 1.190452
v -0.500000 1.418041 1.449428
v -0.450000 1.257618 1.173087
v 0.500000 1.102902 1.504996
v 0.450000 1.159137 1.190452
v 0.500000 1.418041 1.449429
v 0.450000 1.257618 1.173088
v -0.500000 2.046220 1.086749
v -0.450000 1.887114 0.809648
v -0.500000 2.251913 0.841615
v -0.450000 1.951392 0.733044
v 0.500000 2.046220 1.086750
v 0.450000 1.887114 0.809648
v 0.500000 2.251913 0.841615
v 0.450000 1.951393 0.733044
v -0.360000 1.000000 -1.500000
v -0.360000 1.513030 -1.409539
v -0.360000 1.964181 -1.149067
v -0.360000 2.299038 -0.750000
v -0.360000 2.477211 -0.260472
v -0.360000 2.477211 0.260472
v -0.360000 2.299038 0.750000
v -0.360000 1.964181 1.149067
v -0.360000 1.513030 1.409539
v -0.360000 1.000000 1.500000
v -0.360000 0.486970 1.409539
v -0.360000 0.035819 1.149067
v -0.360000 -0.299038 0.750000
v -0.360000 -0.477211 0.260473
v -0.360000 -0.477212 -0.260472
v -0.360000 -0.299038 -0.749999
v -0.360000 0.035818 -1.149066
v -0.360000 0.486969 -1.409539
v -0.360000 1.000000 -1.090005
v -0.360000 1.372804 -1.024270
v -0.360000 1.700642 -0.834992
v -0.360000 1.943972 -0.545002
v -0.360000 2.073445 -0.189277
v -0.360000 2.073445 0.189278
v -0.360000 1.943972 0.545003
v -0.360000 1.700642 0.834992
v -0.360000 1.372804 1.024270
v -0.360000 1.000000 1.090005
v -0.360000 0.627197 1.024270
v -0.360000 0.299359 0.834992
v -0.360000 0.056028 0.545003
v -0.360000 -0.073445 0.189278
v -0.360000 -0.073445 -0.189277
v -0.360000 0.056028 -0.545002
v -0.360000 0.299358 -0.834992
v -0.360000 0.627196 -1.024269
v 0.360000 1.000000 -1.500000
v 0.360000 1.513030 -1.409539
v 0.360000 1.964181 -1.149067
v 0.360000 2.299038 -0.750000
v 0.360000 2.477211 -0.260472
v 0.360000 2.477211 0.260472
v 0.360000 2.299038 0.750000
v 0.360000 1.964181 1.149067
v 0.360000 1.513030 1.409539
v 0.360000 1.000000 1.500000
v 0.360000 0.486970 1.409539
v 0.360000 0.035819 1.149067
v 0.360000 -0.299038 0.750000
v 0.360000 -0.477211 0.260473
v 0.360000 -0.477212 -0.260472
v 0.360000 -0.299038 -0.749999
v 0.360000 0.035818 -1.149066
v 0.360000 0.486969 -1.409539
v 0.360000 1.000000 -1.090005
v 0.360000 1.372804 -1.024270
v 0.360000 1.700642 -0.834992
v 0.360000 1.943972 -0.545002
v 0.360000 2.073445 -0.189277
v 0.360000 2.073445 0.189278
v 0.360000 1.943972 0.545003
v 0.360000 1.700642 0.834992
v 0.360000 1.372804 1.024270
v 0.360000 1.000000 1.090005
v 0.360000 0.627197 1.024270
v 0.360000 0.299359 0.834992
v 0.360000 0.056028 0.545003
v 0.360000 -0.073445 0.189278
v 0.360000 -0.073445 -0.189277
v 0.360000 0.056028 -0.545002
v 0.360000 0.299358 -0.834992
v 0.360000 0.627196 -1.024269
vt 0.9062 0.6562
vt 0.8281 0.6562
vt 0.8438 0.5781
vt 0.8906 0.5781
vt 0.9062 0.9219
vt 0.8906 1.0000
vt 0.8438 1.0000
vt 0.8281 0.9219
vt 0.7188 0.6562
vt 0.7656 0.6562
vt 0.7656 0.9219
vt 0.7188 0.9219
vt 0.9844 0.6562
vt 0.9844 0.9219
vt 0.9062 0.6562
vt 0.8281 0.6562
vt 0.8438 0.5781
vt 0.8906 0.5781
vt 0.9062 0.9219
vt 0.8906 1.0000
vt 0.8438 1.0000
vt 0.8281 0.9219
vt 0.7188 0.6562
vt 0.7656 0.6562
vt 0.7656 0.9219
vt 0.7188 0.9219
vt 0.9844 0.6562
vt 0.9844 0.9219
vt 0.9062 0.6562
vt 0.8281 0.6562
vt 0.8438 0.5781
vt 0.8906 0.5781
vt 0.9062 0.9219
vt 0.8906 1.0000
vt 0.8438 1.0000
vt 0.8281 0.9219
vt 0.7188 0.6562
vt 0.7656 0.6562
vt 0.7656 0.9219
vt 0.7188 0.9219
vt 0.9844 0.6562
vt 0.9844 0.9219
vt 0.9062 0.6562
vt 0.8281 0.6562
vt 0.8438 0.5781
vt 0.8906 0.5781
vt 0.9062 0.9219
vt 0.8906 1.0000
vt 0.8438 1.0000
vt 0.8281 0.9219
vt 0.7188 0.6562
vt 0.7656 0.6562
vt 0.7656 0.9219
vt 0.7188 0.9219
vt 0.9844 0.6562
vt 0.9844 0.9219
vt 0.9062 0.6562
vt 0.8281 0.6562
vt 0.8438 0.5781
vt 0.8906 0.5781
vt 0.9062 0.9219
vt 0.8906 1.0000
vt 0.8438 1.0000
vt 0.8281 0.9219
vt 0.7188 0.6562
vt 0.7656 0.6562
vt 0.7656 0.9219
vt 0.7188 0.9219
vt 0.9844 0.6562
vt 0.9844 0.9219
vt 0.9062 0.6562
vt 0.8281 0.6562
vt 0.8438 0.5781
vt 0.8906 0.5781
vt 0.9062 0.9219
vt 0.8906 1.0000
vt 0.8438 1.0000
vt 0.8281 0.9219
vt 0.7188 0.6562
vt 0.7656 0.6562
vt 0.7656 0.9219
vt 0.7188 0.9219
vt 0.9844 0.6562
vt 0.9844 0.9219
vt 0.9062 0.6562
vt 0.8281 0.6562
vt 0.8438 0.5781
vt 0.8906 0.5781
vt 0.9062 0.9219
vt 0.8906 1.0000
vt 0.8438 1.0000
vt 0.8281 0.9219
vt 0.7188 0.6562
vt 0.7656 0.6562
vt 0.7656 0.9219
vt 0.7188 0.9219
vt 0.9844 0.6562
vt 0.9844 0.9219
vt 0.9062 0.6562
vt 0.8281 0.6562
vt 0.8438 0.5781
vt 0.8906 0.5781
vt 0.9062 0.9219
vt 0.8906 1.0000
vt 0.8438 1.0000
vt 0.8281 0.9219
vt 0.7188 0.6562
vt 0.7656 0.6562
vt 0.7656 0.9219
vt 0.7188 0.9219
vt 0.9844 0.6562
vt 0.9844 0.9219
vt 0.9062 0.6562
vt 0.8281 0.6562
vt 0.8438 0.5781
vt 0.8906 0.5781
vt 0.9062 0.9219
vt 0.8906 1.0000
vt 0.8438 1.0000
vt 0.8281 0.9219
vt 0.7188 0.6562
vt 0.7656 0.6562
vt 0.7656 0.9219
vt 0.7188 0.9219
vt 0.9844 0.6562
vt 0.9844 0.9219
vt 0.6709 0.1309
vt 0.5928 0.1992
vt 0.5186 0.1377
vt 0.5703 0.0459
vt 0.3135 0.7549
vt 0.3320 0.6514
vt 0.4287 0.6514
vt 0.4463 0.7549
vt 0.4287 0.1035
vt 0.4463 0.0000
vt 0.5186 0.6182
vt 0.5703 0.7090
vt 0.3320 0.1035
vt 0.3135 0.0000
vt 0.5928 0.5557
vt 0.6709 0.6240
vt 0.2432 0.1377
vt 0.1904 0.0459
vt 0.6387 0.4727
vt 0.7373 0.5088
vt 0.0000 0.3779
vt 0.1045 0.3779
vt 0.1211 0.4727
vt 0.0225 0.5088
vt 0.1670 0.1992
vt 0.0889 0.1309
vt 0.6562 0.3779
vt 0.7598 0.3779
vt 0.1670 0.5557
vt 0.0889 0.6240
vt 0.1211 0.2822
vt 0.0225 0.2461
vt 0.6387 0.2822
vt 0.7373 0.2461
vt 0.2432 0.6182
vt 0.1904 0.7090
vt 0.0889 0.1309
vt 0.1904 0.0459
vt 0.2432 0.1377
vt 0.1670 0.1992
vt 0.4463 0.7549
vt 0.3135 0.7549
vt 0.3320 0.6514
vt 0.4287 0.6514
vt 0.3135 0.0000
vt 0.3320 0.1035
vt 0.1904 0.7090
vt 0.2432 0.6182
vt 0.4463 0.0000
vt 0.4287 0.1035
vt 0.0889 0.6240
vt 0.1670 0.5557
vt 0.5703 0.0459
vt 0.5186 0.1377
vt 0.0225 0.5088
vt 0.1211 0.4727
vt 0.7598 0.3779
vt 0.7373 0.5088
vt 0.6387 0.4727
vt 0.6562 0.3779
vt 0.6709 0.1309
vt 0.5928 0.1992
vt 0.0000 0.3779
vt 0.1045 0.3779
vt 0.6709 0.6240
vt 0.5928 0.5557
vt 0.7373 0.2461
vt 0.6387 0.2822
vt 0.0225 0.2461
vt 0.1211 0.2822
vt 0.5703 0.7090
vt 0.5186 0.6182
vt 0.7969 0.2969
vt 0.7969 0.2031
vt 0.9844 0.2031
vt 0.9844 0.2969
vt 0.1406 0.8125
vt 0.2656 0.8125
vt 0.2656 0.9844
vt 0.1406 0.9844
vt 0.7969 0.2031
vt 0.7969 0.1094
vt 0.9844 0.1094
vt 0.9844 0.2031
vt 0.7969 0.1094
vt 0.7969 0.0156
vt 0.9844 0.0156
vt 0.9844 0.1094
vt 0.3906 0.8125
vt 0.3906 0.9844
vt 0.7969 0.2969
vt 0.9844 0.2969
vt 0.7969 0.2031
vt 0.9844 0.2031
vt 0.0156 0.8125
vt 0.1406 0.8125
vt 0.1406 0.9844
vt 0.0156 0.9844
vt 0.7969 0.1094
vt 0.7969 0.0156
vt 0.9844 0.0156
vt 0.9844 0.1094
vt 0.7969 0.2969
vt 0.9844 0.2969
vt 0.2656 0.8125
vt 0.2656 0.9844
vt 0.7969 0.1094
vt 0.7969 0.0156
vt 0.9844 0.0156
vt 0.9844 0.1094
vt 0.3906 0.8125
vt 0.3906 0.9844
vt 0.7969 0.2031
vt 0.9844 0.2031
vt 0.0156 0.8125
vt 0.1406 0.8125
vt 0.1406 0.9844
vt 0.0156 0.9844
vt 0.7969 0.2969
vt 0.9844 0.2969
vt 0.2656 0.8125
vt 0.2656 0.9844
vt 0.7969 0.1094
vt 0.7969 0.0156
vt 0.9844 0.0156
vt 0.9844 0.1094
vt 0.3906 0.8125
vt 0.3906 0.9844
vt 0.7969 0.2031
vt 0.9844 0.2031
vt 0.0156 0.8125
vt 0.1406 0.8125
vt 0.1406 0.9844
vt 0.0156 0.9844
vt 0.2656 0.8125
vt 0.3906 0.8125
vt 0.3906 0.9844
vt 0.2656 0.9844
vt 0.7969 0.2969
vt 0.9844 0.2969
vt 0.2656 0.8125
vt 0.2656 0.9844
vt 0.0156 0.8125
vt 0.1406 0.8125
vt 0.1406 0.9844
vt 0.0156 0.9844
vt 0.7969 0.1094
vt 0.7969 0.0156
vt 0.9844 0.0156
vt 0.9844 0.1094
vt 0.3906 0.8125
vt 0.3906 0.9844
vt 0.2656 0.8125
vt 0.2656 0.9844
vt 0.7969 0.2031
vt 0.9844 0.2031
vt 0.0156 0.8125
vt 0.1406 0.8125
vt 0.1406 0.9844
vt 0.0156 0.9844
vt 0.3906 0.8125
vt 0.3906 0.9844
vt 0.7969 0.2969
vt 0.9844 0.2969
vt 0.0156 0.8125
vt 0.0156 0.9844
vt 0.7969 0.0156
vt 0.9844 0.0156
vn -0.9864 -0.1644 0.0000
vn 0.9864 -0.1644 0.0000
vn 0.0000 -1.0000 0.0000
vn -0.0000 1.0000 0.0000
vn 0.0000 -0.3443 -0.9389
vn 0.0000 -0.3443 0.9389
vn -0.9864 -0.1259 0.1057
vn 0.9864 -0.1259 0.1057
vn 0.0000 -0.7660 0.6428
vn -0.0000 0.7660 -0.6428
vn 0.0000 -0.8672 -0.4979
vn 0.0000 0.3398 0.9405
vn -0.9864 -0.0285 0.1619
vn 0.9864 -0.0285 0.1619
vn 0.0000 -0.1736 0.9848
vn -0.0000 0.1736 -0.9848
vn 0.0000 -0.9844 0.1760
vn 0.0000 0.8648 0.5021
vn -0.9864 0.0822 0.1424
vn 0.9864 0.0822 0.1424
vn 0.0000 0.5000 0.8660
vn -0.0000 -0.5000 -0.8660
vn 0.0000 -0.6410 0.7676
vn 0.0000 0.9852 -0.1713
vn -0.9864 0.1545 0.0562
vn 0.9864 0.1545 0.0562
vn 0.0000 0.9397 0.3420
vn -0.0000 -0.9397 -0.3420
vn 0.0000 0.0024 1.0000
vn 0.0000 0.6446 -0.7645
vn -0.9864 0.1545 -0.0562
vn 0.9864 0.1545 -0.0562
vn 0.0000 0.9397 -0.3420
vn -0.0000 -0.9397 0.3420
vn 0.0000 0.6446 0.7645
vn 0.0000 0.0024 -1.0000
vn -0.9864 0.0822 -0.1424
vn 0.9864 0.0822 -0.1424
vn 0.0000 0.5000 -0.8660
vn -0.0000 -0.5000 0.8660
vn 0.0000 0.9852 0.1713
vn 0.0000 -0.6410 -0.7676
vn -0.9864 -0.0285 -0.1619
vn 0.9864 -0.0285 -0.1619
vn 0.0000 -0.1736 -0.9848
vn -0.0000 0.1736 0.9848
vn 0.0000 0.8648 -0.5021
vn 0.0000 -0.9844 -0.1760
vn -0.9864 -0.1259 -0.1057
vn 0.9864 -0.1259 -0.1057
vn 0.0000 -0.7660 -0.6428
vn -0.0000 0.7660 0.6428
vn 0.0000 0.3398 -0.9405
vn 0.0000 -0.8672 0.4979
vn -1.0000 -0.0000 -0.0000
vn 1.0000 0.0000 0.0000
s off
f 1/1/1 3/2/1 4/3/1 2/4/1
f 5/5/2 6/6/2 8/7/2 7/8/2
f 2/9/3 4/10/3 8/11/3 6/12/3
f 3/2/4 1/1/4 5/5/4 7/8/4
f 4/10/5 3/2/5 7/8/5 8/11/5
f 1/1/6 2/13/6 6/14/6 5/5/6
f 9/15/7 11/16/7 12/17/7 10/18/7
f 13/19/8 14/20/8 16/21/8 15/22/8
f 10/23/9 12/24/9 16/25/9 14/26/9
f 11/16/10 9/15/10 13/19/10 15/22/10
f 12/24/11 11/16/11 15/22/11 16/25/11
f 9/15/12 10/27/12 14/28/12 13/19/12
f 17/29/13 19/30/13 20/31/13 18/32/13
f 21/33/14 22/34/14 24/35/14 23/36/14
f 18/37/15 20/38/15 24/39/15 22/40/15
f 19/30/16 17/29/16 21/33/16 23/36/16
f 20/38/17 19/30/17 23/36/17 24/39/17
f 17/29/18 18/41/18 22/42/18 21/33/18
f 25/43/19 27/44/19 28/45/19 26/46/19
f 29/47/20 30/48/20 32/49/20 31/50/20
f 26/51/21 28/52/21 32/53/21 30/54/21
f 27/44/22 25/43/22 29/47/22 31/50/22
f 28/52/23 27/44/23 31/50/23 32/53/23
f 25/43/24 26/55/24 30/56/24 29/47/24
f 33/57/25 35/58/25 36/59/25 34/60/25
f 37/61/26 38/62/26 40/63/26 39/64/26
f 34/65/27 36/66/27 40/67/27 38/68/27
f 35/58/28 33/57/28 37/61/28 39/64/28
f 36/66/29 35/58/29 39/64/29 40/67/29
f 33/57/30 34/69/30 38/70/30 37/61/30
f 41/71/31 43/72/31 44/73/31 42/74/31
f 45/75/32 46/76/32 48/77/32 47/78/32
f 42/79/33 44/80/33 48/81/33 46/82/33
f 43/72/34 41/71/34 45/75/34 47/78/34
f 44/80/35 43/72/35 47/78/35 48/81/35
f 41/71/36 42/83/36 46/84/36 45/75/36
f 49/85/37 51/86/37 52/87/37 50/88/37
f 53/89/38 54/90/38 56/91/38 55/92/38
f 50/93/39 52/94/39 56/95/39 54/96/39
f 51/86/40 49/85/40 53/89/40 55/92/40
f 52/94/41 51/86/41 55/92/41 56/95/41
f 49/85/42 50/97/42 54/98/42 53/89/42
f 57/99/43 59/100/43 60/101/43 58/102/43
f 61/103/44 62/104/44 64/105/44 63/106/44
f 58/107/45 60/108/45 64/109/45 62/110/45
f 59/100/46 57/99/46 61/103/46 63/106/46
f 60/108/47 59/100/47 63/106/47 64/109/47
f 57/99/48 58/111/48 62/112/48 61/103/48
f 65/113/49 67/114/49 68/115/49 66/116/49
f 69/117/50 70/118/50 72/119/50 71/120/50
f 66/121/51 68/122/51 72/123/51 70/124/51
f 67/114/52 65/113/52 69/117/52 71/120/52
f 68/122/53 67/114/53 71/120/53 72/123/53
f 65/113/54 66/125/54 70/126/54 69/117/54
f 84/127/55 102/128/55 103/129/55 85/130/55
f 77/131/55 95/132/55 96/133/55 78/134/55
f 85/130/55 103/129/55 104/135/55 86/136/55
f 78/134/55 96/133/55 97/137/55 79/138/55
f 86/136/55 104/135/55 105/139/55 87/140/55
f 79/138/55 97/137/55 98/141/55 80/142/55
f 87/140/55 105/139/55 106/143/55 88/144/55
f 80/142/55 98/141/55 99/145/55 81/146/55
f 73/147/55 91/148/55 92/149/55 74/150/55
f 88/144/55 106/143/55 107/151/55 89/152/55
f 81/146/55 99/145/55 100/153/55 82/154/55
f 74/150/55 92/149/55 93/155/55 75/156/55
f 89/152/55 107/151/55 108/157/55 90/158/55
f 82/154/55 100/153/55 101/159/55 83/160/55
f 75/156/55 93/155/55 94/161/55 76/162/55
f 90/158/55 108/157/55 91/148/55 73/147/55
f 83/160/55 101/159/55 102/128/55 84/127/55
f 76/162/55 94/161/55 95/132/55 77/131/55
f 120/163/56 121/164/56 139/165/56 138/166/56
f 113/167/56 114/168/56 132/169/56 131/170/56
f 121/164/56 122/171/56 140/172/56 139/165/56
f 114/168/56 115/173/56 133/174/56 132/169/56
f 122/171/56 123/175/56 141/176/56 140/172/56
f 115/173/56 116/177/56 134/178/56 133/174/56
f 123/175/56 124/179/56 142/180/56 141/176/56
f 116/177/56 117/181/56 135/182/56 134/178/56
f 109/183/56 110/184/56 128/185/56 127/186/56
f 124/179/56 125/187/56 143/188/56 142/180/56
f 117/181/56 118/189/56 136/190/56 135/182/56
f 110/184/56 111/191/56 129/192/56 128/185/56
f 125/187/56 126/193/56 144/194/56 143/188/56
f 118/189/56 119/195/56 137/196/56 136/190/56
f 111/191/56 112/197/56 130/198/56 129/192/56
f 126/193/56 109/183/56 127/186/56 144/194/56
f 119/195/56 120/163/56 138/166/56 137/196/56
f 112/197/56 113/167/56 131/170/56 130/198/56
f 92/199/15 91/200/15 127/201/15 128/202/15
f 78/203/27 79/204/27 115/205/27 114/206/27
f 106/207/27 105/208/27 141/209/27 142/210/27
f 93/211/40 92/212/40 128/213/40 129/214/40
f 79/204/52 80/215/52 116/216/52 115/205/52
f 107/217/52 106/207/52 142/210/52 143/218/52
f 94/219/9 93/211/9 129/214/9 130/220/9
f 80/221/21 81/222/21 117/223/21 116/224/21
f 108/225/21 107/226/21 143/227/21 144/228/21
f 95/229/34 94/219/34 130/220/34 131/230/34
f 81/222/46 82/231/46 118/232/46 117/223/46
f 91/200/46 108/225/46 144/228/46 127/201/46
f 96/233/3 95/234/3 131/235/3 132/236/3
f 82/231/15 83/237/15 119/238/15 118/232/15
f 97/239/28 96/233/28 132/236/28 133/240/28
f 83/241/40 84/242/40 120/243/40 119/244/40
f 98/245/51 97/239/51 133/240/51 134/246/51
f 84/242/9 85/247/9 121/248/9 120/243/9
f 99/249/22 98/250/22 134/251/22 135/252/22
f 85/247/34 86/253/34 122/254/34 121/248/34
f 100/255/45 99/249/45 135/252/45 136/256/45
f 86/257/3 87/258/3 123/259/3 122/260/3
f 73/261/16 74/262/16 110/263/16 109/264/16
f 101/265/16 100/255/16 136/256/16 137/266/16
f 87/258/28 88/267/28 124/268/28 123/259/28
f 74/269/39 75/270/39 111/271/39 110/272/39
f 102/273/39 101/274/39 137/275/39 138/276/39
f 88/267/51 89/277/51 125/278/51 124/268/51
f 75/270/10 76/279/10 112/280/10 111/271/10
f 103/281/10 102/273/10 138/276/10 139/282/10
f 89/283/22 90/284/22 126/285/22 125/286/22
f 76/279/33 77/287/33 113/288/33 112/280/33
f 104/289/33 103/281/33 139/282/33 140/290/33
f 90/284/45 73/261/45 109/264/45 126/285/45
f 77/291/4 78/203/4 114/206/4 113/292/4
f 105/208/4 104/293/4 140/294/4 141/209/4

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

BIN
textures/myminegate_bg.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 402 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 955 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 296 B