Page 1 of 1

Request: Iron golem mod

PostPosted: Tue Sep 03, 2013 21:52
by DigAmy
I have an idea: create an iron golem mod to help the player to defeat the zombies from the zombie-waves mod... can anyone do that? Please :) ^_^

PostPosted: Wed Sep 11, 2013 15:43
by Rhys
DigAmy wrote:I have an idea: create an iron golem mod to help the player to defeat the zombies from the zombie-waves mod... can anyone do that? Please :) ^_^


Uh...

PostPosted: Wed Sep 11, 2013 16:23
by TenPlus1
As far as I've heard, when the Mob Framework is complete you can have a soldier NPC protect you and your builds...

Re: Request: Iron golem mod

PostPosted: Sat Feb 21, 2015 20:54
by sloantothebone
Hmm... How do we write a script that replaces a formation of nodes, such as 4 iron blocks and a pumpkin, with a mob?

Re: Request: Iron golem mod

PostPosted: Sat Feb 21, 2015 21:50
by Napiophelios
sloantothebone wrote:Hmm... How do we write a script that replaces a formation of nodes, such as 4 iron blocks and a pumpkin, with a mob?


Teleports mod does something similar by redifining the diamond block node.

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
on_place = function(itemstack, placer, pointed_thing)
      local stack = ItemStack("default:diamondblock")
      local pos = pointed_thing.above
      if
         minetest.get_node({x=pos.x+1,y=pos.y,z=pos.z}).name=="default:diamondblock" and
         minetest.get_node({x=pos.x+1,y=pos.y,z=pos.z+1}).name=="default:diamondblock" and
         minetest.get_node({x=pos.x+1,y=pos.y,z=pos.z-1}).name=="default:diamondblock" and
         minetest.get_node({x=pos.x-1,y=pos.y,z=pos.z}).name=="default:diamondblock" and
         minetest.get_node({x=pos.x-1,y=pos.y,z=pos.z+1}).name=="default:diamondblock" and
         minetest.get_node({x=pos.x-1,y=pos.y,z=pos.z-1}).name=="default:diamondblock" and
         minetest.get_node({x=pos.x,y=pos.y,z=pos.z+1}).name=="default:diamondblock" and
         minetest.get_node({x=pos.x,y=pos.y,z=pos.z-1}).name=="default:diamondblock"
      then
         stack = ItemStack("teleports:teleport")
      end

Re: Request: Iron golem mod

PostPosted: Sun Feb 22, 2015 10:34
by twoelk
craftable mobs?
greetings you followers of Rabi Loew and doctor Frankenstein.

Re: Request: Iron golem mod

PostPosted: Mon Feb 23, 2015 16:34
by CWz
Do we really need to copy more mobs from minecraft? can't we come up with original mobs?

Re: Request: Iron golem mod

PostPosted: Tue Feb 24, 2015 19:47
by Christian9
i could make something similar maybe call them iron soldiers. there will be:
Small=half the players size
Medium=Player Size
Large=Double the player size

Re: Request: Iron golem mod

PostPosted: Tue Feb 24, 2015 20:43
by Napiophelios
CWz wrote:Do we really need to copy more mobs from minecraft? can't we come up with original mobs?


Maybe not for the main stream Minetest_game but I dont think it hurts to have this kinda stuff.
FFS I have added pumkin and melon helmets to 3-D Armor just cuz my kid digs it ha