glomie's server

User avatar
WhirlwaveX
New member
 
Posts: 8
Joined: Sat Sep 15, 2012 20:12

by WhirlwaveX » Fri Oct 12, 2012 21:31

As a recent turn of events, I would like to say sorry in behalf of the missunderstood that happened day 12. A good player and good friend was treated to be banned by my cousins who where visiting from france, I believe they had already played the game, on this server before, but i am uncertain. For this, I most deeply and sincerely apolagize for any of the actions that happened in that day, and apolagize even more to the person that got threathened. I would also like to thank DarkKnight for his help, as he warned me the doings of my cousins on my computer while I was away,

Sincerely sorry,

Whirlwave
If you read this text it probably means you´re playing minetest. If you havent already, please do, its awesome. ´Nuff said.
 

User avatar
Dogzilla131
Member
 
Posts: 46
Joined: Sun Oct 14, 2012 14:37

by Dogzilla131 » Sun Oct 14, 2012 14:40

Can you make money privilege a default.
Live Minetest
 

babyface1031
Member
 
Posts: 51
Joined: Sat Sep 29, 2012 20:20

by babyface1031 » Sun Oct 14, 2012 15:32

can i have money privs please
 

Ghost
New member
 
Posts: 9
Joined: Sat Sep 22, 2012 20:24

by Ghost » Sun Oct 14, 2012 18:36

Globis,

I am in desperate need of the "fly" priv. Whirlwave and I are undertaking a massive build and I need fly to help. I cannot say exactly what we are doing on the public forum, but i assure you if is for a great cause.

My in game name is: Ghost
 

Ghost
New member
 
Posts: 9
Joined: Sat Sep 22, 2012 20:24

by Ghost » Sun Oct 14, 2012 18:51

I cant get in the server
 

babyface1031
Member
 
Posts: 51
Joined: Sat Sep 29, 2012 20:20

by babyface1031 » Sun Oct 14, 2012 19:28

ok not just me then i cant get in too
 

User avatar
TeekExtremo
New member
 
Posts: 1
Joined: Sun Oct 14, 2012 19:28

by TeekExtremo » Sun Oct 14, 2012 19:32

Your server does not work!
 

User avatar
WhirlwaveX
New member
 
Posts: 8
Joined: Sat Sep 15, 2012 20:12

by WhirlwaveX » Sun Oct 14, 2012 20:41

No one can get in now.

It seems i cant even load the media, it just stops as soon as we write the password.

Also I would like to make a request. As said above, Ghost and I are making a rather big build thats for the better good of the server, but we need help. First, i would like to know if theres a way to do a private chat, and second, (and i know its againsnt the rules), can you give me and Ghost teleport privelage? Our build requires us to walk up to 1200 blocks to get from one point of the build to the other, so the priv would come in handy.
If you read this text it probably means you´re playing minetest. If you havent already, please do, its awesome. ´Nuff said.
 

Ghost
New member
 
Posts: 9
Joined: Sat Sep 22, 2012 20:24

by Ghost » Mon Oct 15, 2012 22:39

another day, and the server is still down
 

babyface1031
Member
 
Posts: 51
Joined: Sat Sep 29, 2012 20:20

by babyface1031 » Mon Oct 15, 2012 23:34

ghost the server is up and running
 

glomie
Member
 
Posts: 141
Joined: Sun Aug 07, 2011 19:41

by glomie » Wed Oct 17, 2012 16:16

added this in init.lua :
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_joinplayer(function(player)
        minetest.env:set_timeofday(0.3)
        minetest.set_player_privs(player:get_player_name(), {money=true,interact=true,shout=true,})
end)

So, this time everybody should have money priv
Last edited by glomie on Wed Oct 17, 2012 16:19, edited 1 time in total.
Sorry for my bad english...
 

User avatar
thefamilygrog66
Member
 
Posts: 169
Joined: Mon Jul 09, 2012 19:08

by thefamilygrog66 » Thu Oct 18, 2012 19:46

Hey globis,

Here's what I've used to repair the map.sqlite file myself - I've successfully fixed worlds that wouldn't load with it, anyway. The command lines are for windows, maybe someone else could translate them to linux.

1) download the sqlite binary from here: http://www.sqlite.org/download.html

2) extract the zip file, cut your map.sqlite file and paste it into the unzipped sqlite folder

3) in Windows, open a command prompt (run cmd) and navigate to that sqlite folder

4) type the following three lines in:

echo .dump | sqlite3.exe map.sqlite > map.sql

ren map.sqlite map.sqlite.bak

sqlite3.exe -init map.sql map.sqlite

5) cut the resulting (new) map.sqlite file and paste it back into its world folder in minetest

Hope that helps!

Grog
 

glomie
Member
 
Posts: 141
Joined: Sun Aug 07, 2011 19:41

by glomie » Thu Oct 18, 2012 20:32

For linux:
Install sqlite3 package
go where is map.sqlite
then
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
echo .dump | sqlite3 map.sqlite > map.sql
mv map.sqlite map.sqlite-bak
sqlite3 -init map.sql map.sqlite

then when you enter in sqlite3 prompt type .quit
if it work you can remove map.sqlite-bak and map.sq
Last edited by glomie on Thu Oct 18, 2012 20:51, edited 1 time in total.
Sorry for my bad english...
 

Ghost
New member
 
Posts: 9
Joined: Sat Sep 22, 2012 20:24

by Ghost » Thu Oct 18, 2012 21:24

Globis,

