Skip to content
This repository has been archived by the owner on Aug 29, 2022. It is now read-only.

Hold notes dont give health anymore #68

Open
dahackerYT opened this issue Jul 16, 2022 · 6 comments
Open

Hold notes dont give health anymore #68

dahackerYT opened this issue Jul 16, 2022 · 6 comments
Labels
bug Something isn't working

Comments

@dahackerYT
Copy link

dahackerYT commented Jul 16, 2022

Describe your bug here.

idk if this was a change in the newest engine but hold notes dont give health anymore. If it is a feature now make a toggle in the song editor or game options to disable / enable this.

Command Prompt/Terminal logs (if existing)

No response

Are you modding a build from source or with Lua?

Not Modded

What is your build target?

Windows

Did you edit anything in this build? If so, mention or summarize your changes.

No

@dahackerYT dahackerYT added the bug Something isn't working label Jul 16, 2022
@Ardo69
Copy link

Ardo69 commented Jul 17, 2022

It is a feature and this way it is a lot better, stop spamming and get better.

@itsDARK768
Copy link

This is a feature like ardodev said, hold notes were never meant to give you health mate.

@ShadowMercury6
Copy link

ShadowMercury6 commented Aug 6, 2022

Tho I do like the change, it causes issues in health drain fights which rely on that extra health gained.
Example: In Final escape, you aren't able to outrun sonic exe because of the lack of health gained from holding notes.
So It needs to be an option to turn it off or on.

@dahackerYT
Copy link
Author

Tho I do like the change, it causes issues in health drain fights which rely on that extra health gained. Example: In Final escape, you aren't able to outrun sonic exe because of the lack of health gained from holding notes. So It needs to be an option to turn it off or on.

I agree a toggle would be nice.

@ShadowMercury6
Copy link

ShadowMercury6 commented Aug 20, 2022

I agree a toggle would be nice.

function goodNoteHit()
health = getProperty('health')
setProperty('health', health+ 0.006);
end

The number can be fiddled with, cuz I don't know what it should be by default. put that in a Lua file in scripts and that will fix it for now

tho this is new to me I don't know what it could break
it should fix it tho

@ShadowMercury6
Copy link

ShadowMercury6 commented Aug 20, 2022

you could do this as well

function goodNoteHit(noteType, isSustainNote)
health = getProperty('health')
if isSustainNote then
setProperty('health', health+ 0.006);
end
end

Tho it doesn't work with health multiplier

also should look like this
image

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

4 participants