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

Talk about creating Grimrock 1 levels and mods here. Warning: forum contains spoilers!
User avatar
Komag
Posts: 3654
Joined: Sat Jul 28, 2012 4:55 pm
Location: Boston, USA

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

Post by Komag »

Oh that's cool, I like the idea :)
Finished Dungeons - complete mods to play
User avatar
batupata
Posts: 8
Joined: Wed Oct 17, 2012 6:31 pm
Location: Finland

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

Post by batupata »

Here's a small alcove that allows items to be placed on those stained glass recesses:
SpoilerShow
Image

Code: Select all

defineObject{
	name = "stained_glass_alcove",
	class = "Alcove",
   anchorPos = vec(0, 0.9, 0),
   targetPos = vec(0, 0.9, 0),
	targetSize = vec(0.6, 0.3, 0.6),
	placement = "wall",
	replacesWall = false,
	editorIcon = 92,
}
I'm not very good with this alcove stuff, so every single item is centered and all types of items are allowed to be placed on these alcoves (probably easy fix) :D
User avatar
Neikun
Posts: 2457
Joined: Thu Sep 13, 2012 1:06 pm
Location: New Brunswick, Canada
Contact:

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

Post by Neikun »

Oh man, awesome! I thought about doing that way back just before I got side tracked with the slimes.
I saw the model and said "This has a ledge. And where there's a ledge, there can be an alcove!" lol
"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
Brodie301
Posts: 286
Joined: Sun Apr 08, 2012 6:00 pm
Location: Mississippi, USA

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

Post by Brodie301 »

How do you get Huder's ledge to work? Have model but no script.
The FORCE is with me!!!
User avatar
Neikun
Posts: 2457
Joined: Thu Sep 13, 2012 1:06 pm
Location: New Brunswick, Canada
Contact:

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

Post by Neikun »

Code: Select all

defineObject{
	name = "wall_shelf",
	class = "Alcove",
	model = "mod_assets/models/ledge.fbx",
	replacesWall = false,
	anchorPos = vec(0, 0.87, -0.25),
	targetPos = vec(0,0.88,-0.25),
	targetSize = vec(0.6, 0.5, 0.6),
	placement = "wall",
	editorIcon = 8,
}
That's what mine looks like. My .model file is in my models folder. Also, I accidentally renamed the model as ledge.
"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
Brodie301
Posts: 286
Joined: Sun Apr 08, 2012 6:00 pm
Location: Mississippi, USA

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

Post by Brodie301 »

Thanks! Like a charm
The FORCE is with me!!!
User avatar
Neikun
Posts: 2457
Joined: Thu Sep 13, 2012 1:06 pm
Location: New Brunswick, Canada
Contact:

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

Post by Neikun »

The way I see a lockpicking system working in Grimrock with my new alcove is like this:

Because the lock behind the alcove still functions normally, you can have options for both a key and a lockpick to toggle the door.
So lets say you have the lock opened by an iron key, and the alcove only takes a lockpick.
If the player can't find the key, but has a lockpick, he can open the lock. There could be a radom chance that the lockpick breaks (Destroy the lock pick and have hudPrint("Your lockpick snapped")
"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
Neikun
Posts: 2457
Joined: Thu Sep 13, 2012 1:06 pm
Location: New Brunswick, Canada
Contact:

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

Post by Neikun »

A note socket for Phitt's temple_bookshelf_01

Code: Select all

defineObject{
	name = "bookshelf_note_socket",
	class = "Alcove",
	anchorPos = vec(-0.79, 1.8, 0.13),
	anchorRotation = vec(0,90,270),
	targetPos = vec(-0.79, 1.78, 0.13),
	targetSize = vec(0.3, 0.3, 0.3),
	placement = "wall",
	onInsertItem = function(self, item)
		return item.name == "note" and self:getItemCount() == 0 
end,
	editorIcon = 8,
}
SpoilerShow
Image
Can you find it? :twisted:
"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: The Custom Alcove Thread. (Neikun, Batty and Crisman)

Post by crisman »

SpoilerShow
top left in the second from top ^_^
Really a good spot!
User avatar
Merethif
Posts: 274
Joined: Tue Apr 24, 2012 1:58 pm
Location: Poland

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

Post by Merethif »

Neikun wrote:A note socket for Phitt's temple_bookshelf_01
That blue book in upper right corner looks like a perfect spot to put a scroll on ;-)
Ant the book stacks in middle shelf seems like a perfect spot for a gem...

EDIT:
Oh, and Neikun. I think lockpicking may need a new thread. It's really good idea and your lock alcove seems perfect for that purpose.
Post Reply