Page 5 of 7

Re: Health Hud (HELP NEEDED) (CODING IS ONLY LEFT NOW)

Posted: Sun Jun 09, 2013 6:26 am
by MonocleBios
Ltn Vasquez wrote:
Daniel123Shaw123 wrote:Regalis is the maker though...
He does mods as well. It's called the game.

Off-topic, quit derailing the bloody MLF thread.
*sigh
Steelpoint doesn't code, nor does he approve anything for the official release. He's an admin, not a core developer.

Re: Health Hud (HELP NEEDED) (CODING IS ONLY LEFT NOW)

Posted: Sun Jun 09, 2013 6:36 am
by Ltn Vasquez
MonocleBios wrote:
Ltn Vasquez wrote:
Daniel123Shaw123 wrote:Regalis is the maker though...
He does mods as well. It's called the game.

Off-topic, quit derailing the bloody MLF thread.
*sigh
Steelpoint doesn't code, nor does he approve anything for the official release. He's an admin, not a core developer.
Monocle... Steelpoint was never in this topic. This is concerning Regalis.

Re: Health Hud (HELP NEEDED)

Posted: Sun Jun 09, 2013 6:41 am
by MonocleBios
Ltn Vasquez wrote: It looks great. Now we just have to see it applied to the game and have a modder come over here and approve. Where's Steelpoint? We need his confirmation on this.
I'm pretty sure this was what Daniel was referring to when he mentioned Regalis.

Re: Health Hud (HELP NEEDED)

Posted: Sun Jun 09, 2013 6:45 am
by Ltn Vasquez
MonocleBios wrote:
Ltn Vasquez wrote: It looks great. Now we just have to see it applied to the game and have a modder come over here and approve. Where's Steelpoint? We need his confirmation on this.
I'm pretty sure this was what Daniel was referring to when he mentioned Regalis.
We were asking for a modder or administrator's confirmation. By the way, the lot of us don't know about coding. Besides Cridone, he's pretty cool. Probably the only guy in the whole forum besides under mods who is actually trying to make progress.

Re: Health Hud (HELP NEEDED) (CODING IS ONLY LEFT NOW)

Posted: Sun Jun 09, 2013 7:47 am
by Mirocaine
Apparently Regalis programmed a Blood + Injury system in-game (from Main.bb). I guess if you converted them over to a health system, they'd make for A). Blood B). Pain

Re: Health Hud (HELP NEEDED) (CODING IS ONLY LEFT NOW)

Posted: Sun Jun 09, 2013 11:45 am
by garbo
I still don't like the idea of having a health Hud
I really prefer movement and vision indicators (red and blurry vision (for Blood), black and white + flashes vision(for pain), slow movements (for pain too)...)

Re: Health Hud (HELP NEEDED) (CODING IS ONLY LEFT NOW)

Posted: Sun Jun 09, 2013 2:19 pm
by Regalis
I don't think a health bar is a good idea in a game where almost every enemy or hazard instakills you. Besides, the current injury/bloodloss system doesn't work like normal health system. The injuries-variable only determines how fast you're bleeding and slows you down, but you won't die even if you reach the highest injury level (which is 4.0).

Anyway, if you guys want to make a "health hud" mod, you could use something like this for measuring the blood loss:

Code: Select all

x = something
y = something
width = 204
height =20

Rect (x, y, width, height, False)
For i = 1 To Int(((width - 2) * ((100-bloodloss) / 100.0)) / 10)
	DrawImage(HealthMeterIMG, x + 13 * (i - 1), y + 3)
Next

Re: Health Hud (HELP NEEDED) (CODING IS ONLY LEFT NOW)

Posted: Sun Jun 09, 2013 3:47 pm
by Steelpoint
For what is is worth I would agree with Regalis, the only thing in this game that does not instantly kill you are gun shots and "spoiler" attacks. In those situations a medkit will heal you.

Also to sort out any possible confusion, I am an Admin for this forum, I am not a developer for the game. Regalis is the only core developer of SCP:CB.

Re: Health Hud (HELP NEEDED) (CODING IS ONLY LEFT NOW)

Posted: Sun Jun 09, 2013 3:52 pm
by FoxMccloud64
But the health bar could tell you how much blood you have, each time you bleed it goes down

Re: Health Hud (HELP NEEDED) (CODING IS ONLY LEFT NOW)

Posted: Sun Jun 09, 2013 3:56 pm
by Mirocaine
Regalis wrote:I don't think a health bar is a good idea in a game where almost every enemy or hazard instakills you. Besides, the current injury/bloodloss system doesn't work like normal health system. The injuries-variable only determines how fast you're bleeding and slows you down, but you won't die even if you reach the highest injury level (which is 4.0).

Anyway, if you guys want to make a "health hud" mod, you could use something like this for measuring the blood loss:

Code: Select all

x = something
y = something
width = 204
height =20

Rect (x, y, width, height, False)
For i = 1 To Int(((width - 2) * ((100-bloodloss) / 100.0)) / 10)
	DrawImage(HealthMeterIMG, x + 13 * (i - 1), y + 3)
Next
Just what I needed.
Image