first commit

master
nyje 2015-12-23 11:29:07 +00:00
commit 9dd959237c
47 changed files with 218 additions and 0 deletions

1
README.md Normal file
View File

@ -0,0 +1 @@
# bigwords

1
depends.txt Normal file
View File

@ -0,0 +1 @@
default

64
init.lua Normal file
View File

@ -0,0 +1,64 @@
modname = "spell:"
characters = {
_A = {name="A", letter=1 },
_B = {name="B", letter=1 },
_C = {name="C", letter=1 },
_D = {name="D", letter=1 },
_E = {name="E", letter=1 },
_F = {name="F", letter=1 },
_G = {name="G", letter=1 },
_H = {name="H", letter=1 },
_I = {name="I", letter=1 },
_J = {name="J", letter=1 },
_K = {name="K", letter=1 },
_L = {name="L", letter=1 },
_M = {name="M", letter=1 },
_N = {name="N", letter=1 },
_O = {name="O", letter=1 },
_P = {name="P", letter=1 },
_Q = {name="Q", letter=1 },
_R = {name="R", letter=1 },
_S = {name="S", letter=1 },
_T = {name="T", letter=1 },
_U = {name="U", letter=1 },
_V = {name="V", letter=1 },
_W = {name="W", letter=1 },
_X = {name="X", letter=1 },
_Y = {name="Y", letter=1 },
_Z = {name="Z", letter=1 },
_0 = {name="0" },
_1 = {name="1" },
_2 = {name="2" },
_3 = {name="3" },
_4 = {name="4" },
_5 = {name="5" },
_6 = {name="6" },
_7 = {name="7" },
_8 = {name="8" },
_9 = {name="9" }
}
for key,value in pairs(characters) do
if value.letter then
my_desc = "Letter"..key
else
my_desc = "Number"..key
end
minetest.register_node(modname.."Letter"..key, {
description=my_desc,
tiles = { "spell"..key..".png" },
light_source = 14,
inventory_image = "spell"..key..".png",
groups = {cracky=3, choppy=3},
sounds = default.node_sound_stone_defaults(),
})
end
minetest.register_node(modname.."px_logo", {
description="planet express logo",
tiles = { "PX.png" },
light_source = 14,
inventory_image = "PX.png",
groups = {cracky=3, choppy=3},
sounds = default.node_sound_stone_defaults(),
})

BIN
textures/PX.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

152
textures/debug.txt Normal file
View File

