born and reborn in the same place

User avatar
BrunoMine
Member
 
Posts: 902
Joined: Thu Apr 25, 2013 17:29
GitHub: BrunoMine

born and reborn in the same place

by BrunoMine » Thu Jul 04, 2013 04:04

sorry. I know I already responded to this question but I did not find the topic.
How does the player to start the server at a specific point? And reappear in the same spot too.
My small square universe under construction ... Minemacro
Comunidade Minetest Brasil
www.minetestbrasil.com
 

User avatar
Menche
Member
 
Posts: 994
Joined: Sat Jul 02, 2011 00:43

by Menche » Thu Jul 04, 2013 05:52

You can set the spawnpoint with this setting:
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
static_spawnpoint = x,y,z

Put that in minetest.conf or run
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
/set static_spawnpoint x,y,z
in game.
Last edited by Menche on Thu Jul 04, 2013 05:53, edited 1 time in total.
An innocent kitten dies every time you top-post.
I am on the Voxelands Forums more often than here.
Try Voxelands (forked from Minetest 0.3) by darkrose
 

User avatar
BrunoMine
Member
 
Posts: 902
Joined: Thu Apr 25, 2013 17:29
GitHub: BrunoMine

by BrunoMine » Fri Jul 05, 2013 18:42

thank you!
Tell me what mod to create spawn in the house.
The one with the codes:
/ sethome
/ delhome
/ home
please
My small square universe under construction ... Minemacro
Comunidade Minetest Brasil
www.minetestbrasil.com
 

tinoesroho
Member
 
Posts: 570
Joined: Fri Feb 17, 2012 21:55

by tinoesroho » Fri Jul 05, 2013 21:04

The sethome mod- which I used all the way from dev-0122-2 days is the one you want.

sethome
We are what we create.

I tinker and occasionally make (lousy) mods. Currently building an MMO subgame and updating mods. Pirate Party of Canada member. Sporadic author. 21 years old.

My github:
https://github.com/tinoesroho/
 

User avatar
BrunoMine
Member
 
Posts: 902
Joined: Thu Apr 25, 2013 17:29
GitHub: BrunoMine

by BrunoMine » Tue Jul 09, 2013 23:22

I want a message to appear when the player first enters the server. Is there any mod for that?
My small square universe under construction ... Minemacro
Comunidade Minetest Brasil
www.minetestbrasil.com
 

User avatar
Mossmanikin
Member
 
Posts: 599
Joined: Sun May 19, 2013 16:26

by Mossmanikin » Tue Jul 09, 2013 23:45

I'm not sure how exactly this mod works (never tested it), but maybe this one is what you're looking for.

Noob 4 life!
My stuff
 

User avatar
PilzAdam
Member
 
Posts: 4026
Joined: Fri Jul 20, 2012 16:19
GitHub: PilzAdam
IRC: PilzAdam

by PilzAdam » Wed Jul 10, 2013 00:08

brunob.santos wrote:I want a message to appear when the player first enters the server. Is there any mod for that?

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_on_newplayer(function(player)
    minetest.chat_send_all(player:get_player_name() .. " is new, say "Hello!"")
end)

(untested)
 

User avatar
BrunoMine
Member
 
Posts: 902
Joined: Thu Apr 25, 2013 17:29
GitHub: BrunoMine

by BrunoMine » Wed Jul 10, 2013 16:56

Mossmanikin wrote:I'm not sure how exactly this mod works (never tested it), but maybe this one is what you're looking for.


Just explain to me how to create this mod. You must create a folder? What is the name of the folder?
My small square universe under construction ... Minemacro
Comunidade Minetest Brasil
www.minetestbrasil.com
 

tinoesroho
Member
 
Posts: 570
Joined: Fri Feb 17, 2012 21:55

by tinoesroho » Wed Jul 10, 2013 20:38

In older days, there was a MOTD line in minetest.conf. I'm not sure if it's still there, but this should work: /set MOTD "herp derp derp".
We are what we create.

I tinker and occasionally make (lousy) mods. Currently building an MMO subgame and updating mods. Pirate Party of Canada member. Sporadic author. 21 years old.

My github:
https://github.com/tinoesroho/
 

User avatar
Darkbee
Member
 
Posts: 51
Joined: Sat Jul 06, 2013 00:48

by Darkbee » Thu Jul 11, 2013 13:45

Menche wrote:You can set the spawnpoint with this setting:
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
static_spawnpoint = x,y,z

Put that in minetest.conf or run
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
/set static_spawnpoint x,y,z
in game.


So is the static_spawnpoint is global for all worlds, or is it world specific if you do it in-game?
Minetest [mahyntest]
adjective
1. The most superior block sandbox game. Have you played Minetest? It's the minetest!
2. The greatest in quantity. I scored the minetest haul of Mese last night when mining!
 

User avatar
PilzAdam
Member
 
Posts: 4026
Joined: Fri Jul 20, 2012 16:19
GitHub: PilzAdam
IRC: PilzAdam

by PilzAdam » Thu Jul 11, 2013 14:01

Darkbee wrote:
Menche wrote:You can set the spawnpoint with this setting:
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
static_spawnpoint = x,y,z

Put that in minetest.conf or run
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
/set static_spawnpoint x,y,z
in game.


So is the static_spawnpoint is global for all worlds, or is it world specific if you do it in-game?

Its always in the global minetest.conf
 

User avatar
BrunoMine
Member
 
Posts: 902
Joined: Thu Apr 25, 2013 17:29
GitHub: BrunoMine

by BrunoMine » Fri Jul 12, 2013 01:30

/clearobjects
This command is useful in case of a crash by mobs?
The mod npcs simple_mobs caught my server and let slow. This command can unlock the server?
My small square universe under construction ... Minemacro
Comunidade Minetest Brasil
www.minetestbrasil.com
 

User avatar
BrunoMine
Member
 
Posts: 902
Joined: Thu Apr 25, 2013 17:29
GitHub: BrunoMine

by BrunoMine » Tue Jul 16, 2013 21:42

as it does to lock my blocks on my server? 'm The node but the players destroy the scenery.
My small square universe under construction ... Minemacro
Comunidade Minetest Brasil
www.minetestbrasil.com
 

User avatar
BrunoMine
Member
 
Posts: 902
Joined: Thu Apr 25, 2013 17:29
GitHub: BrunoMine

by BrunoMine » Fri Jul 19, 2013 19:39

like letting the automatic privilege? Not to be giving privilege.
Last edited by BrunoMine on Fri Jul 19, 2013 19:39, edited 1 time in total.
My small square universe under construction ... Minemacro
Comunidade Minetest Brasil
www.minetestbrasil.com
 


Return to Minetest Problems

Who is online

Users browsing this forum: No registered users and 9 guests

cron