This repository was archived by the owner on Oct 5, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -19,4 +19,4 @@ setBot Play || Enable Bot play to showcase your mods. WIP || false
19
19
setCharting Background || Toggle the stage background in charting. || true
20
20
setChange Note Theme || Change the theme of your notes. || NOTE
21
21
setCustomize Info Bar || Customize what stats are beside your healthbar during games. || Press ENTER
22
- setModifiers || Manage modifiers on your game. || Press ENTER
22
+ setModifiers || Manage modifiers on your game. || Press ENTER
Original file line number Diff line number Diff line change @@ -2795,6 +2795,7 @@ class PlayState extends MusicBeatState
2795
2795
if (daNote .canBeHit && daNote .mustPress && daNote .isSustainNote )
2796
2796
{
2797
2797
if (FlxG .save .data .botplay ) {
2798
+
2798
2799
switch (daNote .noteData )
2799
2800
{
2800
2801
// NOTES YOU ARE HOLDING
@@ -3037,6 +3038,8 @@ class PlayState extends MusicBeatState
3037
3038
var rightP = controls. RIGHT_P ;
3038
3039
var downP = controls. DOWN_P ;
3039
3040
var leftP = controls. LEFT_P ;
3041
+ if (FlxG .save .data .botplay )
3042
+ return ; // sike
3040
3043
3041
3044
// SEXY FAILSAFE (THANKS VM U A REAL ONE)
3042
3045
if (note == ' none' ) {
@@ -3140,6 +3143,8 @@ class PlayState extends MusicBeatState
3140
3143
function goodNoteHit (note : Note ): Void
3141
3144
{
3142
3145
if (note .nType == 1 ) {
3146
+ if (FlxG .save .data .botplay )
3147
+ return ;
3143
3148
trace (" FIRE NOTE OH SHTIT" );
3144
3149
health - = 1 ;
3145
3150
}
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ class ProjectFNF
17
17
if (FlxG .save .data .dadnotescankill == null )
18
18
FlxG .save .data .dadnotescankill = false ;
19
19
if (FlxG .save .data .damagefromdadnotes == null )
20
- FlxG .save .data .damagefromdadnotes = 1 ;
20
+ FlxG .save .data .damagefromdadnotes = 10 ;
21
21
if (FlxG .save .data .nohealthgain == null )
22
22
FlxG .save .data .nohealthgain = 0 ;
23
23
if (FlxG .save .data .dadnotesvisible == null )
You can’t perform that action at this time.
0 commit comments