Page 1 of 1

Overheat with ammo reticule

Posted: Thu Dec 06, 2018 9:01 am
by Benoz
Is it possible to show the blaster reticule/crosshair with the ammo count on the inner circle and the overheat on the outer circle (or the other way around)?
I have my blasters overheat and use ammo and I can only see the ammo count but not the heat.

To see the heat I have to remove the ammo...

Re: Overheat with ammo reticule

Posted: Thu Dec 06, 2018 9:06 am
by Delta-1035
The66Order66 wrote: To see the heat I have to remove the ammo...
Yup, I tried to do the same thing but I did not work, I don't think you can have both.

Re: Overheat with ammo reticule

Posted: Fri Dec 07, 2018 9:02 am
by Benoz
What about if you edit the hud? Is there some way to look in the script of the heat/ammo function?

Re: Overheat with ammo reticule

Posted: Sat Dec 08, 2018 7:08 pm
by Calrissian97
Yes you can take a look at the HUD in the common folder. You might find something there.

Re: Overheat with ammo reticule

Posted: Sat Dec 08, 2018 7:47 pm
by Benoz
Ok I found the lines where the heat / ammo stuff is defined. It's says something about events. Are we able to see/edit events?

Re: Overheat with ammo reticule

Posted: Sun Dec 09, 2018 12:56 am
by Calrissian97
Yes, I believe so.

Re: Overheat with ammo reticule

Posted: Sun Dec 09, 2018 6:50 am
by Anakin
I'm not sure if heat and ammo is working side by side. But i think i already saw ammo weapons that had overheating.
About the HUD it's absolutely no problem. You can move the ammo clips and heat bars where ever you want them to be. Just as an example, i moved them to the weapon icon in the lower left corner and displayed them in a line instead of an circle:
Hidden/Spoiler:
Image

Re: Overheat with ammo reticule

Posted: Sun Dec 09, 2018 7:22 am
by Benoz
So is this (under your weapin) the ammo count or the heat rate?
I see you have a total of 300 ammunition. If that would work with heat (while showing the heatbar) that would be great.

Re: Overheat with ammo reticule

Posted: Sun Dec 09, 2018 7:34 am
by Anakin
no it's the ammo clip. How many shots are in the weapon. 300 is the total amount of ammo and there are always 60 in the weapon at once. I have also heating values, but i don't remember if they really heat the weapon, since they are very low.

Just try this:

Code: Select all

HeatPerShot         = "0.4"
HeatRecoverRate     = "0.005"
HeatThreshold       = "0.25"

RoundsPerClip		= "60"
ReloadTime			= "1.0"
ShotDelay			= "0.15"
TriggerSingle		= "0"
and test what happens. Find good values and if this is working we can try to show both, the ammo clip and heat bar.

Re: Overheat with ammo reticule

Posted: Sun Dec 09, 2018 11:09 am
by Benoz
That's the thing. I already adjusted heat parameters and ammo capacities as I like. And now I want to show both heat and ammo on the crosshair, but that's impossible as it seems.

Re: Overheat with ammo reticule

Posted: Mon Dec 10, 2018 10:36 am
by Anakin
all right, so i never tried that, but is it impossible, because the head bars cover the other bar, or is it impossible, because only one of both is shown at once? If it's just a cover thing, we can easily move the components somewhere else or redesign them. In the other case it'd be more difficult or impossible.

For example the jetpack bar and shield bar are the same, so you can only display one of them but not both.

Re: Overheat with ammo reticule

Posted: Tue Dec 11, 2018 7:45 am
by Delta-1035
Anakin wrote:...or is it impossible, because only one of both is shown at once?...
I'm pretty sure that's the case.