The Custom Alcove Thread. (Neikun, Batty and Crisman)

Talk about creating Grimrock 1 levels and mods here. Warning: forum contains spoilers!
User avatar
Neikun
Posts: 2457
Joined: Thu Sep 13, 2012 1:06 pm
Location: New Brunswick, Canada
Contact:

Re: (Object Assets) Empty Catacomb as Alcove and other alcov

Post by Neikun »

You make a very good point. :o
I still have to work on my metal blockage altar haha
"I'm okay with being referred to as a goddess."
Community Model Request Thread
See what I'm working on right now: Neikun's Workshop
Lead Coordinator for Legends of the Northern Realms Project
  • Message me to join in!
User avatar
crisman
Posts: 305
Joined: Sat Sep 22, 2012 9:23 pm
Location: Italy

Re: (Object Assets) Empty Catacomb as Alcove and other alcov

Post by crisman »

I don't think that should be a problem. We are Alcove Masters right now! :lol:
I'll do that a bit later, now I'm a bit busy with something else!
User avatar
Neikun
Posts: 2457
Joined: Thu Sep 13, 2012 1:06 pm
Location: New Brunswick, Canada
Contact:

Re: (Object Assets) Empty Catacomb as Alcove and other alcov

Post by Neikun »

Haha
Alright, well this works quite well right off the bat. But I think I can make it better :twisted:

Code: Select all

cloneObject{
	name = "junk_altar",
	baseObject = "altar",
	model=  "assets/models/env/metal_junk_block.fbx",
}
I'm thinking of making a mace with the shaft model as a sort of improvised bludgeoning tool. And it's wedged in the junk.
However, last time I tried using anchorPos and anchorRotation on an altar, it crashed the editor when I placed the object.

It would appear that those commands are not applicable to an altar.
@AH, why is that? D:
"I'm okay with being referred to as a goddess."
Community Model Request Thread
See what I'm working on right now: Neikun's Workshop
Lead Coordinator for Legends of the Northern Realms Project
  • Message me to join in!
User avatar
crisman
Posts: 305
Joined: Sat Sep 22, 2012 9:23 pm
Location: Italy

Re: (Object Assets) Empty Catacomb as Alcove and other alcov

Post by crisman »

Nice idea, find a weapon inside the garbage. I think you should try that with the eye socket.
User avatar
Neikun
Posts: 2457
Joined: Thu Sep 13, 2012 1:06 pm
Location: New Brunswick, Canada
Contact:

Re: (Object Assets) Empty Catacomb as Alcove and other alcov

Post by Neikun »

eyesocket is wall positioned. D: I suppose I can try it, but don't hope for too too much.
"I'm okay with being referred to as a goddess."
Community Model Request Thread
See what I'm working on right now: Neikun's Workshop
Lead Coordinator for Legends of the Northern Realms Project
  • Message me to join in!
User avatar
crisman
Posts: 305
Joined: Sat Sep 22, 2012 9:23 pm
Location: Italy

Re: (Object Assets) Empty Catacomb as Alcove and other alcov

Post by crisman »

True, but you can always 'cheat' ;)
Image
I'm working on the dragon, and I'm using a eye socket. I've placed it on a wall, and then cancelled :D

EDIT:
Here's the dragon socket, it accepts magic orb, zhandul and ore.
SpoilerShow
defineObject{
name = "dragon_socket",
class = "Alcove",
anchorPos = vec(0.0, 1.49, 0.65),
targetPos = vec(0.0, 1.35, 0.35),
targetSize = vec(0.3, 0.3, 0.3),
placement = "wall",
onInsertItem = function(self, item)
return (item.name == "magic_orb" or item.name == "zhandul_orb" or

item.name == "machine_part_north") and self:getItemCount() == 0
end,
editorIcon = 92,
}
Image
It's not easy to place it, since you have to put it on a wall first, and then eliminate the wall.
User avatar
Neikun
Posts: 2457
Joined: Thu Sep 13, 2012 1:06 pm
Location: New Brunswick, Canada
Contact:

Re: (Object Assets) Empty Catacomb as Alcove and other alcov

Post by Neikun »

Now just mix that up with the fire mouth dragon statue so that when you remove the item, the fire goes out and you have yourself some seriously wicked shit. haha.
On my to-do list tomorrow: modify an eye socket to adjust my metal_junk_block altar.
If I do it right, I won't even need a junk_block defined as an altar.
"I'm okay with being referred to as a goddess."
Community Model Request Thread
See what I'm working on right now: Neikun's Workshop
Lead Coordinator for Legends of the Northern Realms Project
  • Message me to join in!
User avatar
crisman
Posts: 305
Joined: Sat Sep 22, 2012 9:23 pm
Location: Italy

Re: (Object Assets) Empty Catacomb as Alcove and other alcov

Post by crisman »

Neikun wrote:Now just mix that up with the fire mouth dragon statue so that when you remove the item, the fire goes out and you have yourself some seriously wicked shit. haha.
On my to-do list tomorrow: modify an eye socket to adjust my metal_junk_block altar.
If I do it right, I won't even need a junk_block defined as an altar.
Ahah that's cool. I'll try that tomorrow, now it's definitely time to sleep for me (big deal, it's 5am... :o )
If you encounter problems with the junk block we can try that together ;)
bye!
User avatar
Neikun
Posts: 2457
Joined: Thu Sep 13, 2012 1:06 pm
Location: New Brunswick, Canada
Contact:

Re: (Object Assets) Empty Catacomb as Alcove and other alcov

Post by Neikun »

This was quite easy to do, actually.
My only problem with it is that because it's placement is wall, it makes it a bit of a pain to place on a floor item.
This works well on all sides of the blockage. Only one side has clippage, but it's not intensely noticeable as the model for the blockage has clippage itself.
It really gives the feeling like your taking junk out of the pile.
Next step, make a shaft mace.

Code: Select all

defineObject{
	name = "shaft_socket",
	class = "Alcove",
	anchorPos = vec(0.21, 1.3, 0.6),
	anchorRotation = vec(0,30,75),
	targetPos = vec(0.21, 1.3, 0.6),
	targetSize = vec(5, 5, 5),
	placement = "wall",
	onInsertItem = function(self, item)
		return item.name == "machine_junk5" and self:getItemCount() == 0
	end,
	editorIcon = 92,
}
"I'm okay with being referred to as a goddess."
Community Model Request Thread
See what I'm working on right now: Neikun's Workshop
Lead Coordinator for Legends of the Northern Realms Project
  • Message me to join in!
User avatar
crisman
Posts: 305
Joined: Sat Sep 22, 2012 9:23 pm
Location: Italy

Re: (Object Assets) Empty Catacomb as Alcove and other alcov

Post by crisman »

I've tried it out and it's looking fantastic! Yes, placing socket on the wall and then remove it it's a bit of annoying. But it works well!
make a shaft as a weapon I think it's the easiest part, I've done a pickaxe without any problems ^^
Post Reply