Skip to content

Commit

Permalink
Set all noswing actions to only log from vl>10 on.
Browse files Browse the repository at this point in the history
  • Loading branch information
asofold committed Feb 8, 2013
1 parent 43264ad commit c6ed761
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -26,7 +26,7 @@ public class DefaultConfig extends ConfigFile {
* NCP build needed for this config.
* (Should only increment with changing or removing paths.)
*/
public static final int buildNumber = 326;
public static final int buildNumber = 384;

// TODO: auto input full version or null to an extra variable or several [fail safe for other syntax checking]?

Expand Down Expand Up @@ -102,7 +102,7 @@ public DefaultConfig() {
set(ConfPaths.BLOCKBREAK_FREQUENCY_ACTIONS, "cancel vl>5 log:bbfrequency:3:5:if cancel vl>60 log:bbfrequency:0:5:cif cancel cmd:kickfrequency");

set(ConfPaths.BLOCKBREAK_NOSWING_CHECK, true);
set(ConfPaths.BLOCKBREAK_NOSWING_ACTIONS, "log:noswing:3:2:f cancel vl>2 log:noswing:3:2:if cancel");
set(ConfPaths.BLOCKBREAK_NOSWING_ACTIONS, "cancel vl>10 log:noswing:0:5:if cancel");

set(ConfPaths.BLOCKBREAK_REACH_CHECK, true);
set(ConfPaths.BLOCKBREAK_REACH_ACTIONS, "cancel vl>5 log:breach:0:2:if cancel");
Expand Down Expand Up @@ -144,7 +144,7 @@ public DefaultConfig() {
set(ConfPaths.BLOCKPLACE_REACH_ACTIONS, "cancel vl>5 log:breach:0:2:if cancel");

set(ConfPaths.BLOCKPLACE_NOSWING_CHECK, true);
set(ConfPaths.BLOCKPLACE_NOSWING_ACTIONS, "log:noswing:3:2:f cancel vl>2 log:noswing:0:2:if cancel");
set(ConfPaths.BLOCKPLACE_NOSWING_ACTIONS, "cancel vl>10 log:noswing:0:5:if cancel");

set(ConfPaths.BLOCKPLACE_SPEED_CHECK, true);
set(ConfPaths.BLOCKPLACE_SPEED_INTERVAL, 45L);
Expand Down Expand Up @@ -302,7 +302,7 @@ public DefaultConfig() {
set(ConfPaths.FIGHT_KNOCKBACK_ACTIONS, "cancel vl>50 log:knockback:0:5:cif cancel");

set(ConfPaths.FIGHT_NOSWING_CHECK, true);
set(ConfPaths.FIGHT_NOSWING_ACTIONS, "log:noswing:0:5:f cancel vl>1 log:noswing:0:5:cif cancel");
set(ConfPaths.FIGHT_NOSWING_ACTIONS, "cancel vl>10 log:noswing:0:5:if cancel");

set(ConfPaths.FIGHT_REACH_CHECK, true);
set(ConfPaths.FIGHT_REACH_PENALTY, 500);
Expand Down

0 comments on commit c6ed761

Please sign in to comment.