Corrupt wallset (1.2)

Talk about creating Grimrock 1 levels and mods here. Warning: forum contains spoilers!
User avatar
Asteroth
Posts: 471
Joined: Wed Oct 24, 2012 10:41 am
Location: Eastern U.S.

Re: Corrupt wallset

Post by Asteroth »

I updated the wallset (and download). I realized it's not too usefull without stairs, so I added stairs. This was also the first time I've tweaked something beyond retexturing. I added small blood-splatters to the stairs themselves. While there hard to notice and didn't come out too well I think they still improve the ambience.
I am the God of darkness and corruption.
viewtopic.php?f=14&t=4250
User avatar
Neikun
Posts: 2457
Joined: Thu Sep 13, 2012 1:06 pm
Location: New Brunswick, Canada
Contact:

Re: Corrupt wallset (1.1)

Post by Neikun »

You should put a link in the first post.
"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
Ciccipicci
Posts: 154
Joined: Mon Oct 08, 2012 12:55 am

Re: Corrupt wallset (1.1)

Post by Ciccipicci »

I've downloaded the pack again and I've found some errors in the code easily adjustable. For the stairs one texture isn't where it should to be and the objects.lua file is missing as before.
User avatar
Asteroth
Posts: 471
Joined: Wed Oct 24, 2012 10:41 am
Location: Eastern U.S.

Re: Corrupt wallset

Post by Asteroth »

Ciccipicci wrote:Man. I like your set, but you've forgotten to release the objects.lua file into the pack.
Are there any objects? (If theres something stupid about what I've just said remember I'm new.)
I am the God of darkness and corruption.
viewtopic.php?f=14&t=4250
User avatar
Ciccipicci
Posts: 154
Joined: Mon Oct 08, 2012 12:55 am

Re: Corrupt wallset (1.1)

Post by Ciccipicci »

Well, your set is selectable only in the properties window of a level to change the wall set. Even doing this, pillars, doors, etc don't change their aspect. Plus of this, the asset browser list is empty of props, etc of your set.
User avatar
Asteroth
Posts: 471
Joined: Wed Oct 24, 2012 10:41 am
Location: Eastern U.S.

Re: Corrupt wallset (1.1)

Post by Asteroth »

Ciccipicci wrote:Well, your set is selectable only in the properties window of a level to change the wall set. Even doing this, pillars, doors, etc don't change their aspect. Plus of this, the asset browser list is empty of props, etc of your set.
Okay, If I add objects.lua do I just copy materials into it? I have only used it by selecting it as a wallset, not that I have yet got to using it other than to test it out and take screenshots. I would like to solve the problem.
I am the God of darkness and corruption.
viewtopic.php?f=14&t=4250
User avatar
msyblade
Posts: 792
Joined: Fri Oct 12, 2012 4:40 am
Location: New Mexico, USA
Contact:

Re: Corrupt wallset (1.1)

Post by msyblade »

I think what is being pointed out is that the Wallset, while gorgeous, will be severely limited in how it can be implemented if it does not include doorways, an alcove, an altar and some statues to match. I have this downloaded and am tinkering with a dungeon where this is the first floor only.I can use it to set a mood for the rest of the mod early, but cannot build any mechanics around it because no objects match.But I could see entire mods being built around it if it were complete.

also, magical light sources and ceiling lamps are blue and just plain do not look good here. You need that yellow/red natural torchlight to make it pop. Build a hallway going two directions from where you stand and put ceiling lamps down one and torchlight down the other. look down the ceiling lamp hallway then turn once so it changes to torchlight. The difference is startling. In fact, i have decided to go back through my mod with this stark contrast in mind.

got a solution here if you want the natural light but dont want the party to have their own light,

viewtopic.php?f=14&t=3946
Currently conspiring with many modders on the "Legends of the Northern Realms"project.

"You have been captured by a psychopathic diety who needs a new plaything to torture."
Hotel Hades
User avatar
Ciccipicci
Posts: 154
Joined: Mon Oct 08, 2012 12:55 am

Re: Corrupt wallset (1.1)

Post by Ciccipicci »

I've done myself a little update of this set, even if a lot of model for dooways alcove etc are NOT present (it's up to mod creator to resolve this 'cause I don't have the time to make this, sorry).

For who has downloaded this set copy/paste the code below into mod_assets/objects.lua
SpoilerShow
defineObject{
name = "corrupt_pillar",
class = "Decoration",
model = "mod_assets/models/corrupt_pillar.fbx",
placement = "pillar",
editorIcon = 108,
}

defineObject{
name = "corrupt_portcullis",
class = "Door",
model = "assets/models/env/door_portcullis.fbx",
doorFrameModel = "mod_assets/models/corrupt_door_frame.fbx",
pullChainModel = "assets/models/env/door_pullchain.fbx",
pullChainAnim = "assets/animations/env/door_pullchain.fbx",
openSound = "gate_open",
closeSound = "gate_close",
lockSound = "gate_lock",
killPillars = true,
openVelocity = 1.3,
closeVelocity = 0,
closeAcceleration = -10,
sparse = true,
placement = "wall",
editorIcon = 124,
}

defineObject{
name = "corrupt_stairs_down",
class = "Stairs",
model = "mod_assets/models/corrupt_stairs_down.fbx",
down = true,
editorIcon = 48,
}

defineObject{
name = "corrupt_stairs_up",
class = "Stairs",
model = "mod_assets/models/corrupt_stairs_up.fbx",
down = false,
editorIcon = 44,
}

defineObject{
name = "corrupt_door_iron",
class = "Door",
model = "assets/models/env/door_iron.fbx",
doorFrameModel = "mod_assets/models/corrupt_door_frame_wide.fbx",
pullChainModel = "assets/models/env/door_pullchain.fbx",
pullChainAnim = "assets/animations/env/door_pullchain.fbx",
openSound = "gate_iron_open",
closeSound = "gate_iron_close",
lockSound = "gate_lock",
killPillars = true,
doubleDoor = true,
openVelocity = 1.1,
closeVelocity = -1.1,
closeAcceleration = 0,
placement = "wall",
editorIcon = 16,
}

defineObject{
name = "corrupt_ceiling_shaft",
class = "Decoration",
model = "mod_assets/models/corrupt_ceiling_pit.fbx",
placement = "ceiling",
editorIcon = 104,
}

defineObject{
name = "corrupt_floor_drainage",
class = "Decoration",
model = "mod_assets/models/corrupt_floor_drainage.fbx",
placement = "floor",
replacesFloor = true,
editorIcon = 136,
}

defineObject{
name = "corrupt_wall_drainage",
class = "Decoration",
model = "mod_assets/models/corrupt_wall_drainage.fbx",
placement = "wall",
replacesWall = true,
editorIcon = 92,
}
User avatar
Neikun
Posts: 2457
Joined: Thu Sep 13, 2012 1:06 pm
Location: New Brunswick, Canada
Contact:

Re: Corrupt wallset (1.1)

Post by Neikun »

Nice job, Cicci.
"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
Ciccipicci
Posts: 154
Joined: Mon Oct 08, 2012 12:55 am

Re: Corrupt wallset (1.1)

Post by Ciccipicci »

Thanks Neikun!
Post Reply