From 83a578dabf2ff5a402949bdd59e05448e3773b58 Mon Sep 17 00:00:00 2001 From: sigonasr2 Date: Mon, 29 May 2023 20:50:21 -0500 Subject: [PATCH] Test --- sig/App.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sig/App.java b/sig/App.java index d9b5623..c034fc1 100644 --- a/sig/App.java +++ b/sig/App.java @@ -356,6 +356,7 @@ class Server float mythraHealth=GetMythraHealth(); if (ayaHealth<40){ PressKey(KeyEvent.VK_F2); + r.delay(100); Heal(Target.AYA); break fightLoop; } @@ -375,6 +376,7 @@ class Server } if (mythraHealth<40){ PressKey(KeyEvent.VK_F1); + r.delay(100); Heal(Target.MYTHRA); break fightLoop; } @@ -402,6 +404,7 @@ class Server break fightLoop; } long difference=System.currentTimeMillis()-lastFrame; + System.out.println("Difference:"+difference); bioTimer=Math.max(0,bioTimer-difference); lucidDreamingTimer=Math.max(0,lucidDreamingTimer-difference); nextActionTimer=Math.max(0,nextActionTimer-difference);