SyntaxCheck 0 Share Posted February 10, 2020 I am working on my first simple chicken killing script and I am seeing a bunch of "Cached Animation BZipProcess is null!" messages in the output log. Below is my script and after the code below I basically just sleep until the NPC dies. Each time my code below runs I see those errors. Are these messages from the Dreambot API? I can't imagine they are a result of the two IF lines? NPC targetNpc = api.getNpcs().closest((Filter<NPC>) npc -> npc != null && npc.getName().equals(npcName) && startingArea.contains(npc) && npc.getInteractingCharacter() == null && npc.getHealthPercent() > 0); if (targetNpc != null) { api.log("NPC found...."); double distanceToNpc = api.getLocalPlayer().getTile().distance(targetNpc.getTile()); api.log("...Calced distance " + distanceToNpc + "...."); if (distanceToNpc <= maxNpcDistance) { api.log("...Interact...."); //attack target NPC if (targetNpc.interact("Attack")) { api.log("Attack NPC...."); Output log for the above NPC found.... ...Calced distance 2.0.... Cached Animation BZipProcess is null! Cached Animation BZipProcess is null! ...Interact.... Cached Animation BZipProcess is null! Cached Animation BZipProcess is null! Cached Animation BZipProcess is null! Cached Animation BZipProcess is null! Cached Animation BZipProcess is null! Cached Animation BZipProcess is null! Cached Animation BZipProcess is null! Cached Animation BZipProcess is null! Cached Animation BZipProcess is null! Cached Animation BZipProcess is null! Cached Animation BZipProcess is null! Cached Animation BZipProcess is null! Cached Animation BZipProcess is null! Cached Animation BZipProcess is null! Cached Animation BZipProcess is null! Cached Animation BZipProcess is null! Cached Animation BZipProcess is null! Cached Animation BZipProcess is null! Cached Animation BZipProcess is null! Attack NPC.... Link to comment Share on other sites More sharing options...
Invidious 1 Share Posted February 10, 2020 I keep getting this. Turn on fresh start if you dont already have it on or delete all your cached data pertaining to dream bot Link to comment Share on other sites More sharing options...
SyntaxCheck 0 Author Share Posted February 10, 2020 Thanks for the hint, it was something to do with the RS cache. Fresh start and manually deleting the RS cache both worked! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now