Menche's Freebuild Server

MisterBananas
Member
Posts: 113
Joined: Sun Apr 22, 2012 18:22

by MisterBananas » Post

If the bones mod is ever added I'm going apesh** on a hunt for everything I can find and put torches everywhere to stop spawns.
Pkmn White 2 FC: 4213-1790-7873

User avatar
jon98000
Member
Posts: 53
Joined: Sat Apr 21, 2012 14:53

by jon98000 » Post

MisterBananas wrote:If the bones mod is ever added I'm going apesh** on a hunt for everything I can find and put torches everywhere to stop spawns.
Why get the bones mod? I Saw it and it is the stupidest thing ever.
-Jon98000

User avatar
jon98000
Member
Posts: 53
Joined: Sat Apr 21, 2012 14:53

by jon98000 » Post

the server down?
-Jon98000

MisterBananas
Member
Posts: 113
Joined: Sun Apr 22, 2012 18:22

by MisterBananas » Post

jon98000 wrote:
MisterBananas wrote:If the bones mod is ever added I'm going apesh** on a hunt for everything I can find and put torches everywhere to stop spawns.
Why get the bones mod? I Saw it and it is the stupidest thing ever.
Agreed. That's why I'd go on a spree to stop as many things from spawning as possible.
Pkmn White 2 FC: 4213-1790-7873

User avatar
Keegan
Member
Posts: 332
Joined: Thu Jun 14, 2012 18:31

by Keegan » Post

DONT get bone mods plz. i was on gamebooms server and i died and i never found my bones
Owner of Keegan's server address>66.227.221.69:30000<port

User avatar
Menche
Member
Posts: 1001
Joined: Sat Jul 02, 2011 00:43
IRC: Menchers
In-game: Menche
Location: An island in a lava lake.

by Menche » Post

I'll update to 0.4.2-rc1 later today or maybe tomorrow. Right now I'm modifying flowers mod to work with 0.4.3's built-in wool and dyes. I'm not going to add mobs/vaults, the vaults were spawning all over the place on my test world.
Last edited by Menche on Tue Jul 31, 2012 19:36, edited 1 time in total.
An innocent kitten dies every time you top-post.

User avatar
Neuromancer
Member
Posts: 964
Joined: Tue Jun 12, 2012 22:28
GitHub: Neuromancer56

by Neuromancer » Post

Menche wrote:
RandomBot wrote:well if youre adding mobs, death will need to have consequences.
i request the bones mod to be added along side the new version.
I'm going to try to remove the dungeon masters from the mobs mod, besides, they don't do damage, they just wander around.
Are you talking about the Animals mod or something else? Also the Animals mod is the laggiest Mod ever. I get this grey wall of nothingness where nothing renders, and the world keeps shrinking when I install the Animals Mod. And I wrote the butterfly addon to Animals, and I never install Animals anymore.
Last edited by Neuromancer on Tue Jul 31, 2012 19:45, edited 1 time in total.

User avatar
Menche
Member
Posts: 1001
Joined: Sat Jul 02, 2011 00:43
IRC: Menchers
In-game: Menche
Location: An island in a lava lake.

by Menche » Post

Neuromancer wrote:
Menche wrote:
RandomBot wrote:well if youre adding mobs, death will need to have consequences.
i request the bones mod to be added along side the new version.
I'm going to try to remove the dungeon masters from the mobs mod, besides, they don't do damage, they just wander around.
Are you talking about the Animals mod or something else? Also the Animals mod is the laggiest Mod ever. I get this grey wall of nothingness where nothing renders, and the world keeps shrinking when I install the Animals Mod. And I wrote the butterfly addon to Animals, and I never install Animals anymore.
I was talking about the mobs mod by celeron55, that adds vaults (dungeons) and dungeon masters. http://c55.me/blog/?p=1274
Last edited by Menche on Tue Jul 31, 2012 20:11, edited 1 time in total.
An innocent kitten dies every time you top-post.

User avatar
RandomBot
Member
Posts: 164
Joined: Sun May 20, 2012 03:46
Location: Behind you, go ahead, look....

by RandomBot » Post

>_> whats the point of a dungeon with no mobs...
"Everyone has a plan, until they get punched in the face"
- Mike Tyson

mauvebic
Member
Posts: 1550
Joined: Fri Jan 27, 2012 11:32

by mauvebic » Post

easy:

Code: Select all

NO_LAVA = false
NO_WATER = false

minetest.register_on_placenode(function ( pos,node, place)
    if node.name == 'default:lava_source' and NO_LAVA == true then
        minetest.env:remove_node(pos)
    elseif node.name == 'default:water_source' and NO_WATER == true then
        minetest.env:remove_node(pos)
    end
end)

minetest.register_chatcommand("nolava", {
    params = "<true/false>",
    description = "disable lava",
    privs = {server=true},
    func = function(name, param)
        if NO_LAVA == false then 
            NO_LAVA = true
            minetest.chat_send_player(name, "Lava disabled.")
        elseif NO_LAVA == true then
            NO_LAVA = false
            minetest.chat_send_player(name, "Lava enabled.")
        end
    end,
})
minetest.register_chatcommand("nowater", {
    params = "<true/false>",
    description = "disable water",
    privs = {server=true},
    func = function(name, param)
        if NO_WATER == false then 
            NO_WATER = true
            minetest.chat_send_player(name, "Water disabled.")
        elseif NO_WATER == true then
            NO_WATER = false
            minetest.chat_send_player(name, "Water enabled.")
        end
    end,
})

and FUBAR-strength node-ownership:

Code: Select all

