Facebook Twitter YouTube Frictional Games | Forum | Privacy Policy | Dev Blog | Dev Wiki | Support | Gametee


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Level Editor Help BoxLights
The chaser Offline
Posting Freak

Posts: 2,486
Threads: 76
Joined: Jun 2012
Reputation: 113
#1
BoxLights

Hello there, forum!

I have ran into a problem with a gigantic outdoor map of mine. The problem isn't the map itself, is the BoxLight. It doesn't cause any graphical error, however:

It's nighttime, but I don't want the player to lose sanity. If I make the boxlight bright enough to make the player not to lose sanity, the map looks a bit bad.

I don't want to make a FC, but I'd like this problem to be solved. Any suggestions?

THE OTHERWORLD (WIP)
[Image: k6vbdhu]

Aculy iz dolan.
07-10-2013, 01:14 PM
Find
7heDubz Offline
Posting Freak

Posts: 1,329
Threads: 40
Joined: Feb 2013
Reputation: 41
#2
RE: BoxLights

I am 100% there is a better way to do it but off the top of my head


void OnStart()
{
AddTimer("sanity", 1f, "timer");
SetLightVisible("PointLight_3", false);
}

void sanity(string &in asTimer)
{
GiveSanityBoost();
AddTimer("sanity", 1f, "timer");
}

07-10-2013, 01:53 PM
Find
Statyk Offline
Schrödinger's Mod

Posts: 4,390
Threads: 72
Joined: Sep 2011
Reputation: 241
#3
RE: BoxLights

Or, you know:

void OnStart()
{
SetSanityDrainDisabled(true);
}
07-10-2013, 07:56 PM
Find
FlawlessHappiness Offline
Posting Freak

Posts: 3,980
Threads: 145
Joined: Mar 2012
Reputation: 171
#4
RE: BoxLights

Or make it a full conversion and make the darkness that affects the player go down to 0.0

This also gets rid of the weird instant nightvision

I know you don't want to, but it's not that hard to make it an FC

Trying is the first step to success.
(This post was last modified: 07-11-2013, 12:07 PM by FlawlessHappiness.)
07-11-2013, 01:13 AM
Find
Statyk Offline
Schrödinger's Mod

Posts: 4,390
Threads: 72
Joined: Sep 2011
Reputation: 241
#5
RE: BoxLights

:I
07-11-2013, 07:43 AM
Find
The chaser Offline
Posting Freak

Posts: 2,486
Threads: 76
Joined: Jun 2012
Reputation: 113
#6
RE: BoxLights

(07-11-2013, 01:13 AM)BeeKayK Wrote: Or make it a full conversion and make the darkness that affects the player go down to 0.0

This also gets rid of the weird instant nightvision

I know you don't want to, but it's not that hard to make it an FC

The reason I'm not making it a FC is because it's not that necessary. And, I wouldn't make it a FC simply to have a level look cool, I'll just search a workaround.

Many thanks to everyone for the answers :P
Especially Statyk, that was the solution I was searching :)

THE OTHERWORLD (WIP)
[Image: k6vbdhu]

Aculy iz dolan.
(This post was last modified: 07-15-2013, 10:41 AM by The chaser.)
07-11-2013, 02:17 PM
Find




Users browsing this thread: 1 Guest(s)