@ -0,0 +1,152 @@
-------------
Separator
-------------
Irrlicht log: Irrlicht Engine version 1.7.3
Irrlicht log: Linux 3.2.0-4-amd64 #1 SMP Debian 3.2.60-1+deb7u3 x86_64
Irrlicht log: Using renderer: OpenGL 2.1
Irrlicht log: Gallium 0.4 on llvmpipe (LLVM 0x209): VMware, Inc.
Irrlicht log: OpenGL driver version is 1.2 or better.
Irrlicht log: GLSL version: 1.2
20:37:30: ERROR[main]: ========== ERROR FROM LUA ===========
20:37:30: ERROR[main]: Failed to load and run script from
20:37:30: ERROR[main]: /home/nige/MINETEST/MINETEST/bin/../mods/spell/init.lua:
20:37:30: ERROR[main]: ...me/nige/MINETEST/MINETEST/bin/../mods/spell/init.lua:45: attempt to index global 'default' (a nil value)
20:37:30: ERROR[main]: stack traceback:
20:37:30: ERROR[main]: ...me/nige/MINETEST/MINETEST/bin/../mods/spell/init.lua:45: in main chunk
20:37:30: ERROR[main]: ======= END OF ERROR FROM LUA ========
20:37:30: ERROR[main]: Server: Failed to load and run /home/nige/MINETEST/MINETEST/bin/../mods/spell/init.lua
20:37:30: ERROR[main]: ModError: ModError: Failed to load and run /home/nige/MINETEST/MINETEST/bin/../mods/spell/init.lua
20:37:56: ERROR[main]: ========== ERROR FROM LUA ===========
20:37:56: ERROR[main]: Failed to load and run script from
20:37:56: ERROR[main]: /home/nige/MINETEST/MINETEST/bin/../mods/spell/init.lua:
20:37:56: ERROR[main]: ...me/nige/MINETEST/MINETEST/bin/../mods/spell/init.lua:45: attempt to index global 'default' (a nil value)
20:37:56: ERROR[main]: stack traceback:
20:37:56: ERROR[main]: ...me/nige/MINETEST/MINETEST/bin/../mods/spell/init.lua:45: in main chunk
20:37:56: ERROR[main]: ======= END OF ERROR FROM LUA ========
20:37:56: ERROR[main]: Server: Failed to load and run /home/nige/MINETEST/MINETEST/bin/../mods/spell/init.lua
20:37:56: ERROR[main]: ModError: ModError: Failed to load and run /home/nige/MINETEST/MINETEST/bin/../mods/spell/init.lua
20:38:40: ERROR[main]: ========== ERROR FROM LUA ===========
20:38:40: ERROR[main]: Failed to load and run script from
20:38:40: ERROR[main]: /home/nige/MINETEST/MINETEST/bin/../mods/spell/init.lua:
20:38:40: ERROR[main]: ...me/nige/MINETEST/MINETEST/bin/../mods/spell/init.lua:45: attempt to index global 'default' (a nil value)
20:38:40: ERROR[main]: stack traceback:
20:38:40: ERROR[main]: ...me/nige/MINETEST/MINETEST/bin/../mods/spell/init.lua:45: in main chunk
20:38:40: ERROR[main]: ======= END OF ERROR FROM LUA ========
20:38:40: ERROR[main]: Server: Failed to load and run /home/nige/MINETEST/MINETEST/bin/../mods/spell/init.lua
20:38:40: ERROR[main]: ModError: ModError: Failed to load and run /home/nige/MINETEST/MINETEST/bin/../mods/spell/init.lua
20:39:35: ERROR[main]: ========== ERROR FROM LUA ===========
20:39:35: ERROR[main]: Failed to load and run script from
20:39:35: ERROR[main]: /home/nige/MINETEST/MINETEST/bin/../mods/spell/init.lua:
20:39:35: ERROR[main]: ...me/nige/MINETEST/MINETEST/bin/../mods/spell/init.lua:45: attempt to index global 'default' (a nil value)
20:39:35: ERROR[main]: stack traceback:
20:39:35: ERROR[main]: ...me/nige/MINETEST/MINETEST/bin/../mods/spell/init.lua:45: in main chunk
20:39:35: ERROR[main]: ======= END OF ERROR FROM LUA ========
20:39:35: ERROR[main]: Server: Failed to load and run /home/nige/MINETEST/MINETEST/bin/../mods/spell/init.lua
20:39:35: ERROR[main]: ModError: ModError: Failed to load and run /home/nige/MINETEST/MINETEST/bin/../mods/spell/init.lua
20:41:23: ACTION[main]: .__ __ __
20:41:23: ACTION[main]: _____ |__| ____ _____/ |_ ____ _______/ |_
20:41:23: ACTION[main]: / \| |/ \_/ __ \ __\/ __ \ / ___/\ __\
20:41:23: ACTION[main]: | Y Y \ | | \ ___/| | \ ___/ \___ \ | |
20:41:23: ACTION[main]: |__|_| /__|___| /\___ >__| \___ >____ > |__|
20:41:23: ACTION[main]: \/ \/ \/ \/ \/
20:41:23: ACTION[main]: World at [/home/nige/MINETEST/MINETEST/bin/../worlds/Zonk]
20:41:23: ACTION[main]: Server for gameid="minetest" listening on 0.0.0.0:51401.
Unified Inventory. inventory size: 223
20:41:24: ERROR[main]: generateImage(): Could not load image "spell_a.png" while building texture
20:41:24: ERROR[main]: generateImage(): Creating a dummy image for "spell_a.png"
20:41:24: ERROR[main]: generateImage(): Could not load image "spell_c.png" while building texture
20:41:24: ERROR[main]: generateImage(): Creating a dummy image for "spell_c.png"
20:41:24: ERROR[main]: generateImage(): Could not load image "spell_b.png" while building texture
20:41:24: ERROR[main]: generateImage(): Creating a dummy image for "spell_b.png"
20:41:24: ERROR[main]: generateImage(): Could not load image "spell_e.png" while building texture
20:41:24: ERROR[main]: generateImage(): Creating a dummy image for "spell_e.png"
20:41:24: ERROR[main]: generateImage(): Could not load image "spell_d.png" while building texture
20:41:24: ERROR[main]: generateImage(): Creating a dummy image for "spell_d.png"
20:41:24: ERROR[main]: generateImage(): Could not load image "spell_g.png" while building texture
20:41:24: ERROR[main]: generateImage(): Creating a dummy image for "spell_g.png"
20:41:24: ERROR[main]: generateImage(): Could not load image "spell_f.png" while building texture
20:41:24: ERROR[main]: generateImage(): Creating a dummy image for "spell_f.png"
20:41:24: ERROR[main]: generateImage(): Could not load image "spell_i.png" while building texture
20:41:24: ERROR[main]: generateImage(): Creating a dummy image for "spell_i.png"
20:41:24: ERROR[main]: generateImage(): Could not load image "spell_h.png" while building texture
20:41:24: ERROR[main]: generateImage(): Creating a dummy image for "spell_h.png"
20:41:24: ERROR[main]: generateImage(): Could not load image "spell_k.png" while building texture
20:41:24: ERROR[main]: generateImage(): Creating a dummy image for "spell_k.png"
20:41:24: ERROR[main]: generateImage(): Could not load image "spell_j.png" while building texture
20:41:24: ERROR[main]: generateImage(): Creating a dummy image for "spell_j.png"
20:41:24: ERROR[main]: generateImage(): Could not load image "spell_m.png" while building texture
20:41:24: ERROR[main]: generateImage(): Creating a dummy image for "spell_m.png"
20:41:24: ERROR[main]: generateImage(): Could not load image "spell_l.png" while building texture
20:41:24: ERROR[main]: generateImage(): Creating a dummy image for "spell_l.png"
20:41:24: ERROR[main]: generateImage(): Could not load image "spell_o.png" while building texture
20:41:24: ERROR[main]: generateImage(): Creating a dummy image for "spell_o.png"
20:41:24: ERROR[main]: generateImage(): Could not load image "spell_n.png" while building texture
20:41:24: ERROR[main]: generateImage(): Creating a dummy image for "spell_n.png"
20:41:24: ERROR[main]: generateImage(): Could not load image "spell_q.png" while building texture
20:41:24: ERROR[main]: generateImage(): Creating a dummy image for "spell_q.png"
20:41:24: ERROR[main]: generateImage(): Could not load image "spell_p.png" while building texture
20:41:24: ERROR[main]: generateImage(): Creating a dummy image for "spell_p.png"
20:41:24: ERROR[main]: generateImage(): Could not load image "spell_s.png" while building texture
20:41:24: ERROR[main]: generateImage(): Creating a dummy image for "spell_s.png"
20:41:24: ERROR[main]: generateImage(): Could not load image "spell_r.png" while building texture
20:41:24: ERROR[main]: generateImage(): Creating a dummy image for "spell_r.png"
20:41:24: ERROR[main]: generateImage(): Could not load image "spell_u.png" while building texture
20:41:24: ERROR[main]: generateImage(): Creating a dummy image for "spell_u.png"
20:41:24: ERROR[main]: generateImage(): Could not load image "spell_t.png" while building texture
20:41:24: ERROR[main]: generateImage(): Creating a dummy image for "spell_t.png"
20:41:24: ERROR[main]: generateImage(): Could not load image "spell_w.png" while building texture
20:41:24: ERROR[main]: generateImage(): Creating a dummy image for "spell_w.png"
20:41:24: ERROR[main]: generateImage(): Could not load image "spell_v.png" while building texture
20:41:24: ERROR[main]: generateImage(): Creating a dummy image for "spell_v.png"
20:41:24: ERROR[main]: generateImage(): Could not load image "spell_y.png" while building texture
20:41:24: ERROR[main]: generateImage(): Creating a dummy image for "spell_y.png"
20:41:24: ERROR[main]: generateImage(): Could not load image "spell_x.png" while building texture
20:41:24: ERROR[main]: generateImage(): Creating a dummy image for "spell_x.png"
20:41:24: ERROR[main]: generateImage(): Could not load image "spell_z.png" while building texture
20:41:24: ERROR[main]: generateImage(): Creating a dummy image for "spell_z.png"
20:41:24: ACTION[ServerThread]: singleplayer [127.0.0.1] joins game.
20:41:24: ACTION[ServerThread]: singleplayer joins game. List of players: singleplayer
Irrlicht log: Could not load texture:
Irrlicht log: Could not load texture:
Irrlicht log: Could not load texture:
Irrlicht log: Could not load texture:
Font size: 8 16
Irrlicht log: Could not open file of texture: character.png
Loaded: Spelling Mod +++++++++
20:44:32: ACTION[main]: .__ __ __
20:44:32: ACTION[main]: _____ |__| ____ _____/ |_ ____ _______/ |_
20:44:32: ACTION[main]: / \| |/ \_/ __ \ __\/ __ \ / ___/\ __\
20:44:32: ACTION[main]: | Y Y \ | | \ ___/| | \ ___/ \___ \ | |
20:44:32: ACTION[main]: |__|_| /__|___| /\___ >__| \___ >____ > |__|
20:44:32: ACTION[main]: \/ \/ \/ \/ \/
20:44:32: ACTION[main]: World at [/home/nige/MINETEST/MINETEST/bin/../worlds/Zonk]
20:44:32: ACTION[main]: Server for gameid="minetest" listening on 0.0.0.0:54805.
Unified Inventory. inventory size: 222
Irrlicht log: Could not load texture:
Irrlicht log: Could not load texture:
Irrlicht log: Could not load texture:
Irrlicht log: Could not load texture:
20:44:35: ACTION[ServerThread]: singleplayer [127.0.0.1] joins game.
20:44:35: ACTION[ServerThread]: singleplayer joins game. List of players: singleplayer
Font size: 8 16
Irrlicht log: Could not open file of texture: character.png
Loaded: Spelling Mod +++++++++
20:45:50: ACTION[ServerThread]: singleplayer places node spell:A at (-39,21,-114)
20:45:57: ACTION[ServerThread]: singleplayer places node spell:B at (-41,21,-114)
20:46:00: ACTION[ServerThread]: singleplayer places node spell:C at (-43,21,-114)
20:46:06: ACTION[ServerThread]: singleplayer places node spell:C at (-45,21,-114)
20:46:09: ACTION[ServerThread]: singleplayer digs spell:C at (-45,21,-114)
20:46:12: ACTION[ServerThread]: singleplayer places node spell:D at (-45,21,-114)
20:46:16: ACTION[ServerThread]: singleplayer places node spell:E at (-47,21,-113)
20:46:20: ACTION[ServerThread]: singleplayer places node spell:F at (-47,21,-111)
20:46:24: ACTION[ServerThread]: singleplayer digs flowers:tulip at (-47,21,-109)
20:46:25: ACTION[ServerThread]: singleplayer places node spell:G at (-47,21,-109)
20:46:29: ACTION[ServerThread]: singleplayer places node spell:H at (-47,21,-107)
20:48:17: ACTION[ServerThread]: singleplayer places node spell:Y at (-42,21,-111)
20:48:45: ACTION[ServerThread]: singleplayer places node spell:E at (-42,22,-111)
20:49:10: ACTION[ServerThread]: singleplayer digs spell:E at (-42,22,-111)
20:49:12: ACTION[ServerThread]: singleplayer digs spell:Y at (-42,21,-111)
20:49:12: ACTION[ServerThread]: singleplayer digs default:dirt_with_grass at (-42,20,-113)

