Frictional Games Forum (read-only)
The Three Week Map #1 - Printable Version

+- Frictional Games Forum (read-only) (https://www.frictionalgames.com/forum)
+-- Forum: Amnesia: The Dark Descent (https://www.frictionalgames.com/forum/forum-6.html)
+--- Forum: Custom Stories, TCs & Mods - Development (https://www.frictionalgames.com/forum/forum-38.html)
+--- Thread: The Three Week Map #1 (/thread-24361.html)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15


RE: The Three Week Map #1 - OriginalUsername - 01-23-2014

This is why I love these threads so much, they inspire you and you learn something every day. Thanks acies, I'll mess around with it a bit more


RE: The Three Week Map #1 - i3670 - 01-23-2014

Lightswitch script. I can switch them on but not off.

Spoiler below!

void OnStart()
{
SetLocalVarInt("loc_light_living", 0);
}

void switch_living(string &in asEntity)
{
if(GetLocalVarInt("loc_light_living") == 0)
{
SetLampLit("gas_lamp_ceiling_1", true, true);
SetLampLit("gas_lamp_ceiling_2", true, true);

AddTimer("LocalValTimer", 0.1f,"living_val_on");
}

if(GetLocalVarInt("loc_light_living") == 1)
{
SetLampLit("gas_lamp_ceiling_1", false, true);
SetLampLit("gas_lamp_ceiling_2", false, true);

AddTimer("LocalValTimer", 0.1f,"living_val_off");
}
}

void LocalValTimer(string &in asTimer)
{
if(asTimer == "living_val_on")
{
SetLocalVarInt("loc_light_living", 1);
}
if(asTimer == "living_val_off")
{
SetLocalVarInt("loc_light_living", 0);
}
}





RE: The Three Week Map #1 - OriginalUsername - 01-23-2014

Spoiler below!
[Image: KDUdxEm.jpg]



RE: The Three Week Map #1 - Romulator - 01-24-2014

Also guys, I am using some AAMFP assets. Sorry if this will cause issues. :/


RE: The Three Week Map #1 - i3670 - 01-24-2014

(01-24-2014, 12:41 AM)Romulator Wrote: Also guys, I am using some AAMFP assets. Sorry if this will cause issues. :/

I am too, out of sheer boredom for the original models.


RE: The Three Week Map #1 - CarnivorousJelly - 01-24-2014

I have a couple AAMFP assets, if necessary, I could always just throw them into the file with my map if needed c:

I'm kind of stuck on what to do, but it's getting close to being complete for now Big Grin
Spoiler below!

[Image: map_challenge2_by_rueppells_fox-d73j4b1.png]
Feels a little dark; what do you guys see?




RE: The Three Week Map #1 - OriginalUsername - 01-24-2014

I can see everything, no problems with shadows at all.


RE: The Three Week Map #1 - The chaser - 01-26-2014

I have a big love for big maps, and this is gonna be a big one (300 meters more or less) so...

The red lighting is made on purpose, and please take note that it isn't a map made for this project, just a WIP of my incoming story, "The Otherworld".

Making the lighting is a pain in the ***

[Image: VODHq0F.png]


RE: The Three Week Map #1 - Romulator - 01-26-2014

I like the red light :3 It's much different to what I am usually accustomed to when I see Amnesia maps. Something I must say though is that I know that your map is still a WIP, but it is a bit repetitive with the wall.. put up some banners or some art or something :3


RE: The Three Week Map #1 - i3670 - 01-26-2014

And the billboards need some work.