-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enhancement: Quick restart / "NOT R" #2442
Labels
status: rejected
Issue did not pass review or PR cannot be approved.
type: enhancement
Involves an enhancement or new feature.
Comments
aw |
I'm one month late, but you can recreate this very easily within HScript. import funkin.modding.module.Module;
import funkin.play.PlayState;
import flixel.FlxG;
class QuickReset extends Module {
function new() {
super('QuickReset');
}
function onUpdate(event) {
if (PlayState.instance != null) {
if (FlxG.keys.pressed.CONTROL) {
if (FlxG.keys.justPressed.F) {
PlayState.instance.needsReset = true;
}
}
}
}
} |
oh that's awesome, would there be a way to cancel the blue balls event with R? or would i just not set the keybind |
Not really, since calling |
2 tasks
2 tasks
2 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
status: rejected
Issue did not pass review or PR cannot be approved.
type: enhancement
Involves an enhancement or new feature.
Please check for duplicates or similar issues before creating this issue.
What is your suggestion, and why should it be implemented?
There should be a key to make a quick restart, i know pressing R instantly kills you, but this is pretty slow since you have to go through the death animation, i think this should instead do the same as Restart song and instead pressing Ctrl + R or any other key for debugging should kill you instead
The text was updated successfully, but these errors were encountered: