Skip to content

Commit

Permalink
Increase note duration to alleviate accuracy problems
Browse files Browse the repository at this point in the history
OW2 Engine changes caused bots to miss their notes more often, but increasing the duration for which a note is held can partially fix that. However, the bots will still miss notes if the player is turned away from the piano or alt-tabbed out.
  • Loading branch information
ScroogeD2 committed Nov 11, 2022
1 parent 8edfc57 commit 63fa7fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/workshopScript_en-US.js
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ rule("Play note")
Teleport(Event Player, Event Player.currentKeyPos);
Wait(0.032, Ignore Condition);
Start Holding Button(Event Player, Button(Primary Fire));
Wait(0.032, Ignore Condition);
Wait(0.064, Ignore Condition);
Stop Holding Button(Event Player, Button(Primary Fire));
Event Player.playNote = False;
}
Expand Down

0 comments on commit 63fa7fd

Please sign in to comment.