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: The Custom Alcove Thread. (Neikun, Batty and Crisman)

Post by Neikun »

Haha, even if he does not know it.

This is my WIP receptor alcove. I'm using the magic orbs to fill it. -will probably clone the orbs and make them into big gems for puzzle purposes-
I like how they fit, though It would be better with some sort of particle effect that makes them look like they're floating on energy.
I have to go to work soon, so I don't have the time right now to work on it further.

Code: Select all

defineObject{
	name = "receptor_alcove",
	class = "Alcove",
	model = "assets/models/env/spell_receptor.fbx",
	replacesWall = false,
	anchorPos = vec(0, 1, -0.17),
	targetPos = vec(0,0.88,-0.25),
	targetSize = vec(0.6, 0.5, 0.6),
	placement = "wall",
	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
akroma222
Posts: 1029
Joined: Thu Oct 04, 2012 10:08 am

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

Post by akroma222 »

You guys = "ALCOVE MASTERS"

end
User avatar
Kuningas
Posts: 268
Joined: Wed Apr 11, 2012 10:29 pm
Location: Northern Finland

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

Post by Kuningas »

Hit a snatch...

Altars seem to catch thrown objects, probably because they are placed on the floor, whereas alcoves don't. So an altar placed on a wall won't catch them either, they will fall on the ground -- and coincidentally inside the altar model. I have no idea how to counter this.
BASILEUS
User avatar
Grimwold
Posts: 511
Joined: Thu Sep 13, 2012 11:45 pm
Location: A Dungeon somewhere in the UK

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

Post by Grimwold »

Kuningas wrote:Hit a snatch...

Altars seem to catch thrown objects, probably because they are placed on the floor, whereas alcoves don't. So an altar placed on a wall won't catch them either, they will fall on the ground -- and coincidentally inside the altar model. I have no idea how to counter this.
This is actually very interesting to know... since throwing an object onto an altar activates it (tested), it could turn the alter into a pressure plate.
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 »

Kuningas wrote:Hit a snatch...

Altars seem to catch thrown objects, probably because they are placed on the floor, whereas alcoves don't. So an altar placed on a wall won't catch them either, they will fall on the ground -- and coincidentally inside the altar model. I have no idea how to counter this.
Interesting problem... maybe a teleporter for only items placed on that square...?
User avatar
Kuningas
Posts: 268
Joined: Wed Apr 11, 2012 10:29 pm
Location: Northern Finland

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

Post by Kuningas »

crisman wrote:
Kuningas wrote:Hit a snatch...

Altars seem to catch thrown objects, probably because they are placed on the floor, whereas alcoves don't. So an altar placed on a wall won't catch them either, they will fall on the ground -- and coincidentally inside the altar model. I have no idea how to counter this.
Interesting problem... maybe a teleporter for only items placed on that square...?
Hmm, will probably have to script it -- thrown items are still flying when they go through a regular teleporter.

It does work as an emergency solution, though.
BASILEUS
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 dear. That is an issue. :o
Perhaps an invisible teleporter activated by item only that sends the item back to the square thrown? is that possible? hmm

Testing it. accidentally discovered a cool puzzle mechanic. :o

I wish I new how to change where exactly it appears in a square.
"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
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 »

Kuningas wrote: I can see it now, all we need is tables and pints o' foamy meadddd and we have Valhalla... An Alcove Deities' Valhalla!
I'm glad you all like those hanging shields.
Speaking of mead hall in Valhalla, I'm posting something I've done today (it's not about alcove, but since there's no custom items thread, I'm posting it here as a bonus to shield hook script. I hope you don't mind)
Image

As soon as I finish custom icons for those shields I'll share DSS and scripts.

EDIT:
You can download textures, models and icons here: http://ge.tt/8cPNsHP?c
The blue shield was slightly amended so it looks a bit different then on the screen shot above.
Icons look somewhat awkward though and at first glance those shields look like Easter eggs ;-)

Materials:
SpoilerShow
-- ROUND SHIELDS MATERIALS
defineMaterial{
name = "small_shield_ice",
diffuseMap = "mod_assets/textures/small_shield_ice_dif.tga",
specularMap = "assets/textures/items/small_shield_spec.tga",
doubleSided = false,
lighting = true,
alphaTest = false,
blendMode = "Opaque",
textureAddressMode = "Wrap",
glossiness = 20,
depthBias = 0,
}

defineMaterial{
name = "small_shield_fire",
diffuseMap = "mod_assets/textures/small_shield_fire_dif.tga",
specularMap = "assets/textures/items/small_shield_spec.tga",
doubleSided = false,
lighting = true,
alphaTest = false,
blendMode = "Opaque",
textureAddressMode = "Wrap",
glossiness = 20,
depthBias = 0,
}
Items:
SpoilerShow
-- ROUND SHIELDS

cloneObject{
name = "round_shield_ice",
baseObject = "round_shield",
uiName = "Blue shield",
model = "mod_assets/models/env/small_shield_ice.fbx",
gfxAtlas = "mod_assets/textures/custom_icon_atlas.tga",
gfxIndex = 0,
}

cloneObject{
name = "round_shield_fire",
baseObject = "round_shield",
uiName = "Red shield",
model = "mod_assets/models/env/small_shield_fire.fbx",
gfxAtlas = "mod_assets/textures/custom_icon_atlas.tga",
gfxIndex = 1,
}
Last edited by Merethif on Thu Oct 11, 2012 4:01 am, edited 3 times in total.
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 »

THAT LOOKS AWESOOOOOOOOME
My boyfriend and I are on Skype and he had a kick out of my reaction. Good job xD
"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 »

WOW good job! *_*
You are really good with texturing!

EDIT: mind if I gave them some extra power like fire / ice resistance? :D
(never understood the reason why ice resistance exists...)
Post Reply