i am just reminding you of Whirlwave and I request. Please respond.

-Ghost
 

glomie
Member
 
Posts: 141
Joined: Sun Aug 07, 2011 19:41

by glomie » Thu Oct 18, 2012 23:07

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_joinplayer(function(player)
        minetest.env:set_timeofday(0.3)
        privs=minetest.get_player_privs(player:get_player_name())
        privs.money=true
        minetest.set_player_privs(player:get_player_name(), privs)
end)
Sorry for my bad english...
 

User avatar
thefamilygrog66
Member
 
Posts: 169
Joined: Mon Jul 09, 2012 19:08

by thefamilygrog66 » Fri Oct 19, 2012 02:51

Hey globis,

Perhaps the VACUUM command on the database while it's loaded into sqlite3 would shrink its size a bit? Maybe someone else can confirm this, but it seems to make sense.

Grog
 

babyface1031
Member
 
Posts: 51
Joined: Sat Sep 29, 2012 20:20

by babyface1031 » Fri Oct 19, 2012 16:57

globis here is a link to the one mod i was talking about
http://minetest.net/forum/viewtopic.php?id=2178
 

babyface1031
Member
 
Posts: 51
Joined: Sat Sep 29, 2012 20:20

by babyface1031 » Fri Oct 19, 2012 17:04

 

babyface1031
Member
 
Posts: 51
Joined: Sat Sep 29, 2012 20:20

by babyface1031 » Fri Oct 19, 2012 23:48

http://minetest.net/forum/viewtopic.php?pid=32039
http://minetest.net/forum/viewtopic.php?id=2383
can we get these to go with the dyes and also how do we colect flowers if you know
 

SilverWolfLily22
Member
 
Posts: 76
Joined: Sat Oct 20, 2012 10:11

by SilverWolfLily22 » Sat Oct 20, 2012 10:13

Hi globis could you please install this mod if you have time?
http://minetest.net/forum/viewtopic.php?id=3256
I know we have sethome but this would be nice to have :))
I love hunting ;)
 

User avatar
Adarqet
Member
 
Posts: 173
Joined: Thu Oct 04, 2012 14:05

by Adarqet » Sat Oct 20, 2012 13:38

Hey Globis My game name is HDR you should download papyrus bed
Guns don't kill people, Lag kills people.
 

User avatar
Adarqet
Member
 
Posts: 173
Joined: Thu Oct 04, 2012 14:05

by Adarqet » Sun Oct 21, 2012 05:20

is the server down
Guns don't kill people, Lag kills people.
 

User avatar
BigBaller420
Member
 
Posts: 15
Joined: Sun Jun 03, 2012 18:37

by BigBaller420 » Sun Oct 21, 2012 05:57

This is a great server, sometimes laggy but usually very good.... Globis needs to add more coins to the game, fix the animals, and add more deposit boxes at the spawn tho.

Check out the Minetest Mega-Mart, Pawn Shop and The biggest Hydro Grow Op! ---> climb the ropes at the spawn and fallow the trail with trees to 1_Rusty_Kunt's Sky Estate. :)
HeavyDutyHorsePlay @ Youtube.com
 

glomie
Member
 
Posts: 141
Joined: Sun Aug 07, 2011 19:41

by glomie » Sun Oct 21, 2012 15:05

Mod installed.
Sometime you can't connect or you have lag, because too many players.
Now everybody have fly privs (port 30000 only)
Sorry for my bad english...
 

User avatar
BigBaller420
Member
 
Posts: 15
Joined: Sun Jun 03, 2012 18:37

by BigBaller420 » Mon Oct 22, 2012 00:31

Check out The All New MINETEST MEGA MART & PAWN SHOP --- LOCATED AT +45 DIRTECTLY OVER /SPAWN, over 50 different items to buy and sell =)
HeavyDutyHorsePlay @ Youtube.com
 

trukoil
Member
 
Posts: 145
Joined: Mon Oct 22, 2012 03:32

by trukoil » Mon Oct 22, 2012 03:34

Nice server, have you thought to insert technic mod in the game?
I don't always sign a post
but when i do, i dig.
 

User avatar
BigBaller420
Member
 
Posts: 15
Joined: Sun Jun 03, 2012 18:37

by BigBaller420 » Mon Oct 22, 2012 03:59

The Server has been very slow lately.. O_o I dont know if it is ecause of all the water dumped on Iroman's castle or just increased traffic to the server.. either way I can no longer connect as often as I would like too :/
HeavyDutyHorsePlay @ Youtube.com
 

User avatar
graywolf
Member
 
Posts: 95
Joined: Fri May 11, 2012 14:25

by graywolf » Mon Oct 22, 2012 11:44

Hey glomie,this server won't let me join always,:C
We are currently playing in the server on jachoo's server.

If you wanna Go to Our Survival Island,its in Jachoo's Server. Click Here: http://minetest.net/forum/viewtopic.php?id=2664
 

trukoil
Member
 
Posts: 145
Joined: Mon Oct 22, 2012 03:32

by trukoil » Mon Oct 22, 2012 12:10

Now it's going, i'm logged in.
I don't always sign a post
but when i do, i dig.
 

glomie
Member
 
Posts: 141
Joined: Sun Aug 07, 2011 19:41

by glomie » Tue Oct 23, 2012 17:04

Ho, and new deposit at spawn, for rosebush from hydro mod.
Sorry for my bad english...
 

PreviousNext

Return to Minetest Servers

Who is online

Users browsing this forum: Bing [Bot] and 14 guests

cron