-- this goes in builtin/misc_register.lua
local function is_node_owner(meta, player)
    if meta:get_string("owner") ~= player:get_player_name() and meta:get_string("owner") ~= '' then
        return false
    end
    return true
end
local can_dig = function(pos,player)
        meta = minetest.env:get_meta(pos)
        return is_node_owner(meta, player)
    endi

-- replace the default function for this one in builtin/misc_register.lua
function minetest.register_node(name, nodedef)
    nodedef.type = "node"
    if not nodedef.can_dig then nodedef.can_dig = can_dig end
    minetest.register_item(name, nodedef)
end

-- this can go in /default/init.lua or any mod folder
minetest.register_on_placenode(function(p, node, placer)
    local meta = minetest.env:get_meta(p)
    local player = placer:get_player_name()
    meta:set_string("owner",player)
end)
Last edited by mauvebic on Wed Aug 01, 2012 01:23, edited 1 time in total.

User avatar
Menche
Member
Posts: 1001
Joined: Sat Jul 02, 2011 00:43
IRC: Menchers
In-game: Menche
Location: An island in a lava lake.

by Menche » Post

SegFaulter wrote: because all of the others have not randomly banned me for no reason.
No reason? You were losing your temper and starting fights. I was simply fed up, and kicked you until I could think of a resolution.
An innocent kitten dies every time you top-post.

User avatar
Keegan
Member
Posts: 332
Joined: Thu Jun 14, 2012 18:31

by Keegan » Post

Max: Why did you grieft my house and why are you acting like this?
Owner of Keegan's server address>66.227.221.69:30000<port

User avatar
VanessaE
Moderator
Posts: 4655
Joined: Sun Apr 01, 2012 12:38
GitHub: VanessaE
IRC: VanessaE
In-game: VanessaE
Location: Western NC
Contact:

by VanessaE » Post

Alright people, that's about enough. Knock it off or take it to email.
You might like some of my stuff: Plantlife ~ More Trees ~ Home Decor ~ Pipeworks ~ HDX Textures (64-512px)

User avatar
InfinityProject
Member
Posts: 1009
Joined: Sat Mar 17, 2012 00:52
Location: World of Infinity, US

by InfinityProject » Post

Cool you go build on ecube's server. Let the people who like menche's server enjoy it.

User avatar
Menche
Member
Posts: 1001
Joined: Sat Jul 02, 2011 00:43
IRC: Menchers
In-game: Menche
Location: An island in a lava lake.

by Menche » Post

If you've given up on this server, why are you devoting so much time to griefing it?
Last edited by Menche on Wed Aug 01, 2012 03:14, edited 1 time in total.
An innocent kitten dies every time you top-post.

User avatar
Keegan
Member
Posts: 332
Joined: Thu Jun 14, 2012 18:31

by Keegan » Post

Menche can you make sure that no one is on the other server and I'm gonna make a forum tomorrow for it. Tell bryanfrost not to build in it yet I'm gonna start his teleport to his teleporter soon. Thanks
Owner of Keegan's server address>66.227.221.69:30000<port

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

by graywolf » Post

whats the link of the registration?? O.o
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

User avatar
jon98000
Member
Posts: 53
Joined: Sat Apr 21, 2012 14:53

by jon98000 » Post

Brent009 had his privs taken away for 2 days for greifing, and it has been around 3 weeks. Now, since he already has an account and a password, would you mind giving him privs back? The reason i want his privs given back is because he has a locking chest in my place, but i cant remove it, and i want him and me to build togethert. Please menche give him his privs back.
-Jon98000

User avatar
KatieKitten
Member
Posts: 105
Joined: Wed Jun 27, 2012 02:13
Location: USA, FL

by KatieKitten » Post

h thought it was taken away perm for greifing alot of peoples stuff
Founder and Mayor of the Sealife Cove. Mayor of Glue City.

Kacey
Member
Posts: 133
Joined: Sat May 05, 2012 16:20

by Kacey » Post

y did nobody vote for me for vice mayor
and i really wish i could build in my city
on a scale of 1 to 10 i am OVER 9000!!!!!!!!!!!!!!!!

User avatar
KatieKitten
Member
Posts: 105
Joined: Wed Jun 27, 2012 02:13
Location: USA, FL

by KatieKitten » Post

well you havent been in the city that long thats prob why no one voted for you. there are other jobs that need filling in the town you can alwase be one of those.
Founder and Mayor of the Sealife Cove. Mayor of Glue City.

Kacey
Member
Posts: 133
Joined: Sat May 05, 2012 16:20

by Kacey » Post

i am now building my own city called outland city
on a scale of 1 to 10 i am OVER 9000!!!!!!!!!!!!!!!!

User avatar
ecube
Member
Posts: 33
Joined: Thu May 10, 2012 03:01
Location: I forgot....

by ecube » Post

You just killed my server XD
Oh well, I was kinda tired of owning a server. Can I register? name's ecube
This is a test

User avatar
Menche
Member
Posts: 1001
Joined: Sat Jul 02, 2011 00:43
IRC: Menchers
In-game: Menche
Location: An island in a lava lake.

by Menche » Post

ecube wrote:You just killed my server XD
Oh well, I was kinda tired of owning a server. Can I register? name's ecube
Password set and sent to forum email.
An innocent kitten dies every time you top-post.

User avatar
InfinityProject
Member
Posts: 1009
Joined: Sat Mar 17, 2012 00:52
Location: World of Infinity, US

by InfinityProject » Post

What's this "we" you speak of? Didn't you say this server was crap?

Post Reply

Who is online

Users browsing this forum: No registered users and 34 guests