keystrokes skill issue

This commit is contained in:
ThisIsALegitUsername 2023-01-13 21:46:24 +00:00
parent f5c3ccee43
commit 235509df1e
4 changed files with 3169 additions and 3169 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -20,7 +20,7 @@ public class ComboCounter extends RenderModule {
public void onEvent(Event e){
if(e instanceof EventAttack && isEnabled()){
attacked = true;
attacked = true;
}
}

View File

@ -9,21 +9,21 @@ public class RenderUtils {
switch (asdf.getValue()) {
case "Red":
return new Color(255, 0, 0, 95).getRGB();
return new Color(255, 0, 0, 140).getRGB();
case "Yellow":
return new Color(255, 255, 0, 95).getRGB();
return new Color(255, 255, 0, 140).getRGB();
case "Green":
return new Color(0, 255, 0, 95).getRGB();
return new Color(0, 255, 0, 140).getRGB();
case "Blue":
return new Color(0, 0, 255, 95).getRGB();
return new Color(0, 0, 255, 140).getRGB();
case "Orange":
return new Color(255, 165, 0, 95).getRGB();
return new Color(255, 165, 0, 140).getRGB();
case "Pink":
return new Color(255, 102, 255, 95).getRGB();
return new Color(255, 102, 255, 140).getRGB();
case "Black":
return new Color(0, 0, 0, 95).getRGB();
return new Color(0, 0, 0, 140).getRGB();
case "White":
return new Color(255, 255, 255, 95).getRGB();
return new Color(255, 255, 255, 140).getRGB();
}
return -1;
}