OriginalUsername
Posting Freak
Posts: 896
Threads: 42
Joined: Feb 2013
Reputation:
34
RE: The Three Week Map #1
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
01-23-2014, 01:34 PM
i3670
Posting Freak
Posts: 1,308
Threads: 74
Joined: Oct 2011
Reputation:
36
RE: The Three Week Map #1
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);
}
}
01-23-2014, 05:45 PM
OriginalUsername
Posting Freak
Posts: 896
Threads: 42
Joined: Feb 2013
Reputation:
34
RE: The Three Week Map #1
01-23-2014, 07:51 PM
Romulator
Not Tech Support ;-)
Posts: 3,628
Threads: 63
Joined: Jan 2013
Reputation:
195
RE: The Three Week Map #1
Also guys, I am using some AAMFP assets. Sorry if this will cause issues. :/
Discord: Romulator#0001
01-24-2014, 12:41 AM
i3670
Posting Freak
Posts: 1,308
Threads: 74
Joined: Oct 2011
Reputation:
36
RE: The Three Week Map #1
(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.
01-24-2014, 02:30 AM
CarnivorousJelly
Posting Freak
Posts: 1,196
Threads: 41
Joined: Dec 2012
Reputation:
80
RE: The Three Week Map #1
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
01-24-2014, 08:35 PM
OriginalUsername
Posting Freak
Posts: 896
Threads: 42
Joined: Feb 2013
Reputation:
34
RE: The Three Week Map #1
I can see everything, no problems with shadows at all.
01-24-2014, 08:55 PM
The chaser
Posting Freak
Posts: 2,486
Threads: 76
Joined: Jun 2012
Reputation:
113
RE: The Three Week Map #1
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 ***
THE OTHERWORLD (WIP)
Aculy iz dolan.
01-26-2014, 04:04 PM
Romulator
Not Tech Support ;-)
Posts: 3,628
Threads: 63
Joined: Jan 2013
Reputation:
195
RE: The Three Week Map #1
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
Discord: Romulator#0001
01-26-2014, 04:11 PM
i3670
Posting Freak
Posts: 1,308
Threads: 74
Joined: Oct 2011
Reputation:
36
RE: The Three Week Map #1
And the billboards need some work.
01-26-2014, 05:32 PM