Posted April 12, 20223 yr comment_75022 Every time I click on prayer tab this shows up, no matter curses or normal prayers. Interface maybe missing something? model is incomplete or missing [ type = 5] [nodeId = 1033] This is where it's pulling the "ID" from. I don't understand how I figure out what texture to replace or fix. Inside of the textures in cache, they're only "49.dat files". private void handleFailed() { uncompletedCount = 0; for(OnDemandEntry entry = (OnDemandEntry) requested.getFirst(); entry != null; entry = (OnDemandEntry) requested.getNext()) { if(entry.incomplete) { uncompletedCount++; System.out.println("Error: model is incomplete or missing [ type = " + entry.type + "] [nodeId = " + entry.id + "]"); } } while(uncompletedCount < 10) { try { final OnDemandEntry entry = (OnDemandEntry) aClass19_1368.removeFirst(); if(entry == null) break; requested.addLast(entry); missingFile(entry); uncompletedCount++; closeRequest(entry); waiting = true; } catch(Exception e) { final OnDemandEntry entry = (OnDemandEntry) aClass19_1368.removeFirst(); e.printStackTrace(); System.out.println("missing: type: "+entry.type+" ID"+entry.id); } } } Edited April 14, 20223 yr by Dyrango Still need help, more information included.
Create an account or sign in to comment