Search found 6 matches

by LlubNek
Sat Sep 22, 2012 04:08
Forum: WIP Mods
Topic: [Modpack] General Utilities and Stairs
Replies: 2
Views: 2427

I added bookmarks to the home_positions mod.

There are two new commands:
/mark <name>
-- mark your current location to be recalled later
/go [<name>]
-- goes home or to a marked location
by LlubNek
Sun Sep 09, 2012 11:05
Forum: Problems
Topic: mods in /usr/share/ override mods in ~/
Replies: 6
Views: 1571

here's a modified init.lua that should fix this (maybe... see first bug for why this isn't tested): It was close, but not quite right. See http://minetest.net/forum/viewtopic.php?id=2998 for a working mod that fixes stairs. stairs itself, if modified, would look like this: -- Minetest 0.4 mod: stai...
by LlubNek
Sun Sep 09, 2012 10:56
Forum: WIP Mods
Topic: [Modpack] General Utilities and Stairs
Replies: 2
Views: 2427

[Modpack] General Utilities and Stairs

Currently contains three mods: player_data, home_positions and stairs2 player_data doesn't add anything to the game by itself, but is intended to be used by other mods. It allows you to store persistent data associated with a particular player or string. home_positions allows a player to set their r...
by LlubNek
Sun Sep 09, 2012 08:55
Forum: Problems
Topic: mods in /usr/share/ override mods in ~/
Replies: 6
Views: 1571

Advantages (for me): - I don't need to sudo for installing mods, so easy to delete and insert mods - Very easy to make x copies of minetest in your home directory to try out different mods, textures etc. You would have the same advantages with the world mods and home directory mods overriding the g...
by LlubNek
Sun Sep 09, 2012 07:56
Forum: Problems
Topic: mods in /usr/share/ override mods in ~/
Replies: 6
Views: 1571

Anyway; the folder ~/.minetest/worlds/WORLD_NAME/worldmods always gets checked before ~/.minetest/mods/minetest, which gets checked before /usr/share/games/minetest/games/minetest_game/mods. Checked that, but it looks like it's the other way around. I made a mod in ~/.minetest/mods/minetest/stairs ...
by LlubNek
Sun Sep 09, 2012 04:37
Forum: Problems
Topic: mods in /usr/share/ override mods in ~/
Replies: 6
Views: 1571

mods in /usr/share/ override mods in ~/

mods in /usr/share/minetest/games/minetest_game/mods override mods in ~/.minetest/mods/minetest. For example, if I have a mod named 'stairs' in ~/.minetest/mods/minetest/stairs/, my stairs mod will not run, but the default stairs mod in /usr/share/minetest/games/minetest_game/mods/stairs will. could...