BIN
textures/nyje_decowood.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 122 KiB

BIN
textures/nyje_dimitra.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

BIN
textures/nyje_elektra.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.6 KiB

BIN
textures/nyje_nyje.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

BIN
textures/nyje_twins.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 KiB

BIN
textures/spell_0.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

BIN
textures/spell_1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

BIN
textures/spell_2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

BIN
textures/spell_3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

BIN
textures/spell_4.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

BIN
textures/spell_5.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

BIN
textures/spell_6.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

BIN
textures/spell_7.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

BIN
textures/spell_8.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

BIN
textures/spell_9.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

BIN
textures/spell_A.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

BIN
textures/spell_B.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

BIN
textures/spell_C.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

BIN
textures/spell_D.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

BIN
textures/spell_E.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

BIN
textures/spell_F.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

BIN
textures/spell_G.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

BIN
textures/spell_H.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

BIN
textures/spell_I.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

BIN
textures/spell_J.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

BIN
textures/spell_K.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

BIN
textures/spell_L.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

BIN
textures/spell_M.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

BIN
textures/spell_N.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

BIN
textures/spell_O.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

BIN
textures/spell_P.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

BIN
textures/spell_Q.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

BIN
textures/spell_R.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

BIN
textures/spell_S.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

BIN
textures/spell_T.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

BIN
textures/spell_U.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

BIN
textures/spell_V.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

BIN
textures/spell_W.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

BIN
textures/spell_X.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

BIN
textures/spell_Y.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

BIN
textures/spell_Z.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

BIN
textures/white.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 749 B