Page 1 of 1

creative mode help.

PostPosted: Wed Apr 02, 2014 17:57
by jwpwns
I have a server on a linux vps How would i enable creative mode i tried adding it to the config and got nothing? also is it possible to make it so only i have it and not other players? here is my config

http://pastebin.com/zTgGz97r

PostPosted: Wed Apr 02, 2014 18:17
by sfan5
All lines starting with # are ignored in configuration files.
I would also not advise using the minetest.conf.example file as a configuration base because you do not easily see which settings differ from default (and actually do something) and which settings have no effect because their value is the same as the default.

PostPosted: Wed Apr 02, 2014 19:03
by jwpwns
Ok i got creative enabled but is there a way to make it so i only have it? not all players?

PostPosted: Wed Apr 02, 2014 19:53
by hoodedice
jwpwns wrote:Ok i got creative enabled but is there a way to make it so i only have it? not all players?


What exactly do you mean by creative?

If you mean that you only have unlimited items, then enable 'survival' (disable creative) on your server (dunno how you do it on a VPS). After you've done that, join the game from that VPS (If you were running this on your own PC< I would say join from your own PC, but then again, I don't really know how VPS works). Once in the game, type '/grant yourusernamehere all' without quotes and yourusernamehere replaced with the username you used to join the game. Once you've run those commands, type '/giveme itemstring' without quotes and itemstring is the string entry of that item in the Minetest item database.

See this for the Vanilla Minetest game itemStrings: http://wiki.minetest.net/Itemstrings

If you mean that only you can fly, then do the same things as above, and then just press J and K to enable 'fly' and 'fast'.

You might also want to read through this: http://wiki.minetest.net/Server_commands

PostPosted: Fri Apr 04, 2014 00:57
by jwpwns
ok got it Also 1 more thing any one know of any mods for /spawn i cant find any.

PostPosted: Fri Apr 04, 2014 06:35
by CraigyDavi
jwpwns wrote:ok got it Also 1 more thing any one know of any mods for /spawn i cant find any.

http://lmgtfy.com/?q=minetest+spawn+mod

PostPosted: Fri Apr 04, 2014 14:14
by jwpwns
CraigyDavi wrote:
jwpwns wrote:ok got it Also 1 more thing any one know of any mods for /spawn i cant find any.

http://lmgtfy.com/?q=minetest+spawn+mod



I did google before i posted here could not find any decent ones....

This one will no longer load for me and
https://forum.minetest.net/viewtopic.php?id=6890

This one is for Players death points not/spawn

https://forum.minetest.net/viewtopic.php?id=3340

PostPosted: Fri Apr 04, 2014 14:43
by CraigyDavi
You can use this code. Just use a init.lua file and copy and paste this in:
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
minetest.register_chatcommand("spawn", {
    params = "",
    description = "Teleport to the spawn location.",
    privs = {shout=true},
    func = function(name, param)
            local player = minetest.get_player_by_name(name)
            minetest.chat_send_player(name, "Teleported to spawn!")
            player:setpos({x=0.0, y=5.0, z=0.0})
            return true
    end,
})

Change the corrdinates to where you want the spawn to be.

PostPosted: Fri Apr 04, 2014 16:11
by jwpwns
ok got it thanks still trying to get use to how minetest works.