Search the Community

Showing results for tags 'Java'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Official Buildings
    • GM Hall
    • City Hall
    • Game News
    • Public Test Board
  • Back Streets
    • Town Square
    • Community Assistance
    • Village Recruitment Center
    • Suggestions & Ideas
    • The Creative Commons
    • Wood Scraps
  • Northern Freedom Isles
    • Harmony
    • Melody
    • Cadence
    • Northern Freedom Isles Market
  • Southern Freedom Isles
    • Celebration
    • Deliverance
    • Exodus
    • Independence
    • Pristine
    • Release
    • Xanadu
    • Southern Freedom Isles Market
  • Maintenance Buildings
    • Technical Issues
    • Server Bugs
    • Client Bugs
    • Model and Sound Bugs
    • Other Bugs and Issues
    • Wurmpedia / Wiki Maintenance
  • Wurm Unlimited
    • Unlimited Discussion
    • Unlimited Modding
    • Server Listings & Advertisement
    • Technical Issues

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Chaos


Independence


Deliverance


Exodus


Celebration


Xanadu


Release


Pristine


Epic


Cadence


Defiance


Harmony


Melody


Acc1


Acc2


Acc3

Found 117 results

  1. This issue keeps reoccuring no matter what I'm doing or how many clients I have open.. Only one crashes at a time, but its the same kind of crash to desktop and its becoming more and more frequent. If anyone can help me with this I would be eternally greatful ❤️ hs_err_pid26552 Error log! Console Log:
  2. It appears I am now getting something similar to what others are getting, Java crashes anywhere from 1 minute in to up to 30 minutes. I have crashed 10 times today. Is there no fix for this issue? I have tried reverting to default settings on all game settings and still nothing helps. System Info: hs_err:
  3. Once again I am having crashing issues. It started yesterday and progressively got worse to the point where I cant even load the game without it crashing. It seems to be the same issue I had in the past with Java not having enough memory. Last time I fixed it by downloading a program to help release standby memory but even that is not helping. It seems to have started after a Java update. Console HS_ERR_PID
  4. Hello fellow wurmians! Thanks to the community i was able to setup my server, which runs the game like a charm (as in fluid). Every now and then at random intervals the server is crashing though, but the server.log just ends after the normal connected players and uptime line. No errors there. BUT we get those hs_err_pid30692.log files and i can't figure out for hell what im supposed to do about it. Im fine with manually rebooting, but it messes with the 24 hour field growth timer, which resets There are no out of ram errors or any other "normal" errors you would get from the server.log So i really cant put my finger on what the reason for those crashes is. past errors have been: Are any of you more profound in java and can help me out with those issues?
  5. I attempted to place two different objects a total of five times today. Each time selecting Place resulted in an instant CTD. The object outline never appeared. Four times the object was in inventory, once it was on the ground. I was on Exodus. A player on Xanadu said he was having no issue placing any number of items. I don't know when this might have started exactly, because I only place an item every few weeks. There was a Java crash log:
  6. Hi Mac people, If you find that you are getting "Unsigned certificate", "expired certificate" or "… not signed by the same certificate" errors when launching via Java, these steps might help: Click on the Apple menu (top right corner of the screen.) Select System Preferences. Click on the Java icon on the bottom row of the System Preferences screen. You should see a message stating "The Java Control Panel opens in a seperate window." After a short pause you should indeed see a new window open titled 'Java Control Panel' If it is not already the present tab, select 'General'. Below the 'Temporary Internet Files' category, click on the 'View…' button. A new window titled 'Java Cache Viewer' should appear. Locate and single click on the line item "Wurm Online [Stable]" Click the 'Remove selected items' button. (The big red cross button at the top of the window.) Close the 'Java Cache Viewer' window via the 'Close' button. (Bottom right corner of the window.) Close the 'Java Control Panel' window via the 'OK' button. (Bottom left corner of the window.) Close the 'System Preferences' window via the red close window button. (Very top left corner of the window.) Try relaunching Wurm Online using the wurmclient.jnpl Good Luck.
  7. Goodday to all, As title mentions my client will crash with a javaerror, before further detail some pc info: Processor: Intel i7-4790k CPU 4GHz Ram: 16 GB, 64bit Nvidia Geforge GTX 970, latest build Java 8, latest build The client can run on the lowest settings (no animations, no glow of rares etc) untill a female toon pop up. Taking ingame screenshots will also crash the game. The link below has a crash log for F11 crash, crash log with female toon in local, a normal start and exit (without any toons in local) and a picture of the fps i get from a dxdiag and both setting folders i used during these crashes. https://drive.google.com/open?id=1as9db6NjLkxVrowICFrfcVUF3i1-KZUQ This isnt the first post about this topic, several people already had a go at this, all previous methods had no succes in overcoming this error. The java version is 8 and on the latest build, drivers are on the latest build aswell, the error keeps happening when ever a female character loads in or the LoD is turned on or most of the otherwise disabled settings in the "med working" config are turned on.
  8. Random and frequent crashes of java client. Many logs with random errors. Solved, when changing LaunchConfig.ini Added an option for java XX:+UseG1GC Here are all my LaunchConfig.ini: [Runtime] OverrideDefaultJavaPath=true JavaPath=C:\Program Files\Java\jre1.8.0_201\bin\server [Memory] InitialHeap=1024m MaxHeapSize=4096m [VMParams] JvmParam0=-XX:+UseG1GC JvmParam1=-XX:+AggressiveOpts
  9. I am trying to make a recipe that requires multiple items in order to craft an item, in this case a Julbord. However, when I go to make the item in game it completes the whole thing without requiring the additional items. I can't seem to find why it is doing this, nor how to declare it to create an unfinished version of the item that needs the rest to be completed. (I am a complete beginner at coding and have been looking through code made by others trying to copy their method) Any tips or help is greatly appreciated! package org.dragonsgatewu.wurmunlimited.mods.julbordrecipe; import com.wurmonline.server.items.AdvancedCreationEntry; import com.wurmonline.server.items.CreationCategories; import com.wurmonline.server.items.CreationEntryCreator; import com.wurmonline.server.items.CreationRequirement; public class JulbordRecipe { public JulbordRecipe() { AdvancedCreationEntry julbord = CreationEntryCreator.createAdvancedEntry(10038, 22, 1173, 442, true, true, 0.0F, false, false, CreationCategories.COOKING_UTENSILS); julbord.addRequirement(new CreationRequirement (1, 22, 9, true)); julbord.addRequirement(new CreationRequirement (2, 1173, 5, true)); julbord.addRequirement(new CreationRequirement (3, 217, 10, true)); julbord.addRequirement(new CreationRequirement (4, 258, 5, true)); julbord.addRequirement(new CreationRequirement (5, 257, 5, true)); julbord.addRequirement(new CreationRequirement (6, 259, 5, true)); julbord.addRequirement(new CreationRequirement (7, 129, 50, true)); } } I already have 1 + 1 = finished item working perfectly but I want this to be a more advanced recipe that requires more than a plank and plate to make, but also forks, spoons, knives, etc.
  10. Edit 6/2018: Project deleted (GitHub = sellouts). Hello, I'm working on a simple Google Maps generator for WU. It's actually continuation of my older project (Google Maps for WO). Current version: v0.9-beta.5 (2015-11-16) GitHub repository Download User guide Example maps (possible spoilers!) Generated maps are standalone (only HTML, CSS, JS and images), not connected to WU in any way anymore. Maps can be viewed locally (using any modern web browser) or uploaded to a web server (no PHP or Java needed). Generator is written in Java, so far working only on Windows (Linux fix coming soon). Future features: - more configurable options - bridges - walls, doors, fences, gates (only when zoomed enough) - in-game map annotations - altars - dens - source fountains - source springs - custom markers and labels (non database stuff: points of interest, road names, sea names, mountain names, canal names, tunnel names...) - tower zones (guards response, building restrictions) - settlement zones (deed, perimeter) - bigger zoom - progressive zoom - more... Any feedback or ideas are welcome.
  11. I started to play it yesterday and I had Java32. It worjed but started to terribly lag after a 1 hour of playing. Then I downloaded and installed Java64 and all was good. Now after a night a game wont strat anymore. It gives that Java message. 0_o ?
  12. Problem: On a system with two videocards, integrated and external, client crashes, if integrated card is disabled, after system restart. Intro: One of my laptop has "hybrid" videocard, i.e. integrated Intel HD 5500 and external geForce 920M. basically, Intel is responsible for desktop windows, but when i'm running a game - it runs on geForce. In a case of WURM, there is no "executable", it's jnlp, web-loading, so it always runs on a desktop card, intel HD5500. which makes game unplayable at high settings: 1. Both cards are up. 2. WURM is running 3. External card is inactive (i.e. it's running on crappy Intel card) and i was unable to find a way, to tell web-java-launcher, that he should run a game on external, geForce, videocard. therefore, i just disabled Intel HD driver in Device Manager, and after that game was running at high resolution et cetera pretty smoothly. But after restarting the laptop i was unable to launch a client: To reproduce: 1. Find a laptop with 2 videocards, integrated and normal one 2. Disable intgrated videocard and run a client. 3. Restart the laptop, run WURM, and enjoy "Oops" screen Workaround: 1. Open Device Manager 2. Enable integrated driver 3. Disable integrated driver 4. Run WURM it will run on external videocard at high setting and you will be happy: 1. Integrated card is down 2. Wurm is running on an external videocard. until next restart, though. I'm posting this to "Other bugs and issues" section because i think, that this is not a WURM client or server problem. This looks rather like JVM problem, looks like it tries to initiate first display found without checking is it active or not. but hopefully this info may save some nerves to the happy owners of laptop with "hybrid" videocards.
  13. Hi - Please assist with these 2 queries: 1. CPU Temp rising on higher Wurm Online settings When using lowest settings, CPU temp remains at 32-35C, when using higher settings, within a couple of minutes, the CPU temp rises to over 66C. CPU has a dual fan water cooling unit. Mobo: ASUSTeK model: ROG STRIX B350-F GAMING Hexa core AMD Ryzen 5 1600 Six-Core (12) Radeon RX 580 Series (AMD POLARIS10) GLX Version: 3.0 Mesa 17.2.8 Network Card: Intel I211 Gigabit Network Connection ID-1: /dev/sda model: ST2000DX002 size: 2000.4GB Memory: 7114.7/16040.0MB (4x DIMMs) Test Example: 2x Wurm characters on lowest settings + Shroud of the Avatar on highest settings (released on Tuesday) temp remained in the 40-48C range. To have reasonably good settings without the overheating, please advise what settings can be changed to fix this? Please be very specific in your recommendations, as I am not a techie, (altho my son is). 2. Testing preview client Java and Linux As the latest Java 8 161 has a known problem of high CPU usage - see: https://github.com/chatty/chatty/issues/227 - is the new Preview Client **fully** compatible with jre1.8.0_151 (as it is the 2nd latest Java version)? https://www.java.com/en/download/faq/release_dates.xml And are all the major Linux issues with the Preview Client now resolved? Using Linux 16.04 Ubuntu. Thanks very much, in advance and in hope. Baloo
  14. My Wurm Online game is crashing shortly after it has loaded the player's view. I believe that I have 64bit Java installed correctly. I have included my hs_err_pic & console files below. Any assistance would be greatly appreciated! hs_err_pid contents: # # A fatal error has been detected by the Java Runtime Environment: # # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x000000007117fc80, pid=8568, tid=0x0000000000001824 # # JRE version: Java(TM) SE Runtime Environment (8.0_144-b01) (build 1.8.0_144-b01) # Java VM: Java HotSpot(TM) 64-Bit Server VM (25.144-b01 mixed mode windows-amd64 compressed oops) # Problematic frame: # V [jvm.dll+0xafc80] # # Failed to write core dump. Minidumps are not enabled by default on client versions of Windows # # If you would like to submit a bug report, please visit: # http://bugreport.java.com/bugreport/crash.jsp # --------------- T H R E A D --------------- Current thread (0x0000000002349000): GCTaskThread [stack: 0x0000000011b60000,0x0000000011c60000] [id=6180] siginfo: ExceptionCode=0xc0000005, reading address 0x0000000000000008 Registers: RAX=0x0000000011f60000, RBX=0x00000000c0431601, RCX=0x00000000c0431601, RDX=0x0000000000000000 RSP=0x0000000011c5eed8, RBP=0x0000000000000008, RSI=0x0000000000000015, RDI=0x000000000241ddc0 R8 =0x0000000000000000, R9 =0x000000000000218b, R10=0x00000000199635c8, R11=0x0000000002348c80 R12=0x0000000000000003, R13=0x0000000011c5eff0, R14=0x0000000011c5f070, R15=0x0000000002349000 RIP=0x000000007117fc80, EFLAGS=0x0000000000010246 Top of Stack: (sp=0x0000000011c5eed8) 0x0000000011c5eed8: 00000000711db8a7 00000000199635c8 0x0000000011c5eee8: 00000000711de21a 0000000016643e70 0x0000000011c5eef8: 0000000011c5f070 000000000241ddc0 0x0000000011c5ef08: 00000000711e3813 00000000c0431601 0x0000000011c5ef18: 0000000002349000 0000000011c5f070 0x0000000011c5ef28: 00000000711fcfaf 0000000000000000 0x0000000011c5ef38: 00000000711945db 0000000000000001 0x0000000011c5ef48: 0000000002348c80 00000000199635c8 0x0000000011c5ef58: 0000000002349000 0000000000000033 0x0000000011c5ef68: 0000000011c5f7f0 0000000011c5f828 0x0000000011c5ef78: 00000000712df6d1 0000000011c5f080 0x0000000011c5ef88: 00000000718c8760 0000000011c5f190 0x0000000011c5ef98: 00000000199635c8 0000000003e678e0 0x0000000011c5efa8: 0000000003e67790 0000000000000002 0x0000000011c5efb8: 0000000000000033 0000000011c5f1c0 0x0000000011c5efc8: 0000000002349000 0000000003e678e0 Instructions: (pc=0x000000007117fc80) 0x000000007117fc60: 6c bb 1d 00 48 8b 9c 24 d0 00 00 00 48 81 c4 c0 0x000000007117fc70: 00 00 00 5d c3 cc cc cc cc cc cc cc cc cc cc cc 0x000000007117fc80: 44 8b 42 08 4c 8b ca 45 85 c0 7e 0e 41 f6 c0 01 0x000000007117fc90: 75 57 41 c1 f8 03 41 8b c0 c3 79 4d 80 3d 3e e8 Register to memory mapping: RAX=0x0000000011f60000 is an unknown value RBX=0x00000000c0431601 is pointing into object: 0x00000000c04315f8 java.lang.Short - klass: 'java/lang/Short' RCX=0x00000000c0431601 is pointing into object: 0x00000000c04315f8 java.lang.Short - klass: 'java/lang/Short' RDX=0x0000000000000000 is an unknown value RSP=0x0000000011c5eed8 is an unknown value RBP=0x0000000000000008 is an unknown value RSI=0x0000000000000015 is an unknown value RDI=0x000000000241ddc0 is an unknown value R8 =0x0000000000000000 is an unknown value R9 =0x000000000000218b is an unknown value R10={method} {0x00000000199635d0} 'swapBuffers' '()V' in 'org/lwjgl/opengl/Display' R11=0x0000000002348c80 is an unknown value R12=0x0000000000000003 is an unknown value R13=0x0000000011c5eff0 is an unknown value R14=0x0000000011c5f070 is an unknown value R15=0x0000000002349000 is an unknown value Stack: [0x0000000011b60000,0x0000000011c60000], sp=0x0000000011c5eed8, free space=1019k Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) V [jvm.dll+0xafc80] JavaThread 0x0000000019ef9000 (nid = 1788) was being processed Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) J 1429 java.lang.Throwable.fillInStackTrace(I)Ljava/lang/Throwable; (0 bytes) @ 0x000000000290ed3b [0x000000000290ed00+0x3b] J 9313 C2 java.lang.IllegalMonitorStateException.<init>()V (5 bytes) @ 0x0000000003e679a4 [0x0000000003e678e0+0xc4] v ~StubRoutines::call_stub j org.lwjgl.opengl.Display.swapBuffers()V+51 J 9123 C1 org.lwjgl.opengl.Display.update(Z)V (154 bytes) @ 0x0000000003af1b5c [0x0000000003af16e0+0x47c] J 9127 C1 com.wurmonline.client.yuix3IabUz.XwhlvVTrl()V (25 bytes) @ 0x000000000294157c [0x00000000029413e0+0x19c] j com.wurmonline.client.WurmClientBase.fgtPPuD8uC()V+1104 j com.wurmonline.client.WurmClientBase.run()V+852 j java.lang.Thread.run()V+11 v ~StubRoutines::call_stub --------------- P R O C E S S --------------- Java Threads: ( => current thread ) 0x000000001a1e7000 JavaThread "Texture Loader 0" daemon [_thread_blocked, id=3556, stack(0x000000002ca60000,0x000000002cb60000)] 0x000000001a1ed800 JavaThread "Sound Loader 2" daemon [_thread_blocked, id=8024, stack(0x000000002c760000,0x000000002c860000)] 0x000000001a1e6000 JavaThread "Sound Loader 1" daemon [_thread_blocked, id=2160, stack(0x000000002aee0000,0x000000002afe0000)] 0x000000001a1ea800 JavaThread "Sound Loader 0" daemon [_thread_blocked, id=1852, stack(0x000000002ade0000,0x000000002aee0000)] 0x0000000019ef8000 JavaThread "Wurm-Fast-Clock-Workaround-Thread" daemon [_thread_blocked, id=7516, stack(0x0000000026ad0000,0x0000000026bd0000)] 0x0000000019efb000 JavaThread "WOM Model Loader 1" daemon [_thread_blocked, id=1184, stack(0x00000000269d0000,0x0000000026ad0000)] 0x0000000019ef9800 JavaThread "WOM Model Loader 0" daemon [_thread_blocked, id=8156, stack(0x00000000268d0000,0x00000000269d0000)] 0x0000000019efa800 JavaThread "Collada Model Loader 0" daemon [_thread_blocked, id=2552, stack(0x00000000267d0000,0x00000000268d0000)] 0x0000000019ef6800 JavaThread "Sound Unloader" daemon [_thread_blocked, id=3668, stack(0x0000000021850000,0x0000000021950000)] 0x0000000019ef9000 JavaThread "Wurm 3.99.52 main thread" [_thread_blocked, id=1788, stack(0x000000001f750000,0x000000001f850000)] 0x0000000019eed800 JavaThread "Job executor 2" [_thread_blocked, id=2548, stack(0x000000001f650000,0x000000001f750000)] 0x0000000019eec000 JavaThread "Job executor 1" [_thread_blocked, id=3640, stack(0x000000001f550000,0x000000001f650000)] 0x0000000019ef2000 JavaThread "Job executor 0" [_thread_blocked, id=5412, stack(0x000000001f450000,0x000000001f550000)] 0x0000000019ef0000 JavaThread "SwingWorker-pool-3-thread-6" daemon [_thread_blocked, id=7276, stack(0x000000001e280000,0x000000001e380000)] 0x0000000019eee000 JavaThread "SwingWorker-pool-3-thread-5" daemon [_thread_blocked, id=8212, stack(0x000000001e180000,0x000000001e280000)] 0x0000000019ef6000 JavaThread "SwingWorker-pool-3-thread-4" daemon [_thread_blocked, id=2236, stack(0x000000001e080000,0x000000001e180000)] 0x0000000019ef3800 JavaThread "SwingWorker-pool-3-thread-3" daemon [_thread_blocked, id=1052, stack(0x000000001cab0000,0x000000001cbb0000)] 0x0000000019ef4800 JavaThread "SwingWorker-pool-3-thread-2" daemon [_thread_blocked, id=6904, stack(0x000000001c9b0000,0x000000001cab0000)] 0x0000000019ef1800 JavaThread "SwingWorker-pool-3-thread-1" daemon [_thread_blocked, id=2364, stack(0x000000001c5b0000,0x000000001c6b0000)] 0x0000000019eec800 JavaThread "TimerQueue" daemon [_thread_blocked, id=6872, stack(0x000000001c4b0000,0x000000001c5b0000)] 0x0000000019ef0800 JavaThread "TimerQueue" daemon [_thread_blocked, id=4440, stack(0x000000001b2b0000,0x000000001b3b0000)] 0x0000000016fe3800 JavaThread "CacheCleanUpThread" daemon [_thread_blocked, id=3696, stack(0x0000000017fd0000,0x00000000180d0000)] 0x0000000016fd2800 JavaThread "CacheMemoryCleanUpThread" daemon [_thread_blocked, id=4908, stack(0x0000000017ed0000,0x0000000017fd0000)] 0x0000000016fd2000 JavaThread "MemoryCache-DelayedCleanup" daemon [_thread_blocked, id=8780, stack(0x0000000017dd0000,0x0000000017ed0000)] 0x0000000002334000 JavaThread "DestroyJavaVM" [_thread_blocked, id=2020, stack(0x0000000001e30000,0x0000000001f30000)] 0x0000000016fcc800 JavaThread "Javaws Secure Thread" daemon [_thread_blocked, id=8980, stack(0x0000000017bd0000,0x0000000017cd0000)] 0x0000000016fc0800 JavaThread "AWT-Windows" daemon [_thread_in_native, id=5340, stack(0x0000000017910000,0x0000000017a10000)] 0x0000000016fbf000 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=8440, stack(0x0000000017710000,0x0000000017810000)] 0x00000000164e2800 JavaThread "traceMsgQueueThread" daemon [_thread_blocked, id=8860, stack(0x0000000016a50000,0x0000000016b50000)] 0x0000000014b5e800 JavaThread "Service Thread" daemon [_thread_blocked, id=5632, stack(0x0000000016850000,0x0000000016950000)] 0x0000000014b0d000 JavaThread "C1 CompilerThread2" daemon [_thread_blocked, id=1400, stack(0x0000000016350000,0x0000000016450000)] 0x0000000014b01800 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=9076, stack(0x0000000016250000,0x0000000016350000)] 0x0000000014afe800 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=3156, stack(0x0000000016150000,0x0000000016250000)] 0x0000000014afc000 JavaThread "Attach Listener" daemon [_thread_blocked, id=7192, stack(0x0000000016050000,0x0000000016150000)] 0x0000000014afb000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2184, stack(0x0000000015f50000,0x0000000016050000)] 0x0000000014aea000 JavaThread "Finalizer" daemon [_thread_blocked, id=8716, stack(0x0000000015d60000,0x0000000015e60000)] 0x0000000002423800 JavaThread "Reference Handler" daemon [_thread_blocked, id=1944, stack(0x0000000015c60000,0x0000000015d60000)] Other Threads: 0x0000000014ac9000 VMThread [stack: 0x0000000015b60000,0x0000000015c60000] [id=3360] 0x00000000164dc800 WatcherThread [stack: 0x0000000016950000,0x0000000016a50000] [id=7760] =>0x0000000002349000 (exited) GCTaskThread [stack: 0x0000000011b60000,0x0000000011c60000] [id=6180] VM state:at safepoint (normal execution) VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event]) [0x0000000002330ad0] Threads_lock - owner thread: 0x0000000014ac9000 [0x0000000002330d50] Heap_lock - owner thread: 0x0000000019ef9000 Heap: PSYoungGen total 185856K, used 1792K [0x00000000eab00000, 0x0000000100000000, 0x0000000100000000) eden space 183808K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000f5e80000) from space 2048K, 87% used [0x00000000f5e80000,0x00000000f6040000,0x00000000f6080000) to space 83968K, 0% used [0x00000000fae00000,0x00000000fae00000,0x0000000100000000) ParOldGen total 349696K, used 308563K [0x00000000c0000000, 0x00000000d5580000, 0x00000000eab00000) object space 349696K, 88% used [0x00000000c0000000,0x00000000d2d54e38,0x00000000d5580000) Metaspace used 40193K, capacity 40575K, committed 41008K, reserved 1085440K class space used 4270K, capacity 4371K, committed 4400K, reserved 1048576K Card table byte_map: [0x00000000117f0000,0x0000000011a00000] byte_map_base: 0x00000000111f0000 Marking Bits: (ParMarkBitMap*) 0x00000000718ed850 Begin Bits: [0x0000000011f60000, 0x0000000012f60000) End Bits: [0x0000000012f60000, 0x0000000013f60000) Polling page: 0x0000000001f30000 CodeCache: size=245760Kb used=30974Kb max_used=32038Kb free=214785Kb bounds [0x0000000002430000, 0x00000000043e0000, 0x0000000011430000] total_blobs=8052 nmethods=7116 adapters=846 compilation: enabled Compilation events (10 events): Event: 60.625 Thread 0x0000000014b0d000 9310 3 java.lang.Exception::<init> (5 bytes) Event: 60.625 Thread 0x0000000014b0d000 nmethod 9310 0x0000000002c097d0 code [0x0000000002c09940, 0x0000000002c09c68] Event: 60.627 Thread 0x0000000014b0d000 9311 3 java.lang.RuntimeException::<init> (5 bytes) Event: 60.627 Thread 0x0000000014b0d000 nmethod 9311 0x00000000030f1c10 code [0x00000000030f1da0, 0x00000000030f2108] Event: 60.627 Thread 0x0000000014b0d000 9312 3 java.lang.IllegalMonitorStateException::<init> (5 bytes) Event: 60.627 Thread 0x0000000014b0d000 nmethod 9312 0x0000000003b38290 code [0x0000000003b38400, 0x0000000003b38648] Event: 60.678 Thread 0x0000000014b01800 9313 4 java.lang.IllegalMonitorStateException::<init> (5 bytes) Event: 60.679 Thread 0x0000000014afe800 9314 4 java.lang.Throwable::<init> (29 bytes) Event: 60.680 Thread 0x0000000014b01800 nmethod 9313 0x0000000003e67790 code [0x0000000003e678e0, 0x0000000003e67c28] Event: 60.681 Thread 0x0000000014afe800 nmethod 9314 0x0000000003f3f750 code [0x0000000003f3f8c0, 0x0000000003f3fc08] GC Heap History (10 events): Event: 42.185 GC heap after Heap after GC invocations=15 (full 2): PSYoungGen total 251392K, used 32211K [0x00000000eab00000, 0x00000000ffc80000, 0x0000000100000000) eden space 159232K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000f4680000) from space 92160K, 34% used [0x00000000f4680000,0x00000000f65f4da0,0x00000000fa080000) to space 88064K, 0% used [0x00000000fa680000,0x00000000fa680000,0x00000000ffc80000) ParOldGen total 349696K, used 242600K [0x00000000c0000000, 0x00000000d5580000, 0x00000000eab00000) object space 349696K, 69% used [0x00000000c0000000,0x00000000cecea2d8,0x00000000d5580000) Metaspace used 38822K, capacity 39193K, committed 39728K, reserved 1085440K class space used 4228K, capacity 4338K, committed 4400K, reserved 1048576K } Event: 42.557 GC heap before {Heap before GC invocations=16 (full 2): PSYoungGen total 251392K, used 191443K [0x00000000eab00000, 0x00000000ffc80000, 0x0000000100000000) eden space 159232K, 100% used [0x00000000eab00000,0x00000000f4680000,0x00000000f4680000) from space 92160K, 34% used [0x00000000f4680000,0x00000000f65f4da0,0x00000000fa080000) to space 88064K, 0% used [0x00000000fa680000,0x00000000fa680000,0x00000000ffc80000) ParOldGen total 349696K, used 242600K [0x00000000c0000000, 0x00000000d5580000, 0x00000000eab00000) object space 349696K, 69% used [0x00000000c0000000,0x00000000cecea2d8,0x00000000d5580000) Metaspace used 39093K, capacity 39449K, committed 39984K, reserved 1085440K class space used 4240K, capacity 4338K, committed 4400K, reserved 1048576K Event: 42.596 GC heap after Heap after GC invocations=16 (full 2): PSYoungGen total 247296K, used 37140K [0x00000000eab00000, 0x00000000ff300000, 0x0000000100000000) eden space 168960K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000f5000000) from space 78336K, 47% used [0x00000000fa680000,0x00000000fcac51e0,0x00000000ff300000) to space 83456K, 0% used [0x00000000f5000000,0x00000000f5000000,0x00000000fa180000) ParOldGen total 349696K, used 270536K [0x00000000c0000000, 0x00000000d5580000, 0x00000000eab00000) object space 349696K, 77% used [0x00000000c0000000,0x00000000d08321b0,0x00000000d5580000) Metaspace used 39093K, capacity 39449K, committed 39984K, reserved 1085440K class space used 4240K, capacity 4338K, committed 4400K, reserved 1048576K } Event: 43.634 GC heap before {Heap before GC invocations=17 (full 2): PSYoungGen total 247296K, used 206100K [0x00000000eab00000, 0x00000000ff300000, 0x0000000100000000) eden space 168960K, 99% used [0x00000000eab00000,0x00000000f4ffff38,0x00000000f5000000) from space 78336K, 47% used [0x00000000fa680000,0x00000000fcac51e0,0x00000000ff300000) to space 83456K, 0% used [0x00000000f5000000,0x00000000f5000000,0x00000000fa180000) ParOldGen total 349696K, used 270536K [0x00000000c0000000, 0x00000000d5580000, 0x00000000eab00000) object space 349696K, 77% used [0x00000000c0000000,0x00000000d08321b0,0x00000000d5580000) Metaspace used 39326K, capacity 39743K, committed 40240K, reserved 1085440K class space used 4248K, capacity 4371K, committed 4400K, reserved 1048576K Event: 43.663 GC heap after Heap after GC invocations=17 (full 2): PSYoungGen total 252416K, used 46444K [0x00000000eab00000, 0x0000000100000000, 0x0000000100000000) eden space 168960K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000f5000000) from space 83456K, 55% used [0x00000000f5000000,0x00000000f7d5b210,0x00000000fa180000) to space 81920K, 0% used [0x00000000fb000000,0x00000000fb000000,0x0000000100000000) ParOldGen total 349696K, used 289711K [0x00000000c0000000, 0x00000000d5580000, 0x00000000eab00000) object space 349696K, 82% used [0x00000000c0000000,0x00000000d1aebff0,0x00000000d5580000) Metaspace used 39326K, capacity 39743K, committed 40240K, reserved 1085440K class space used 4248K, capacity 4371K, committed 4400K, reserved 1048576K } Event: 46.007 GC heap before {Heap before GC invocations=18 (full 2): PSYoungGen total 252416K, used 215404K [0x00000000eab00000, 0x0000000100000000, 0x0000000100000000) eden space 168960K, 100% used [0x00000000eab00000,0x00000000f5000000,0x00000000f5000000) from space 83456K, 55% used [0x00000000f5000000,0x00000000f7d5b210,0x00000000fa180000) to space 81920K, 0% used [0x00000000fb000000,0x00000000fb000000,0x0000000100000000) ParOldGen total 349696K, used 289711K [0x00000000c0000000, 0x00000000d5580000, 0x00000000eab00000) object space 349696K, 82% used [0x00000000c0000000,0x00000000d1aebff0,0x00000000d5580000) Metaspace used 39567K, capacity 39999K, committed 40496K, reserved 1085440K class space used 4268K, capacity 4371K, committed 4400K, reserved 1048576K Event: 46.021 GC heap after Heap after GC invocations=18 (full 2): PSYoungGen total 265216K, used 11776K [0x00000000eab00000, 0x00000000fff80000, 0x0000000100000000) eden space 183808K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000f5e80000) from space 81408K, 14% used [0x00000000fb000000,0x00000000fbb80370,0x00000000fff80000) to space 82432K, 0% used [0x00000000f5e80000,0x00000000f5e80000,0x00000000faf00000) ParOldGen total 349696K, used 302825K [0x00000000c0000000, 0x00000000d5580000, 0x00000000eab00000) object space 349696K, 86% used [0x00000000c0000000,0x00000000d27ba660,0x00000000d5580000) Metaspace used 39567K, capacity 39999K, committed 40496K, reserved 1085440K class space used 4268K, capacity 4371K, committed 4400K, reserved 1048576K } Event: 61.018 GC heap before {Heap before GC invocations=19 (full 2): PSYoungGen total 265216K, used 195584K [0x00000000eab00000, 0x00000000fff80000, 0x0000000100000000) eden space 183808K, 100% used [0x00000000eab00000,0x00000000f5e80000,0x00000000f5e80000) from space 81408K, 14% used [0x00000000fb000000,0x00000000fbb80370,0x00000000fff80000) to space 82432K, 0% used [0x00000000f5e80000,0x00000000f5e80000,0x00000000faf00000) ParOldGen total 349696K, used 302825K [0x00000000c0000000, 0x00000000d5580000, 0x00000000eab00000) object space 349696K, 86% used [0x00000000c0000000,0x00000000d27ba660,0x00000000d5580000) Metaspace used 40193K, capacity 40575K, committed 41008K, reserved 1085440K class space used 4270K, capacity 4371K, committed 4400K, reserved 1048576K Event: 61.026 GC heap after Heap after GC invocations=19 (full 2): PSYoungGen total 185856K, used 1792K [0x00000000eab00000, 0x0000000100000000, 0x0000000100000000) eden space 183808K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000f5e80000) from space 2048K, 87% used [0x00000000f5e80000,0x00000000f6040000,0x00000000f6080000) to space 83968K, 0% used [0x00000000fae00000,0x00000000fae00000,0x0000000100000000) ParOldGen total 349696K, used 308563K [0x00000000c0000000, 0x00000000d5580000, 0x00000000eab00000) object space 349696K, 88% used [0x00000000c0000000,0x00000000d2d54e38,0x00000000d5580000) Metaspace used 40193K, capacity 40575K, committed 41008K, reserved 1085440K class space used 4270K, capacity 4371K, committed 4400K, reserved 1048576K } Event: 61.026 GC heap before {Heap before GC invocations=20 (full 3): PSYoungGen total 185856K, used 1792K [0x00000000eab00000, 0x0000000100000000, 0x0000000100000000) eden space 183808K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000f5e80000) from space 2048K, 87% used [0x00000000f5e80000,0x00000000f6040000,0x00000000f6080000) to space 83968K, 0% used [0x00000000fae00000,0x00000000fae00000,0x0000000100000000) ParOldGen total 349696K, used 308563K [0x00000000c0000000, 0x00000000d5580000, 0x00000000eab00000) object space 349696K, 88% used [0x00000000c0000000,0x00000000d2d54e38,0x00000000d5580000) Metaspace used 40193K, capacity 40575K, committed 41008K, reserved 1085440K class space used 4270K, capacity 4371K, committed 4400K, reserved 1048576K Deoptimization events (10 events): Event: 54.658 Thread 0x0000000019ef9000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000036af214 method=class.zOGyKXqI17.FZOk5L6Gfy(Lclass/mHp80DMOlW;ZZ)V @ 155 Event: 54.768 Thread 0x0000000019ef2000 Uncommon trap: reason=predicate action=maybe_recompile pc=0x0000000003c0d974 method=java.util.concurrent.ConcurrentLinkedQueue.toArray([Ljava/lang/Object;)[Ljava/lang/Object; @ 11 Event: 55.067 Thread 0x0000000019ef9000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000003f81f3c method=class.lDs0Z2Y5jj.FZOk5L6Gfy(J)V @ 41 Event: 55.397 Thread 0x0000000019ef2000 Uncommon trap: reason=array_check action=maybe_recompile pc=0x000000000394f0cc method=java.util.concurrent.ConcurrentLinkedQueue.toArray([Ljava/lang/Object;)[Ljava/lang/Object; @ 35 Event: 55.451 Thread 0x0000000019ef2000 Uncommon trap: reason=array_check action=maybe_recompile pc=0x000000000394f0cc method=java.util.concurrent.ConcurrentLinkedQueue.toArray([Ljava/lang/Object;)[Ljava/lang/Object; @ 35 Event: 55.451 Thread 0x0000000019ef2000 Uncommon trap: reason=array_check action=maybe_recompile pc=0x000000000394f0cc method=java.util.concurrent.ConcurrentLinkedQueue.toArray([Ljava/lang/Object;)[Ljava/lang/Object; @ 35 Event: 55.515 Thread 0x0000000019ef2000 Uncommon trap: reason=array_check action=maybe_recompile pc=0x000000000394f0cc method=java.util.concurrent.ConcurrentLinkedQueue.toArray([Ljava/lang/Object;)[Ljava/lang/Object; @ 35 Event: 55.666 Thread 0x0000000019ef9000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000039daba8 method=class.C44osihSNB.V8K8v9DodL()V @ 132 Event: 55.666 Thread 0x0000000019ef9000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000003be76c0 method=java.util.concurrent.ConcurrentLinkedQueue.peek()Ljava/lang/Object; @ 24 Event: 60.474 Thread 0x0000000019ef9000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000003c27454 method=class.zOGyKXqI17.FZOk5L6Gfy(Lclass/mHp80DMOlW;ZZ)V @ 32 Internal exceptions (10 events): Event: 61.018 Thread 0x0000000019ef9000 Exception <a 'java/lang/IllegalMonitorStateException'> (0x00000000f5e7ea60) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u144\9417\hotspot\src\share\vm\interpreter\interpreterRuntime.cpp, line 652] Event: 61.018 Thread 0x0000000019ef9000 Exception <a 'java/lang/IllegalMonitorStateException'> (0x00000000f5e7ec68) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u144\9417\hotspot\src\share\vm\interpreter\interpreterRuntime.cpp, line 652] Event: 61.018 Thread 0x0000000019ef9000 Exception <a 'java/lang/IllegalMonitorStateException'> (0x00000000f5e7ee70) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u144\9417\hotspot\src\share\vm\interpreter\interpreterRuntime.cpp, line 652] Event: 61.018 Thread 0x0000000019ef9000 Exception <a 'java/lang/IllegalMonitorStateException'> (0x00000000f5e7f078) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u144\9417\hotspot\src\share\vm\interpreter\interpreterRuntime.cpp, line 652] Event: 61.018 Thread 0x0000000019ef9000 Exception <a 'java/lang/IllegalMonitorStateException'> (0x00000000f5e7f280) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u144\9417\hotspot\src\share\vm\interpreter\interpreterRuntime.cpp, line 652] Event: 61.018 Thread 0x0000000019ef9000 Exception <a 'java/lang/IllegalMonitorStateException'> (0x00000000f5e7f488) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u144\9417\hotspot\src\share\vm\interpreter\interpreterRuntime.cpp, line 652] Event: 61.018 Thread 0x0000000019ef9000 Exception <a 'java/lang/IllegalMonitorStateException'> (0x00000000f5e7f690) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u144\9417\hotspot\src\share\vm\interpreter\interpreterRuntime.cpp, line 652] Event: 61.018 Thread 0x0000000019ef9000 Exception <a 'java/lang/IllegalMonitorStateException'> (0x00000000f5e7f898) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u144\9417\hotspot\src\share\vm\interpreter\interpreterRuntime.cpp, line 652] Event: 61.018 Thread 0x0000000019ef9000 Exception <a 'java/lang/IllegalMonitorStateException'> (0x00000000f5e7faa0) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u144\9417\hotspot\src\share\vm\interpreter\interpreterRuntime.cpp, line 652] Event: 61.018 Thread 0x0000000019ef9000 Exception <a 'java/lang/IllegalMonitorStateException'> (0x00000000f5e7fca8) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u144\9417\hotspot\src\share\vm\interpreter\interpreterRuntime.cpp, line 652] Events (10 events): Event: 60.591 Thread 0x0000000014b0d000 flushing nmethod 0x0000000003e7c590 Event: 60.591 Thread 0x0000000014b0d000 flushing nmethod 0x0000000003edfd90 Event: 60.591 Thread 0x0000000014b0d000 flushing nmethod 0x0000000003ee05d0 Event: 60.591 Thread 0x0000000014b0d000 flushing nmethod 0x0000000003f3f610 Event: 60.591 Thread 0x0000000014b0d000 flushing nmethod 0x0000000003f405d0 Event: 60.591 Thread 0x0000000014b0d000 flushing nmethod 0x0000000003f44ad0 Event: 60.591 Thread 0x0000000014b0d000 flushing nmethod 0x0000000003f58b90 Event: 60.591 Thread 0x0000000014b0d000 flushing nmethod 0x0000000003fc95d0 Event: 60.591 Thread 0x0000000014b0d000 flushing nmethod 0x0000000003ffaf90 Event: 61.018 Executing VM operation: ParallelGCFailedAllocation Dynamic libraries: 0x00007ff777460000 - 0x00007ff77747f000 C:\Program Files\Java\jre1.8.0_144\bin\jp2launcher.exe 0x00007ffc0ffe0000 - 0x00007ffc101bb000 C:\WINDOWS\SYSTEM32\ntdll.dll 0x00007ffbfe320000 - 0x00007ffbfe353000 C:\Program Files\AVAST Software\Avast\x64\aswhooka.dll 0x00007ffc0d6a0000 - 0x00007ffc0d74e000 C:\WINDOWS\System32\KERNEL32.DLL 0x00007ffc0c5a0000 - 0x00007ffc0c7e9000 C:\WINDOWS\System32\KERNELBASE.dll 0x00007ffc0f640000 - 0x00007ffc0f78a000 C:\WINDOWS\System32\USER32.dll 0x00007ffc0d520000 - 0x00007ffc0d53e000 C:\WINDOWS\System32\win32u.dll 0x00007ffc0ed00000 - 0x00007ffc0ed27000 C:\WINDOWS\System32\GDI32.dll 0x00007ffc0cf50000 - 0x00007ffc0d0d8000 C:\WINDOWS\System32\gdi32full.dll 0x00007ffc0c500000 - 0x00007ffc0c59a000 C:\WINDOWS\System32\msvcp_win.dll 0x00007ffc0d420000 - 0x00007ffc0d516000 C:\WINDOWS\System32\ucrtbase.dll 0x00007ffc0d540000 - 0x00007ffc0d685000 C:\WINDOWS\System32\ole32.dll 0x00007ffc0f790000 - 0x00007ffc0fa89000 C:\WINDOWS\System32\combase.dll 0x00007ffc0fca0000 - 0x00007ffc0fdc5000 C:\WINDOWS\System32\RPCRT4.dll 0x00007ffc0d3b0000 - 0x00007ffc0d41a000 C:\WINDOWS\System32\bcryptPrimitives.dll 0x00007ffc0fc20000 - 0x00007ffc0fc79000 C:\WINDOWS\System32\sechost.dll 0x00007ffc0ed30000 - 0x00007ffc0edf0000 C:\WINDOWS\System32\OLEAUT32.dll 0x00000000719e0000 - 0x0000000071ab2000 C:\Program Files\Java\jre1.8.0_144\bin\MSVCR100.dll 0x00007ffc0f590000 - 0x00007ffc0f5bd000 C:\WINDOWS\System32\IMM32.DLL 0x00007ffc0d810000 - 0x00007ffc0d8b1000 C:\WINDOWS\System32\ADVAPI32.dll 0x00007ffc0fdd0000 - 0x00007ffc0fe6d000 C:\WINDOWS\System32\msvcrt.dll 0x00007ffc0b750000 - 0x00007ffc0b781000 C:\WINDOWS\SYSTEM32\ntmarta.dll 0x00007ffc0d8c0000 - 0x00007ffc0ecf7000 C:\WINDOWS\System32\SHELL32.dll 0x00007ffc0d2b0000 - 0x00007ffc0d2f9000 C:\WINDOWS\System32\cfgmgr32.dll 0x00007ffc0d750000 - 0x00007ffc0d7fa000 C:\WINDOWS\System32\shcore.dll 0x00007ffc0c850000 - 0x00007ffc0cf43000 C:\WINDOWS\System32\windows.storage.dll 0x00007ffc0f0f0000 - 0x00007ffc0f141000 C:\WINDOWS\System32\shlwapi.dll 0x00007ffc0c4c0000 - 0x00007ffc0c4d1000 C:\WINDOWS\System32\kernel.appcore.dll 0x00007ffc0c470000 - 0x00007ffc0c4bc000 C:\WINDOWS\System32\powrprof.dll 0x00007ffc0c450000 - 0x00007ffc0c465000 C:\WINDOWS\System32\profapi.dll 0x0000000071970000 - 0x000000007199f000 C:\Program Files\Java\jre1.8.0_144\bin\jli.dll 0x00007ffbff020000 - 0x00007ffbff287000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.15063.483_none_26002d27e7c744a2\COMCTL32.dll 0x00000000710d0000 - 0x000000007196d000 C:\Program Files\Java\jre1.8.0_144\bin\server\jvm.dll 0x00007ffc0fc10000 - 0x00007ffc0fc18000 C:\WINDOWS\System32\PSAPI.DLL 0x00007ffbf3530000 - 0x00007ffbf3539000 C:\WINDOWS\SYSTEM32\WSOCK32.dll 0x00007ffc0fa90000 - 0x00007ffc0fafc000 C:\WINDOWS\System32\WS2_32.dll 0x00007ffc08fd0000 - 0x00007ffc08ff3000 C:\WINDOWS\SYSTEM32\WINMM.dll 0x00007ffc00760000 - 0x00007ffc0076a000 C:\WINDOWS\SYSTEM32\VERSION.dll 0x00007ffc08f60000 - 0x00007ffc08f8b000 C:\WINDOWS\SYSTEM32\WINMMBASE.dll 0x00000000710c0000 - 0x00000000710cf000 C:\Program Files\Java\jre1.8.0_144\bin\verify.dll 0x0000000071090000 - 0x00000000710b9000 C:\Program Files\Java\jre1.8.0_144\bin\java.dll 0x0000000071070000 - 0x0000000071086000 C:\Program Files\Java\jre1.8.0_144\bin\zip.dll 0x0000000070fd0000 - 0x0000000071062000 C:\Program Files\Java\jre1.8.0_144\bin\deploy.dll 0x00007ffc0fc80000 - 0x00007ffc0fc9d000 C:\WINDOWS\System32\imagehlp.dll 0x00007ffbfac20000 - 0x00007ffbfaf4e000 C:\WINDOWS\SYSTEM32\WININET.dll 0x00007ffc02b20000 - 0x00007ffc02ce7000 C:\WINDOWS\SYSTEM32\urlmon.dll 0x00007ffc03580000 - 0x00007ffc0380a000 C:\WINDOWS\SYSTEM32\iertutil.dll 0x00007ffc0bec0000 - 0x00007ffc0becb000 C:\WINDOWS\SYSTEM32\CRYPTBASE.DLL 0x0000000070fb0000 - 0x0000000070fca000 C:\Program Files\Java\jre1.8.0_144\bin\net.dll 0x00007ffc0bd00000 - 0x00007ffc0bd5c000 C:\WINDOWS\system32\mswsock.dll 0x0000000070f90000 - 0x0000000070fa1000 C:\Program Files\Java\jre1.8.0_144\bin\nio.dll 0x0000000070df0000 - 0x0000000070f88000 C:\Program Files\Java\jre1.8.0_144\bin\awt.dll 0x00007ffc09280000 - 0x00007ffc092fe000 C:\WINDOWS\SYSTEM32\apphelp.dll 0x00007ffc0ac90000 - 0x00007ffc0ad25000 C:\WINDOWS\system32\uxtheme.dll 0x00007ffc0fe70000 - 0x00007ffc0ffd6000 C:\WINDOWS\System32\MSCTF.dll 0x00007ffc08c10000 - 0x00007ffc08c3a000 C:\WINDOWS\system32\dwmapi.dll 0x00007ffc0c380000 - 0x00007ffc0c3b0000 C:\WINDOWS\SYSTEM32\SspiCli.dll 0x00007ffc04aa0000 - 0x00007ffc04abb000 C:\WINDOWS\SYSTEM32\ondemandconnroutehelper.dll 0x00007ffc0baa0000 - 0x00007ffc0bad7000 C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL 0x00007ffc090e0000 - 0x00007ffc091b7000 C:\WINDOWS\SYSTEM32\winhttp.dll 0x00007ffc0a350000 - 0x00007ffc0a35b000 C:\WINDOWS\SYSTEM32\WINNSI.DLL 0x00007ffc0d800000 - 0x00007ffc0d808000 C:\WINDOWS\System32\NSI.dll 0x00007ffc0a300000 - 0x00007ffc0a316000 C:\WINDOWS\SYSTEM32\dhcpcsvc6.DLL 0x00007ffc0baf0000 - 0x00007ffc0bb94000 C:\WINDOWS\SYSTEM32\DNSAPI.dll 0x00007ffc0a2d0000 - 0x00007ffc0a2ea000 C:\WINDOWS\SYSTEM32\dhcpcsvc.DLL 0x00007ffc08880000 - 0x00007ffc0888a000 C:\Windows\System32\rasadhlp.dll 0x00007ffc09c70000 - 0x00007ffc09cdb000 C:\WINDOWS\System32\fwpuclnt.dll 0x00007ffc0c280000 - 0x00007ffc0c2a5000 C:\WINDOWS\SYSTEM32\bcrypt.dll 0x00007ffbfb280000 - 0x00007ffbfb2f4000 C:\WINDOWS\SYSTEM32\msiso.dll 0x00007ffc0eff0000 - 0x00007ffc0f08e000 C:\WINDOWS\System32\clbcatq.dll 0x00007ffc09960000 - 0x00007ffc09af6000 C:\WINDOWS\SYSTEM32\PROPSYS.dll 0x00007ffbf73e0000 - 0x00007ffbf73f0000 C:\WINDOWS\SYSTEM32\LINKINFO.dll 0x00007ffbf4db0000 - 0x00007ffbf4e86000 C:\WINDOWS\SYSTEM32\ntshrui.dll 0x00007ffbfc940000 - 0x00007ffbfc966000 C:\WINDOWS\SYSTEM32\srvcli.dll 0x00007ffbfe4e0000 - 0x00007ffbfe4f2000 C:\WINDOWS\SYSTEM32\cscapi.dll 0x0000000070da0000 - 0x0000000070de7000 C:\Program Files\Java\jre1.8.0_144\bin\fontmanager.dll 0x00007ffbed240000 - 0x00007ffbed361000 C:\WINDOWS\system32\opengl32.dll 0x00007ffc05040000 - 0x00007ffc0506c000 C:\WINDOWS\SYSTEM32\GLU32.dll 0x0000000070d50000 - 0x0000000070d92000 C:\Program Files\Java\jre1.8.0_144\bin\t2k.dll 0x00007ffc03290000 - 0x00007ffc0343c000 C:\WINDOWS\SYSTEM32\WindowsCodecs.dll 0x00007ffbf5e50000 - 0x00007ffbf5e97000 C:\WINDOWS\system32\dataexchange.dll 0x00007ffc06cf0000 - 0x00007ffc06fcf000 C:\WINDOWS\system32\d3d11.dll 0x00007ffc08300000 - 0x00007ffc08422000 C:\WINDOWS\system32\dcomp.dll 0x00007ffc0b380000 - 0x00007ffc0b424000 C:\WINDOWS\system32\dxgi.dll 0x00007ffc0add0000 - 0x00007ffc0af40000 C:\WINDOWS\system32\twinapi.appcore.dll 0x00007ffc06050000 - 0x00007ffc060d2000 C:\WINDOWS\System32\TextInputFramework.dll 0x00007ffc05cf0000 - 0x00007ffc05fc2000 C:\WINDOWS\System32\CoreUIComponents.dll 0x00007ffc070c0000 - 0x00007ffc071a3000 C:\WINDOWS\System32\CoreMessaging.dll 0x00007ffc08ad0000 - 0x00007ffc08c09000 C:\WINDOWS\SYSTEM32\wintypes.dll 0x00007ffc091e0000 - 0x00007ffc091f5000 C:\WINDOWS\SYSTEM32\usermgrcli.dll 0x00007ffc0d0e0000 - 0x00007ffc0d2a9000 C:\WINDOWS\System32\CRYPT32.dll 0x00007ffc0c4e0000 - 0x00007ffc0c4f1000 C:\WINDOWS\System32\MSASN1.dll 0x00007ffc0bea0000 - 0x00007ffc0beb7000 C:\WINDOWS\SYSTEM32\CRYPTSP.dll 0x00007ffc0b920000 - 0x00007ffc0b954000 C:\WINDOWS\system32\rsaenh.dll 0x00000000719b0000 - 0x00000000719d4000 C:\Program Files\Java\jre1.8.0_144\bin\sunec.dll 0x00000000719a0000 - 0x00000000719ad000 C:\Program Files\Java\jre1.8.0_144\bin\management.dll 0x0000000180000000 - 0x0000000180051000 C:\Users\CMors\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\14\75c528e-4fadbe8a-2.9.1--n\lwjgl64.dll 0x00007ffc0c350000 - 0x00007ffc0c379000 C:\WINDOWS\SYSTEM32\USERENV.dll 0x0000000070d10000 - 0x0000000070d41000 C:\Program Files\Java\jre1.8.0_144\bin\jpeg.dll 0x000000001f850000 - 0x0000000020a42000 C:\WINDOWS\SYSTEM32\ig4icd64.dll 0x00007ffbf3d90000 - 0x00007ffbf3e23000 C:\WINDOWS\SYSTEM32\mscms.dll 0x00007ffc02ad0000 - 0x00007ffc02b11000 C:\WINDOWS\SYSTEM32\icm32.dll 0x00000000185e0000 - 0x0000000018644000 C:\Users\CMors\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\14\75c528e-4fadbe8a-2.9.1--n\OpenAL64.dll 0x00007ffc09b50000 - 0x00007ffc09bb7000 C:\WINDOWS\System32\MMDevApi.dll 0x00007ffc0ada0000 - 0x00007ffc0adc8000 C:\WINDOWS\System32\DEVOBJ.dll 0x00007ffbffd70000 - 0x00007ffbffdfc000 C:\WINDOWS\SYSTEM32\dsound.dll 0x00007ffc08c70000 - 0x00007ffc08d75000 C:\WINDOWS\SYSTEM32\AUDIOSES.DLL 0x00007ffc08740000 - 0x00007ffc0874b000 C:\WINDOWS\SYSTEM32\AVRT.dll 0x0000000070cd0000 - 0x0000000070d0c000 C:\Program Files\Java\jre1.8.0_144\bin\lcms.dll 0x00007ffbfe740000 - 0x00007ffbfe8e9000 C:\WINDOWS\SYSTEM32\dbghelp.dll VM Arguments: jvm_args: -Xbootclasspath/a:C:\Program Files\Java\jre1.8.0_144\lib\deploy.jar;C:\Program Files\Java\jre1.8.0_144\lib\javaws.jar;C:\Program Files\Java\jre1.8.0_144\lib\plugin.jar -Xverify:remote -Djava.security.manager -Djava.security.policy=file:C:\Program Files\Java\jre1.8.0_144\lib\security\javaws.policy -DtrustProxy=true -Djnlpx.home=C:\Program Files\Java\jre1.8.0_144\bin -Djnlpx.origFilenameArg=C:\Users\CMors\Desktop\Wurm Online.jnlp -Djnlpx.remove=true -Dsun.java2d.noddraw=true -Djnlp.versionEnabled=true -Xms512m -Xmx1024m -Djnlpx.heapsize=512m,1024m -Djnlpx.splashport=51126 -Djnlpx.jvm=C:\Program Files\Java\jre1.8.0_144\bin\javaw.exe -Djnlpx.vmargs=LURzdW4uamF2YTJkLm5vZGRyYXc9dHJ1ZQAtRGpubHAudmVyc2lvbkVuYWJsZWQ9dHJ1ZQA= java_command: com.sun.javaws.Main C:\Users\CMors\AppData\Local\Temp\javaws2 java_class_path (initial): C:\Program Files\Java\jre1.8.0_144\lib\deploy.jar Launcher Type: SUN_STANDARD Environment Variables: PATH=C:\Program Files\Java\jre1.8.0_144\bin;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\ProgramData\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Users\CMors\AppData\Local\Microsoft\WindowsApps;;"C:\Program Files\Java\jre1.8.0_144\bin" USERNAME=CMors OS=Windows_NT PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 37 Stepping 2, GenuineIntel --------------- S Y S T E M --------------- OS: Windows 10.0 , 64 bit Build 15063 (10.0.15063.296) CPU:total 4 (initial active 4) (2 cores per cpu, 2 threads per core) family 6 model 37 stepping 2, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, aes, clmul, ht, tsc, tscinvbit Memory: 4k page, physical 8051060k(5606340k free), swap 9296244k(6255700k free) vm_info: Java HotSpot(TM) 64-Bit Server VM (25.144-b01) for windows-amd64 JRE (1.8.0_144-b01), built on Jul 21 2017 21:57:33 by "java_re" with MS VC++ 10.0 (VS2010) time: Sat Aug 19 16:52:04 2017 elapsed time: 61 seconds (0d 0h 1m 1s) console contents: Time is Sat Aug 19 16:52:14 PDT 2017 Running client version 3.99.52 client build# 297e046197d5c3acca29ad8e3d6f971fd166ef5a client build time 2017-08-18 04:09 === System information === Executing from C:\Users\USERNAME\Desktop\ Operating system: Windows 10 (arch: amd64, version: 10.0) Java version: 1.8.0_144 (Oracle Corporation) <http://java.oracle.com/> Jvm version: 25.144-b01 (Oracle Corporation) [Java HotSpot(TM) 64-Bit Server VM] Available CPUs: 4 Aug 19, 2017 4:52:14 PM java.util.prefs.WindowsPreferences <init> WARNING: Could not open/create prefs root node Software\JavaSoft\Prefs at root 0x80000002. Windows RegCreateKeyEx(...) returned error code 5. >>> Main thread exiting. Loading character Mithrian Loading config default Loading props file C:\Users\USERNAME\wurm\configs\default\gamesettings.txt Executing C:\Users\USERNAME\wurm\configs\default\keybindings.txt Loading props file C:\Users\USERNAME\wurm\players\Mithrian\password.txt >>> LoginFrame queue entry exiting. Saving props file C:\Users\USERNAME\wurm\configs\default\gamesettings.txt Keybindings saved. Saving props file C:\Users\USERNAME\wurm\players\Mithrian\password.txt Saving props file C:\Users\USERNAME\wurm\configs\default\gamesettings.txt Keybindings saved. Loaded pack sound.jar (r1) Loaded pack pmk.jar (r3061) Loaded pack graphics.jar (r3168) Options up-to-date! Loading props file C:\Users\USERNAME\wurm\players\Mithrian\playerdata.txt Loading props file C:\Users\USERNAME\wurm\players\Mithrian\stats.txt Preparing to enable console logging. Now logging to C:\Users\USERNAME\wurm\console.Mithrian.log === Wurm options === animation_playback_self = 0 auto_mipmaps_enabled = 2 auto_run_source = 0 cavedetail = 1 censor_chat = true collada_animations = 1 color_black = 0.0,0.0,0.0 color_cyan = 0.0,1.0,1.0 color_error = 1.0,0.3,0.3 color_fuchsia = 1.0,0.0,1.0 color_green = 0.4,0.72,0.47 color_grey = 0.5,0.75,1.0 color_lime = 0.5,1.0,0.5 color_maroon = 0.5,0.0,0.0 color_navy_blue = 0.23,0.39,1.0 color_orange = 1.0,0.58,0.04 color_purple = 0.5,0.0,0.5 color_red = 1.0,0.0,0.0 color_royal_blue = 0.5,0.5,1.0 color_silver = 0.75,0.75,0.75 color_system = 0.5,1.0,0.5 color_teal = 0.0,0.5,0.5 color_white = 1.0,1.0,1.0 color_yellow = 1.0,1.0,0.0 compressed_textures = true compressed_textures_S3TC = true contribution_culling = 150 custim_timer_source = 1 customTimer1 = -1|-1 customTimer2 = -1|-1 customTimer3 = -1|-1 customTimer4 = -1|-1 customTimer5 = -1|-1 debug_mode = false depth_clamp_enabled = 1 disable_select_all_shortcut = false display_settings = false:true:0:1280:1024:32:-1:false:false enable_contribution_culling = false enable_debugs = false enable_lod = true enable_shift_drag = false enable_vsync = true engine_multithreaded = 0 event_log_rotation = 2 exec_source = 0 fast_yield = false fbo_enabled = 1 fog_coord_src = 0 font_antialias = 2 font_bold = 11 font_default = 11 font_header = 24 font_italian = 11 font_monospaced = 11 font_static = 11 fov_horizontal = 80 fps_limit = 60 fps_limit_background = 30 fps_limit_enabled = true free_look_mode_disable_on_close_component = false free_look_mode_disable_on_combat = false free_look_mode_disable_on_open_component = false free_look_mode_sensitivity = 10 game_client_thread_priority = 2 glsl_debug_loading = false glsl_enabled = 2 gpu_skinning = true gui_opacity = 3 gui_skin = 1 has_read_eula = true hide_inactive_friends = false hide_menu_examine = false hide_menu_no_target = false hide_menu_spam_mode = true hide_menu_stop = false hide_onscreen_fail_messages = false hide_onscreen_hostile_messages = false hide_onscreen_info_messages = false hide_personal_goal = false high_res_binoculars = true hint_texture_scaling = 1 impColumn = true inverse_mouse = false irc_log_rotation = 2 irc_notif = 0 item_creature_render_distance = 3 key_bindings_source = 0 keyboard_layout = 0 loadInventoryStartup = true local_list_in_event = false lod = 1 log_extra_errors = false log_gl_errors = false mark_text_read = true material_as_suffix = true max_texture_size = 2 mega_texture_size = 4 model_loader_thread_priority = 2 model_loading_threads = 1 mount_rotation = false multidraw_enabled = 2 no_brightness = false no_terrain_render = false no_world_render = false non_power_of_two = 2 occlusion_queries_enabled = 2 offscreen_texture_size = 1 other_log_rotation = 2 outline_picking = true player_texture_size = 2 reflection_texture_size = 1 reflections = 0 release_context = false release_context_on_jogl_sleep = false remember_password = true render_distant_terrain = true render_glow = false render_sun_glare = false resident_models = false save_skills_on_quit = false screenshot_file_format = 1 season_override = 0 send_extra_tile_data = false setting_timestamps = true settings_version = 3 shadow_level = 0 shift_drag_default = 10 showKChat = true show_body_in_inventory = false show_old_quickbar = false silent_friends_update = false skillgain_minimum = 1 skillgain_no_alignment = true skillgain_no_favor = true skydetail = 0 sound_al_gain = 15 sound_buzzlevel = 2 sound_cache_enabled = true sound_doppler_enabled = false sound_engine = 2 sound_footstepslevel = 10 sound_music_level = 0 sound_play_PMAlert = false sound_play_ambients = true sound_play_buzz = true sound_play_combat = true sound_play_door = true sound_play_emotes = true sound_play_footsteps = true sound_play_music = false sound_play_weather = true sound_play_work = true stipple_enabled = true structure_render_distance = 3 submit_client_data = 1 terrain_bump = true terrain_res = 1 test_attach_equipment = false test_mode = 0 thirdPerson = false tile_transitions = true tiledecorations = 2 togglePushToTalk = true treelist_outline = true trees = 3 update_optional = true use_alpha_particles = true use_anisotropic_filtering = 2 use_antialiasing = 1 use_color_picking = true use_fast_clock_work_around = true use_fbo_color_picking = true use_nagles_algorithm = false use_nano_timer = false use_non_alpha_particles = true use_phobia_models = false use_tree_models = true use_weather_particles = true vbo_enabled = 0 viewport_bob = true water_detail = 0 Setting up Collada Model Loader Setting up WurmModel Model Loader Executing C:\Users\USERNAME\wurm\configs\default\keybindings.txt Translating legacy key PAGE_UP to PRIOR Translating legacy key PAGE_DOWN to NEXT Translating legacy key ENTER to RETURN Word filter loaded: 23 Starting job manager with 3 worker threads >>> Launch queue entry exiting. Failed to create window (Depth=24, AA level=2) Using LWJGL display 1280:1024:0:0 (false) Setting up OpenAL Sound Engine OpenAL version: 1.1 ALSOFT 1.15.1 OpenAL renderer: OpenAL Soft OpenAL vendor: OpenAL Community OpenAL extensions: AL_EXT_ALAW AL_EXT_DOUBLE AL_EXT_EXPONENT_DISTANCE AL_EXT_FLOAT32 AL_EXT_IMA4 AL_EXT_LINEAR_DISTANCE AL_EXT_MCFORMATS AL_EXT_MULAW AL_EXT_MULAW_MCFORMATS AL_EXT_OFFSET AL_EXT_source_distance_model AL_LOKI_quadriphonic AL_SOFT_buffer_samples AL_SOFT_buffer_sub_data AL_SOFTX_deferred_updates AL_SOFT_direct_channels AL_SOFT_loop_points AL_SOFT_source_latency Generating: 128 source channels. === OpenGL information === LWJGL version: 2.9.1 Adapter info: igdumd64 (8.15.10.2900) OpenGL vendor: Intel OpenGL renderer: Intel(R) HD Graphics OpenGL version: 2.1.0 - Build 8.15.10.2900 OpenGL extensions: GL_EXT_blend_minmax GL_EXT_blend_subtract GL_EXT_blend_color GL_EXT_abgr GL_EXT_texture3D GL_EXT_clip_volume_hint GL_EXT_compiled_vertex_array GL_SGIS_texture_edge_clamp GL_SGIS_generate_mipmap GL_EXT_draw_range_elements GL_SGIS_texture_lod GL_EXT_rescale_normal GL_EXT_packed_pixels GL_EXT_texture_edge_clamp GL_EXT_separate_specular_color GL_ARB_multitexture GL_EXT_texture_env_combine GL_EXT_bgra GL_EXT_blend_func_separate GL_EXT_secondary_color GL_EXT_fog_coord GL_EXT_texture_env_add GL_ARB_texture_cube_map GL_ARB_transpose_matrix GL_ARB_texture_env_add GL_IBM_texture_mirrored_repeat GL_EXT_multi_draw_arrays GL_NV_blend_square GL_ARB_texture_compression GL_3DFX_texture_compression_FXT1 GL_EXT_texture_filter_anisotropic GL_ARB_texture_border_clamp GL_ARB_point_parameters GL_ARB_texture_env_combine GL_ARB_texture_env_dot3 GL_ARB_texture_env_crossbar GL_EXT_texture_compression_s3tc GL_ARB_shadow GL_ARB_window_pos GL_EXT_shadow_funcs GL_EXT_stencil_wrap GL_ARB_vertex_program GL_EXT_texture_rectangle GL_ARB_fragment_program GL_EXT_stencil_two_side GL_ATI_separate_stencil GL_ARB_vertex_buffer_object GL_EXT_texture_lod_bias GL_ARB_occlusion_query GL_ARB_fragment_shader GL_ARB_shader_objects GL_ARB_shading_language_100 GL_ARB_texture_non_power_of_two GL_ARB_vertex_shader GL_NV_texgen_reflection GL_ARB_point_sprite GL_ARB_fragment_program_shadow GL_EXT_blend_equation_separate GL_ARB_depth_texture GL_ARB_texture_rectangle GL_ARB_draw_buffers GL_ARB_color_buffer_float GL_ARB_half_float_pixel GL_ARB_texture_float GL_ARB_pixel_buffer_object GL_EXT_framebuffer_object GL_ARB_draw_instanced GL_ARB_half_float_vertex GL_EXT_draw_buffers2 GL_WIN_swap_hint GL_EXT_texture_sRGB GL_EXT_packed_float GL_EXT_texture_shared_exponent GL_ARB_texture_rg GL_ARB_texture_compression_rgtc GL_NV_conditional_render GL_EXT_texture_swizzle GL_ARB_sync GL_ARB_framebuffer_sRGB GL_EXT_packed_depth_stencil GL_ARB_depth_buffer_float GL_EXT_transform_feedback GL_EXT_framebuffer_blit GL_ARB_framebuffer_object GL_EXT_texture_array GL_ARB_map_buffer_range GL_EXT_texture_snorm GL_INTEL_performance_queries GL_ARB_copy_buffer GL_ARB_sampler_objects GL_NV_primitive_restart GL_ARB_seamless_cube_map GL_ARB_uniform_buffer_object GL_ARB_depth_clamp GL_ARB_vertex_array_bgra GL_ARB_draw_elements_base_vertex GL_EXT_gpu_program_parameters GL_ARB_compatibility GL_ARB_vertex_array_object GLSL version: 1.20 - Intel Build 8.15.10.2900 GLSL max vertex uniforms: 512 (512) GLSL max fragment uniforms: 1024 (1024) GLSL max varyings: 41 (41) Intel hardware, enabling experimental GLSL problem workarounds Preloading builtin materials Failed linking program: program.skin_tex0.6_light Unable to link program (program.skin_tex0.6_light): class.kUMnOTdUJi: <no message> Unable to load material program: material.mesh.skin : program.skin_tex0.6_light Failed linking program: program.skin_tex0.7_light Unable to link program (program.skin_tex0.7_light): class.kUMnOTdUJi: <no message> Unable to load material program: material.mesh.skin : program.skin_tex0.7_light Failed linking program: program.skin_tex0.8_light Unable to link program (program.skin_tex0.8_light): class.kUMnOTdUJi: <no message> Unable to load material program: material.mesh.skin : program.skin_tex0.8_light Failed linking program: program.skin_tex0_rare.6_light Unable to link program (program.skin_tex0_rare.6_light): class.kUMnOTdUJi: <no message> Unable to load material program: material.mesh.skin_rare : program.skin_tex0_rare.6_light Failed linking program: program.skin_tex0_rare.7_light Unable to link program (program.skin_tex0_rare.7_light): class.kUMnOTdUJi: <no message> Unable to load material program: material.mesh.skin_rare : program.skin_tex0_rare.7_light Failed linking program: program.skin_tex0_rare.8_light Unable to link program (program.skin_tex0_rare.8_light): class.kUMnOTdUJi: <no message> Unable to load material program: material.mesh.skin_rare : program.skin_tex0_rare.8_light Failed linking program: program.static_tex0.6_light Unable to link program (program.static_tex0.6_light): class.kUMnOTdUJi: <no message> Unable to load material program: material.mesh.static : program.static_tex0.6_light Failed linking program: program.static_tex0.7_light Unable to link program (program.static_tex0.7_light): class.kUMnOTdUJi: <no message> Unable to load material program: material.mesh.static : program.static_tex0.7_light Failed linking program: program.static_tex0.8_light Unable to link program (program.static_tex0.8_light): class.kUMnOTdUJi: <no message> Unable to load material program: material.mesh.static : program.static_tex0.8_light Failed linking program: program.static_tex0_rare.6_light Unable to link program (program.static_tex0_rare.6_light): class.kUMnOTdUJi: <no message> Unable to load material program: material.mesh.static_rare : program.static_tex0_rare.6_light Failed linking program: program.static_tex0_rare.7_light Unable to link program (program.static_tex0_rare.7_light): class.kUMnOTdUJi: <no message> Unable to load material program: material.mesh.static_rare : program.static_tex0_rare.7_light Failed linking program: program.static_tex0_rare.8_light Unable to link program (program.static_tex0_rare.8_light): class.kUMnOTdUJi: <no message> Unable to load material program: material.mesh.static_rare : program.static_tex0_rare.8_light Failed linking program: program.terrain.6_light Unable to link program (program.terrain.6_light): class.kUMnOTdUJi: <no message> Unable to load material program: material.terrain.bumpmap : program.terrain.6_light Failed linking program: program.terrain.7_light Unable to link program (program.terrain.7_light): class.kUMnOTdUJi: <no message> Unable to load material program: material.terrain.bumpmap : program.terrain.7_light Failed linking program: program.terrain.8_light Unable to link program (program.terrain.8_light): class.kUMnOTdUJi: <no message> Unable to load material program: material.terrain.bumpmap : program.terrain.8_light Preloading builtin materials done Launching Collada Model Loader threads Launching WOM Loader threads Starting workaround for fast running clocks Using LWJGL timer. Initialized mouse with 5 buttons. Experimental direct buffer cleaner init successful Startup Phase - Setting up.. Initializing font texture for SansSerif (11). Texture Size: 512 Initializing font texture for SansSerif (11, italic). Texture Size: 128 Loading window positions from C:\Users\USERNAME\wurm\players\Mithrian\windows_1280x1024.txt Loading props file C:\Users\USERNAME\wurm\players\Mithrian\windows_1280x1024.txt Gui initialized Startup Phase - Preparing terrain Startup Phase - Connecting .. Disabling Nagles Writing to C:\Users\USERNAME\wurm\players\Mithrian\logs\_Event.2017-08.txt Disabling Nagles Writing to C:\Users\USERNAME\wurm\players\Mithrian\logs\CA_HELP.2017-08.txt Writing to C:\Users\USERNAME\wurm\players\Mithrian\logs\GL-Freedom.2017-08.txt Writing to C:\Users\USERNAME\wurm\players\Mithrian\logs\Freedom.2017-08.txt Writing to C:\Users\USERNAME\wurm\players\Mithrian\logs\Trade.2017-08.txt Login successful Executing C:\Users\USERNAME\wurm\configs\default\autorun.txt Starting update of login splash image... Resized terrain FBOs to 512 Initializing font texture for SansSerif (12). Texture Size: 128 Finished loading new login splash image!
  15. After i updated java my game crashes when i open it Here is the dump Could not create window with selected width and height. The error was: <Pixel format not accelerated> It's possible you might figure out what's wrong from the log file below, but if you can't, post the full log on the wurm online forums, and someone else might be able to help you. Contents of console.log: Time is Sat Jul 22 17:16:32 CAT 2017 Running client version 3.99.49 === System information === Executing from C:\Users\USERNAME\Downloads\ Operating system: Windows 10 (arch: x86, version: 10.0) Java version: 1.8.0_141 (Oracle Corporation) <http://java.oracle.com/> Jvm version: 25.141-b15 (Oracle Corporation) [Java HotSpot(TM) Client VM] Available CPUs: 4 Jul 22, 2017 5:16:32 PM java.util.prefs.WindowsPreferences <init> WARNING: Could not open/create prefs root node Software\JavaSoft\Prefs at root 0x80000002. Windows RegCreateKeyEx(...) returned error code 5. >>> Main thread exiting. Loading character Apillion Loading config default Loading props file C:\Users\USERNAME\wurm\configs\default\gamesettings.txt Executing C:\Users\USERNAME\wurm\configs\default\keybindings.txt Loading props file C:\Users\USERNAME\wurm\players\Apillion\password.txt >>> LoginFrame queue entry exiting. Saving props file C:\Users\USERNAME\wurm\players\Apillion\password.txt Saving props file C:\Users\USERNAME\wurm\configs\default\gamesettings.txt Keybindings saved. Loaded pack sound.jar (r1) Loaded pack pmk.jar (r3061) Loaded pack graphics.jar (r3117) Options up-to-date! Loading props file C:\Users\USERNAME\wurm\players\Apillion\playerdata.txt Loading props file C:\Users\USERNAME\wurm\players\Apillion\stats.txt Preparing to enable console logging. Now logging to C:\Users\USERNAME\wurm\console.Apillion.log === Wurm options === animation_playback_self = 0 auto_mipmaps_enabled = 2 auto_run_source = 0 cavedetail = 2 censor_chat = true collada_animations = 3 color_black = 0.0,0.0,0.0 color_cyan = 0.0,1.0,1.0 color_error = 1.0,0.3,0.3 color_fuchsia = 1.0,0.0,1.0 color_green = 0.4,0.72,0.47 color_grey = 0.5,0.75,1.0 color_lime = 0.5,1.0,0.5 color_maroon = 0.5,0.0,0.0 color_navy_blue = 0.23,0.39,1.0 color_orange = 1.0,0.58,0.04 color_purple = 0.5,0.0,0.5 color_red = 1.0,0.0,0.0 color_royal_blue = 0.5,0.5,1.0 color_silver = 0.75,0.75,0.75 color_system = 0.5,1.0,0.5 color_teal = 0.0,0.5,0.5 color_white = 1.0,1.0,1.0 color_yellow = 1.0,1.0,0.0 compressed_textures = false compressed_textures_S3TC = true contribution_culling = 150 custim_timer_source = 1 customTimer1 = -1|-1 customTimer2 = -1|-1 customTimer3 = -1|-1 customTimer4 = -1|-1 customTimer5 = -1|-1 debug_mode = false depth_clamp_enabled = 2 disable_select_all_shortcut = false display_settings = false:true:0:1024:768:32:-1:false:false enable_contribution_culling = false enable_debugs = false enable_lod = true enable_shift_drag = false enable_vsync = true engine_multithreaded = 0 event_log_rotation = 2 exec_source = 0 fast_yield = false fbo_enabled = 2 fog_coord_src = 0 font_antialias = 2 font_bold = 11 font_default = 11 font_header = 24 font_italian = 11 font_monospaced = 11 font_static = 11 fov_horizontal = 80 fps_limit = 60 fps_limit_background = 30 fps_limit_enabled = true free_look_mode_disable_on_close_component = false free_look_mode_disable_on_combat = false free_look_mode_disable_on_open_component = false free_look_mode_sensitivity = 10 game_client_thread_priority = 2 glsl_debug_loading = false glsl_enabled = 2 gpu_skinning = true gui_opacity = 3 gui_skin = 1 has_read_eula = true hide_inactive_friends = false hide_menu_examine = false hide_menu_no_target = false hide_menu_spam_mode = true hide_menu_stop = false hide_onscreen_fail_messages = false hide_onscreen_hostile_messages = false hide_onscreen_info_messages = false hide_personal_goal = false high_res_binoculars = true hint_texture_scaling = 1 impColumn = true inverse_mouse = false irc_log_rotation = 2 irc_notif = 0 item_creature_render_distance = 3 key_bindings_source = 0 keyboard_layout = 0 loadInventoryStartup = true local_list_in_event = false lod = 1 log_extra_errors = false log_gl_errors = false mark_text_read = true material_as_suffix = true max_texture_size = 2 mega_texture_size = 5 model_loader_thread_priority = 2 model_loading_threads = 1 mount_rotation = false multidraw_enabled = 2 no_brightness = false no_terrain_render = false no_world_render = false non_power_of_two = 2 occlusion_queries_enabled = 2 offscreen_texture_size = 2 other_log_rotation = 2 outline_picking = true player_texture_size = 2 reflection_texture_size = 2 reflections = 2 release_context = false release_context_on_jogl_sleep = false remember_password = true render_distant_terrain = true render_glow = false render_sun_glare = false resident_models = false save_skills_on_quit = false screenshot_file_format = 1 season_override = 0 send_extra_tile_data = false setting_timestamps = true settings_version = 3 shadow_level = 0 shift_drag_default = 10 showKChat = true show_body_in_inventory = false show_old_quickbar = false silent_friends_update = false skillgain_minimum = 1 skillgain_no_alignment = true skillgain_no_favor = true skydetail = 1 sound_al_gain = 15 sound_buzzlevel = 2 sound_cache_enabled = true sound_doppler_enabled = false sound_engine = 2 sound_footstepslevel = 10 sound_music_level = 5 sound_play_PMAlert = false sound_play_ambients = true sound_play_buzz = true sound_play_combat = true sound_play_door = true sound_play_emotes = true sound_play_footsteps = true sound_play_music = true sound_play_weather = true sound_play_work = true stipple_enabled = true structure_render_distance = 3 submit_client_data = 1 terrain_bump = true terrain_res = 2 test_attach_equipment = false test_mode = 0 thirdPerson = false tile_transitions = true tiledecorations = 2 togglePushToTalk = true treelist_outline = true trees = 3 update_optional = true use_alpha_particles = true use_anisotropic_filtering = 2 use_antialiasing = 1 use_color_picking = true use_fast_clock_work_around = true use_fbo_color_picking = true use_nagles_algorithm = false use_nano_timer = false use_non_alpha_particles = true use_phobia_models = false use_tree_models = true use_weather_particles = true vbo_enabled = 2 viewport_bob = true water_detail = 2 Setting up Collada Model Loader Setting up WurmModel Model Loader Executing C:\Users\USERNAME\wurm\configs\default\keybindings.txt Translating legacy key PAGE_UP to PRIOR Translating legacy key PAGE_DOWN to NEXT Translating legacy key ENTER to RETURN Word filter loaded: 23 Starting job manager with 3 worker threads >>> Launch queue entry exiting. Failed to create window (Depth=24, AA level=2) Failed to create window (Depth=24, AA level=0) Failed to create window (Depth=8, AA level=0) Retrying main resolution (1/4) Failed to create window (Depth=24, AA level=2) Failed to create window (Depth=24, AA level=0) Failed to create window (Depth=8, AA level=0) Retrying main resolution (2/4) Failed to create window (Depth=24, AA level=2) Failed to create window (Depth=24, AA level=0) Failed to create window (Depth=8, AA level=0) Retrying main resolution (3/4) Failed to create window (Depth=24, AA level=2) Failed to create window (Depth=24, AA level=0) Failed to create window (Depth=8, AA level=0) Retrying main resolution (4/4) Failed to create display: 1024:768:0:0 (false) Wanted mode: display_settings = false:true:0:1024:768:32:-1:false:false Execution aborted at connection 0, iteration 0 Run time 0s, local time Sat Jul 22 17:17:33 CAT 2017 Destroying game window ====== CLIENT CRASH ====== Could not create window with selected width and height. org.lwjgl.LWJGLException: Pixel format not accelerated at org.lwjgl.opengl.WindowsPeerInfo.nChoosePixelFormat(Native Method) at org.lwjgl.opengl.WindowsPeerInfo.choosePixelFormat(WindowsPeerInfo.java:52) at org.lwjgl.opengl.WindowsDisplay.createWindow(WindowsDisplay.java:252) at org.lwjgl.opengl.Display.createWindow(Display.java:306) at org.lwjgl.opengl.Display.create(Display.java:848) at org.lwjgl.opengl.Display.create(Display.java:757) at com.wurmonline.client.hzBVpzQFBz.BILF1iey6X(SourceFile:456) at com.wurmonline.client.hzBVpzQFBz.FZOk5L6Gfy(SourceFile:99) at com.wurmonline.client.BILF1iey6X.run(SourceFile:1471) at java.lang.Thread.run(Unknown Source)
  16. Hi, I am getting constant wurm unlimited crashes ever since the latest update. I've removed and re-installed java to no avail. Please help if you can. Time is Sun Jul 16 16:45:35 EDT 2017 Running client version === System information === Executing from C:\Program Files (x86)\Steam\steamapps\common\Wurm Unlimited\WurmLauncher\ Operating system: Windows 10 (arch: amd64, version: 10.0) Java version: 1.8.0_121 (Oracle Corporation) <http://java.oracle.com/> Jvm version: 25.121-b13 (Oracle Corporation) [Java HotSpot(TM) 64-Bit Server VM] Available CPUs: 4 WARNING: Could not open/create prefs root node Software\JavaSoft\Prefs at root 0x80000002. Windows RegCreateKeyEx(...) returned error code 5. Loading character Danark Loading config default Loading props file PlayerFiles\configs\default\gamesettings.txt Exception in thread "JavaFX Application Thread" java.lang.NullPointerException at com.wurmonline.client.launcherfx.controls.DisplayOptionControl.updateState(DisplayOptionControl.java:194) at com.wurmonline.client.launcherfx.controls.DisplayOptionControl.lambda$new$1(DisplayOptionControl.java:70) at com.sun.javafx.binding.ExpressionHelper$Generic.fireValueChangedEvent(ExpressionHelper.java:349) at com.sun.javafx.binding.ExpressionHelper.fireValueChangedEvent(ExpressionHelper.java:81) at javafx.beans.property.ReadOnlyObjectPropertyBase.fireValueChangedEvent(ReadOnlyObjectPropertyBase.java:74) at javafx.beans.property.ReadOnlyObjectWrapper.fireValueChangedEvent(ReadOnlyObjectWrapper.java:102) at javafx.beans.property.ObjectPropertyBase.markInvalid(ObjectPropertyBase.java:112) at javafx.beans.property.ObjectPropertyBase.set(ObjectPropertyBase.java:146) at javafx.scene.control.SelectionModel.setSelectedItem(SelectionModel.java:102) at javafx.scene.control.ComboBox$ComboBoxSelectionModel.lambda$new$154(ComboBox.java:494) at com.sun.javafx.binding.ExpressionHelper$SingleInvalidation.fireValueChangedEvent(ExpressionHelper.java:137) at com.sun.javafx.binding.ExpressionHelper.fireValueChangedEvent(ExpressionHelper.java:81) at javafx.beans.property.ReadOnlyIntegerPropertyBase.fireValueChangedEvent(ReadOnlyIntegerPropertyBase.java:72) at javafx.beans.property.ReadOnlyIntegerWrapper.fireValueChangedEvent(ReadOnlyIntegerWrapper.java:102) at javafx.beans.property.IntegerPropertyBase.markInvalid(IntegerPropertyBase.java:113) at javafx.beans.property.IntegerPropertyBase.set(IntegerPropertyBase.java:147) at javafx.scene.control.SelectionModel.setSelectedIndex(SelectionModel.java:68) at javafx.scene.control.SingleSelectionModel.updateSelectedIndex(SingleSelectionModel.java:215) at javafx.scene.control.SingleSelectionModel.select(SingleSelectionModel.java:149) at javafx.scene.control.SingleSelectionModel.clearAndSelect(SingleSelectionModel.java:103) at javafx.scene.control.ComboBox.lambda$new$152(ComboBox.java:262) at com.sun.javafx.binding.ExpressionHelper$SingleChange.fireValueChangedEvent(ExpressionHelper.java:182) at com.sun.javafx.binding.ExpressionHelper.fireValueChangedEvent(ExpressionHelper.java:81) at javafx.beans.property.ObjectPropertyBase.fireValueChangedEvent(ObjectPropertyBase.java:105) at javafx.beans.property.ObjectPropertyBase.markInvalid(ObjectPropertyBase.java:112) at javafx.beans.property.ObjectPropertyBase.set(ObjectPropertyBase.java:146) at javafx.scene.control.ComboBoxBase.setValue(ComboBoxBase.java:150) at com.wurmonline.client.launcherfx.controls.DisplayOptionControl.setToDefault(DisplayOptionControl.java:146) at com.wurmonline.client.launcherfx.controls.DisplayOptionControl.<init>(DisplayOptionControl.java:89) at com.wurmonline.client.launcherfx.WurmSettingsFX.<clinit>(WurmSettingsFX.java:140) at com.wurmonline.client.settings.Profile.loadSettings(Profile.java:395) at com.wurmonline.client.settings.Profile.loadConfig(Profile.java:331) at com.wurmonline.client.settings.Profile.loadPlayer(Profile.java:303) at com.wurmonline.client.settings.Profile.init(Profile.java:129) at com.wurmonline.client.settings.Profile.getProfile(Profile.java:104) at com.wurmonline.client.startup.ServerBrowserFX.<init>(ServerBrowserFX.java:242) at com.wurmonline.client.launcherfx.WurmMain.prepareLaunch(WurmMain.java:236) at com.wurmonline.client.launcherfx.WurmMain.start(WurmMain.java:183) at com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$162(LauncherImpl.java:863) at com.sun.javafx.application.PlatformImpl.lambda$runAndWait$175(PlatformImpl.java:326) at com.sun.javafx.application.PlatformImpl.lambda$null$173(PlatformImpl.java:295) at java.security.AccessController.doPrivileged(Native Method) at com.sun.javafx.application.PlatformImpl.lambda$runLater$174(PlatformImpl.java:294) at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:95) at com.sun.glass.ui.win.WinApplication._runLoop(Native Method) at com.sun.glass.ui.win.WinApplication.lambda$null$148(WinApplication.java:191) at java.lang.Thread.run(Thread.java:745) Executing PlayerFiles\configs\default\keybindings.txt Keybinds UI: Secondary keybind for "toggle inventory": I Loaded pack sound.jar (null) Loaded pack pmk.jar (null) Loaded pack graphics.jar (null) >>> Main thread exiting. Loaded pack sound.jar (null) Loaded pack pmk.jar (null) Loaded pack graphics.jar (null) Loading props file PlayerFiles\players\Danark\playerdata_test.txt Loading props file PlayerFiles\players\Danark\stats.txt Preparing to enable console logging. Now logging to PlayerFiles\console.Danark.log === Wurm options === animation_playback_self = 0 auto_mipmaps_enabled = 2 auto_run_source = 0 cavedetail = 1 censor_chat = false collada_animations = 2 color_black = 0.0,0.0,0.0 color_cyan = 0.0,1.0,1.0 color_error = 1.0,0.3,0.3 color_fuchsia = 1.0,0.0,1.0 color_green = 0.08,1.0,0.08 color_grey = 0.5,0.5,0.5 color_lime = 0.0,1.0,0.0 color_maroon = 0.5,0.0,0.0 color_navy_blue = 0.23,0.39,1.0 color_orange = 1.0,0.5,0.0 color_purple = 0.5,0.0,0.5 color_red = 1.0,0.0,0.0 color_royal_blue = 0.23,0.39,1.0 color_silver = 0.75,0.75,0.75 color_system = 0.5,1.0,0.5 color_teal = 0.0,0.5,0.5 color_white = 1.0,1.0,1.0 color_yellow = 1.0,1.0,0.0 compressed_textures = false compressed_textures_S3TC = true connectByIpIp = 127.0.0.1 connectByIpport = 3724 contribution_culling = 150 custim_timer_source = 1 customTimer1 = -1|-1 customTimer2 = -1|-1 customTimer3 = -1|-1 customTimer4 = -1|-1 customTimer5 = -1|-1 debug_mode = false depth_clamp_enabled = 2 disable_select_all_shortcut = false display_settings = false:false:0:1920:1080:32:60:true:false enable_contribution_culling = false enable_debugs = false enable_lod = true enable_shift_drag = false enable_vsync = true engine_multithreaded = 0 event_log_rotation = 2 exec_source = 0 fast_yield = false fbo_enabled = 2 fog_coord_src = 0 font_antialias = 2 font_bold = 11 font_default = 11 font_header = 24 font_italian = 11 font_monospaced = 11 font_static = 11 fov_horizontal = 80 fps_limit = 60 fps_limit_background = 30 fps_limit_enabled = true free_look_mode_disable_on_close_component = false free_look_mode_disable_on_combat = false free_look_mode_disable_on_open_component = false free_look_mode_sensitivity = 5 game_client_thread_priority = 2 glsl_debug_loading = false glsl_enabled = 2 gpu_skinning = true gui_opacity = 3 gui_skin = 1 has_read_eula = false hide_inactive_friends = false hide_menu_examine = false hide_menu_no_target = false hide_menu_spam_mode = true hide_menu_stop = false hide_onscreen_fail_messages = false hide_onscreen_hostile_messages = false hide_onscreen_info_messages = false hide_personal_goal = false high_res_binoculars = true hint_texture_scaling = 1 impColumn = true inverse_mouse = false irc_log_rotation = 2 irc_notif = 1 item_creature_render_distance = 3 key_bindings_source = 0 keyboard_layout = 0 loadInventoryStartup = true local_list_in_event = false lod = 1 log_extra_errors = false log_gl_errors = false mark_text_read = true material_as_suffix = true max_texture_size = 2 mega_texture_size = 5 model_loader_thread_priority = 2 model_loading_threads = 1 mount_rotation = false multidraw_enabled = 2 no_brightness = false no_terrain_render = false no_world_render = false non_power_of_two = 2 occlusion_queries_enabled = 2 offscreen_texture_size = 2 other_log_rotation = 2 outline_picking = true player_texture_size = 2 reflection_texture_size = 2 reflections = 1 release_context = false release_context_on_jogl_sleep = false remember_password = true render_distant_terrain = true render_glow = false render_sun_glare = false resident_models = false save_skills_on_quit = false screenshot_file_format = 1 season_override = 0 send_extra_tile_data = false setting_timestamps = true settings_version = 3 shadow_level = 0 shift_drag_default = 10 showKChat = true show_body_in_inventory = false show_old_quickbar = false silent_friends_update = false skillgain_minimum = 5 skillgain_no_alignment = true skillgain_no_favor = true skydetail = 1 sound_al_gain = 12 sound_buzzlevel = 2 sound_cache_enabled = true sound_doppler_enabled = false sound_engine = 2 sound_footstepslevel = 10 sound_music_level = 0 sound_play_PMAlert = false sound_play_ambients = true sound_play_buzz = true sound_play_combat = true sound_play_door = true sound_play_emotes = true sound_play_footsteps = true sound_play_music = false sound_play_weather = true sound_play_work = true start_dedicated_server = false stipple_enabled = true structure_render_distance = 3 submit_client_data = 0 terrain_bump = true terrain_res = 1 test_attach_equipment = false test_mode = 0 thirdPerson = false tile_transitions = true tiledecorations = 2 togglePushToTalk = true treelist_outline = true trees = 3 update_optional = true use_alpha_particles = true use_anisotropic_filtering = 2 use_antialiasing = 1 use_color_picking = true use_fast_clock_work_around = true use_fbo_color_picking = true use_nagles_algorithm = false use_nano_timer = false use_non_alpha_particles = true use_phobia_models = false use_tree_models = true use_weather_particles = true vbo_enabled = 2 viewport_bob = true water_detail = 1 INFO: Tracker registered Setting up Collada Model Loader Setting up WurmModel Model Loader Executing PlayerFiles\configs\default\keybindings.txt Translating legacy key PAGE_UP to PRIOR Translating legacy key PAGE_DOWN to NEXT Translating legacy key ENTER to RETURN Word filter loaded: 23 Starting job manager with 3 worker threads Using LWJGL display 1920:1080:32:60 (true) Setting up OpenAL Sound Engine OpenAL version: 1.1 ALSOFT 1.15.1 OpenAL renderer: OpenAL Soft OpenAL vendor: OpenAL Community OpenAL extensions: AL_EXT_ALAW AL_EXT_DOUBLE AL_EXT_EXPONENT_DISTANCE AL_EXT_FLOAT32 AL_EXT_IMA4 AL_EXT_LINEAR_DISTANCE AL_EXT_MCFORMATS AL_EXT_MULAW AL_EXT_MULAW_MCFORMATS AL_EXT_OFFSET AL_EXT_source_distance_model AL_LOKI_quadriphonic AL_SOFT_buffer_samples AL_SOFT_buffer_sub_data AL_SOFTX_deferred_updates AL_SOFT_direct_channels AL_SOFT_loop_points AL_SOFT_source_latency Generating: 128 source channels. === OpenGL information === LWJGL version: 2.9.1 Adapter info: null (null) OpenGL vendor: NVIDIA Corporation OpenGL renderer: GeForce GTX 960/PCIe/SSE2 OpenGL version: 4.5.0 NVIDIA 384.76 OpenGL extensions: GL_AMD_multi_draw_indirect GL_AMD_seamless_cubemap_per_texture GL_AMD_vertex_shader_viewport_index GL_AMD_vertex_shader_layer GL_ARB_arrays_of_arrays GL_ARB_base_instance GL_ARB_bindless_texture GL_ARB_blend_func_extended GL_ARB_buffer_storage GL_ARB_clear_buffer_object GL_ARB_clear_texture GL_ARB_clip_control GL_ARB_color_buffer_float GL_ARB_compatibility GL_ARB_compressed_texture_pixel_storage GL_ARB_conservative_depth GL_ARB_compute_shader GL_ARB_compute_variable_group_size GL_ARB_conditional_render_inverted GL_ARB_copy_buffer GL_ARB_copy_image GL_ARB_cull_distance GL_ARB_debug_output GL_ARB_depth_buffer_float GL_ARB_depth_clamp GL_ARB_depth_texture GL_ARB_derivative_control GL_ARB_direct_state_access GL_ARB_draw_buffers GL_ARB_draw_buffers_blend GL_ARB_draw_indirect GL_ARB_draw_elements_base_vertex GL_ARB_draw_instanced GL_ARB_enhanced_layouts GL_ARB_ES2_compatibility GL_ARB_ES3_compatibility GL_ARB_ES3_1_compatibility GL_ARB_ES3_2_compatibility GL_ARB_explicit_attrib_location GL_ARB_explicit_uniform_location GL_ARB_fragment_coord_conventions GL_ARB_fragment_layer_viewport GL_ARB_fragment_program GL_ARB_fragment_program_shadow GL_ARB_fragment_shader GL_ARB_fragment_shader_interlock GL_ARB_framebuffer_no_attachments GL_ARB_framebuffer_object GL_ARB_framebuffer_sRGB GL_ARB_geometry_shader4 GL_ARB_get_program_binary GL_ARB_get_texture_sub_image GL_ARB_gl_spirv GL_ARB_gpu_shader5 GL_ARB_gpu_shader_fp64 GL_ARB_gpu_shader_int64 GL_ARB_half_float_pixel GL_ARB_half_float_vertex GL_ARB_imaging GL_ARB_indirect_parameters GL_ARB_instanced_arrays GL_ARB_internalformat_query GL_ARB_internalformat_query2 GL_ARB_invalidate_subdata GL_ARB_map_buffer_alignment GL_ARB_map_buffer_range GL_ARB_multi_bind GL_ARB_multi_draw_indirect GL_ARB_multisample GL_ARB_multitexture GL_ARB_occlusion_query GL_ARB_occlusion_query2 GL_ARB_parallel_shader_compile GL_ARB_pipeline_statistics_query GL_ARB_pixel_buffer_object GL_ARB_point_parameters GL_ARB_point_sprite GL_ARB_post_depth_coverage GL_ARB_program_interface_query GL_ARB_provoking_vertex GL_ARB_query_buffer_object GL_ARB_robust_buffer_access_behavior GL_ARB_robustness GL_ARB_sample_locations GL_ARB_sample_shading GL_ARB_sampler_objects GL_ARB_seamless_cube_map GL_ARB_seamless_cubemap_per_texture GL_ARB_separate_shader_objects GL_ARB_shader_atomic_counter_ops GL_ARB_shader_atomic_counters GL_ARB_shader_ballot GL_ARB_shader_bit_encoding GL_ARB_shader_clock GL_ARB_shader_draw_parameters GL_ARB_shader_group_vote GL_ARB_shader_image_load_store GL_ARB_shader_image_size GL_ARB_shader_objects GL_ARB_shader_precision GL_ARB_shader_storage_buffer_object GL_ARB_shader_subroutine GL_ARB_shader_texture_image_samples GL_ARB_shader_texture_lod GL_ARB_shading_language_100 GL_ARB_shader_viewport_layer_array GL_ARB_shading_language_420pack GL_ARB_shading_language_include GL_ARB_shading_language_packing GL_ARB_shadow GL_ARB_sparse_buffer GL_ARB_sparse_texture GL_ARB_sparse_texture2 GL_ARB_sparse_texture_clamp GL_ARB_stencil_texturing GL_ARB_sync GL_ARB_tessellation_shader GL_ARB_texture_barrier GL_ARB_texture_border_clamp GL_ARB_texture_buffer_object GL_ARB_texture_buffer_object_rgb32 GL_ARB_texture_buffer_range GL_ARB_texture_compression GL_ARB_texture_compression_bptc GL_ARB_texture_compression_rgtc GL_ARB_texture_cube_map GL_ARB_texture_cube_map_array GL_ARB_texture_env_add GL_ARB_texture_env_combine GL_ARB_texture_env_crossbar GL_ARB_texture_env_dot3 GL_ARB_texture_filter_minmax GL_ARB_texture_float GL_ARB_texture_gather GL_ARB_texture_mirror_clamp_to_edge GL_ARB_texture_mirrored_repeat GL_ARB_texture_multisample GL_ARB_texture_non_power_of_two GL_ARB_texture_query_levels GL_ARB_texture_query_lod GL_ARB_texture_rectangle GL_ARB_texture_rg GL_ARB_texture_rgb10_a2ui GL_ARB_texture_stencil8 GL_ARB_texture_storage GL_ARB_texture_storage_multisample GL_ARB_texture_swizzle GL_ARB_texture_view GL_ARB_timer_query GL_ARB_transform_feedback2 GL_ARB_transform_feedback3 GL_ARB_transform_feedback_instanced GL_ARB_transform_feedback_overflow_query GL_ARB_transpose_matrix GL_ARB_uniform_buffer_object GL_ARB_vertex_array_bgra GL_ARB_vertex_array_object GL_ARB_vertex_attrib_64bit GL_ARB_vertex_attrib_binding GL_ARB_vertex_buffer_object GL_ARB_vertex_program GL_ARB_vertex_shader GL_ARB_vertex_type_10f_11f_11f_rev GL_ARB_vertex_type_2_10_10_10_rev GL_ARB_viewport_array GL_ARB_window_pos GL_ATI_draw_buffers GL_ATI_texture_float GL_ATI_texture_mirror_once GL_S3_s3tc GL_EXT_texture_env_add GL_EXT_abgr GL_EXT_bgra GL_EXT_bindable_uniform GL_EXT_blend_color GL_EXT_blend_equation_separate GL_EXT_blend_func_separate GL_EXT_blend_minmax GL_EXT_blend_subtract GL_EXT_compiled_vertex_array GL_EXT_Cg_shader GL_EXT_depth_bounds_test GL_EXT_direct_state_access GL_EXT_draw_buffers2 GL_EXT_draw_instanced GL_EXT_draw_range_elements GL_EXT_fog_coord GL_EXT_framebuffer_blit GL_EXT_framebuffer_multisample GL_EXTX_framebuffer_mixed_formats GL_EXT_framebuffer_multisample_blit_scaled GL_EXT_framebuffer_object GL_EXT_framebuffer_sRGB GL_EXT_geometry_shader4 GL_EXT_gpu_program_parameters GL_EXT_gpu_shader4 GL_EXT_multi_draw_arrays GL_EXT_packed_depth_stencil GL_EXT_packed_float GL_EXT_packed_pixels GL_EXT_pixel_buffer_object GL_EXT_point_parameters GL_EXT_polygon_offset_clamp GL_EXT_post_depth_coverage GL_EXT_provoking_vertex GL_EXT_raster_multisample GL_EXT_rescale_normal GL_EXT_secondary_color GL_EXT_separate_shader_objects GL_EXT_separate_specular_color GL_EXT_shader_image_load_formatted GL_EXT_shader_image_load_store GL_EXT_shader_integer_mix GL_EXT_shadow_funcs GL_EXT_sparse_texture2 GL_EXT_stencil_two_side GL_EXT_stencil_wrap GL_EXT_texture3D GL_EXT_texture_array GL_EXT_texture_buffer_object GL_EXT_texture_compression_dxt1 GL_EXT_texture_compression_latc GL_EXT_texture_compression_rgtc GL_EXT_texture_compression_s3tc GL_EXT_texture_cube_map GL_EXT_texture_edge_clamp GL_EXT_texture_env_combine GL_EXT_texture_env_dot3 GL_EXT_texture_filter_anisotropic GL_EXT_texture_filter_minmax GL_EXT_texture_integer GL_EXT_texture_lod GL_EXT_texture_lod_bias GL_EXT_texture_mirror_clamp GL_EXT_texture_object GL_EXT_texture_shared_exponent GL_EXT_texture_sRGB GL_EXT_texture_sRGB_decode GL_EXT_texture_storage GL_EXT_texture_swizzle GL_EXT_timer_query GL_EXT_transform_feedback2 GL_EXT_vertex_array GL_EXT_vertex_array_bgra GL_EXT_vertex_attrib_64bit GL_EXT_window_rectangles GL_EXT_import_sync_object GL_IBM_rasterpos_clip GL_IBM_texture_mirrored_repeat GL_KHR_context_flush_control GL_KHR_debug GL_KHR_no_error GL_KHR_robust_buffer_access_behavior GL_KHR_robustness GL_KTX_buffer_region GL_NV_alpha_to_coverage_dither_control GL_NV_bindless_multi_draw_indirect GL_NV_bindless_multi_draw_indirect_count GL_NV_bindless_texture GL_NV_blend_equation_advanced GL_NV_blend_equation_advanced_coherent GL_NV_blend_square GL_NV_command_list GL_NV_compute_program5 GL_NV_conditional_render GL_NV_conservative_raster GL_NV_conservative_raster_dilate GL_NV_copy_depth_to_color GL_NV_copy_image GL_NV_depth_buffer_float GL_NV_depth_clamp GL_NV_draw_texture GL_NV_draw_vulkan_image GL_NV_ES1_1_compatibility GL_NV_ES3_1_compatibility GL_NV_explicit_multisample GL_NV_fence GL_NV_fill_rectangle GL_NV_float_buffer GL_NV_fog_distance GL_NV_fragment_coverage_to_color GL_NV_fragment_program GL_NV_fragment_program_option GL_NV_fragment_program2 GL_NV_fragment_shader_interlock GL_NV_framebuffer_mixed_samples GL_NV_framebuffer_multisample_coverage GL_NV_geometry_shader4 GL_NV_geometry_shader_passthrough GL_NV_gpu_program4 GL_NV_internalformat_sample_query GL_NV_gpu_program4_1 GL_NV_gpu_program5 GL_NV_gpu_program5_mem_extended GL_NV_gpu_program_fp64 GL_NV_gpu_shader5 GL_NV_half_float GL_NV_light_max_exponent GL_NV_multisample_coverage GL_NV_multisample_filter_hint GL_NV_occlusion_query GL_NV_packed_depth_stencil GL_NV_parameter_buffer_object GL_NV_parameter_buffer_object2 GL_NV_path_rendering GL_NV_path_rendering_shared_edge GL_NV_pixel_data_range GL_NV_point_sprite GL_NV_primitive_restart GL_NV_register_combiners GL_NV_register_combiners2 GL_NV_sample_locations GL_NV_sample_mask_override_coverage GL_NV_shader_atomic_counters GL_NV_shader_atomic_float GL_NV_shader_atomic_fp16_vector GL_NV_shader_atomic_int64 GL_NV_shader_buffer_load GL_NV_shader_storage_buffer_object GL_NV_texgen_reflection GL_NV_texture_barrier GL_NV_texture_compression_vtc GL_NV_texture_env_combine4 GL_NV_texture_multisample GL_NV_texture_rectangle GL_NV_texture_shader GL_NV_texture_shader2 GL_NV_texture_shader3 GL_NV_transform_feedback GL_NV_transform_feedback2 GL_NV_uniform_buffer_unified_memory GL_NV_vertex_array_range GL_NV_vertex_array_range2 GL_NV_vertex_attrib_integer_64bit GL_NV_vertex_buffer_unified_memory GL_NV_vertex_program GL_NV_vertex_program1_1 GL_NV_vertex_program2 GL_NV_vertex_program2_option GL_NV_vertex_program3 GL_NV_viewport_array2 GL_NV_viewport_swizzle GL_NVX_conditional_render GL_NVX_gpu_memory_info GL_NVX_multigpu_info GL_NVX_nvenc_interop GL_NV_shader_thread_group GL_NV_shader_thread_shuffle GL_KHR_blend_equation_advanced GL_KHR_blend_equation_advanced_coherent GL_SGIS_generate_mipmap GL_SGIS_texture_lod GL_SGIX_depth_texture GL_SGIX_shadow GL_SUN_slice_accum GL_WIN_swap_hint WGL_EXT_swap_control GLSL version: 4.50 NVIDIA GLSL max vertex uniforms: 4096 (4096) GLSL max fragment uniforms: 4096 (4096) GLSL max varyings: 124 (124) Preloading builtin materials Preloading builtin materials done Launching Collada Model Loader threads Launching WOM Loader threads Starting workaround for fast running clocks Using LWJGL timer. Initialized mouse with 5 buttons. Experimental direct buffer cleaner init successful Startup Phase - Setting up.. Initializing font texture for SansSerif (11). Texture Size: 512 Initializing font texture for SansSerif (11, italic). Texture Size: 128 Loading window positions from PlayerFiles\players\Danark\windows_1920x1080.txt Loading props file PlayerFiles\players\Danark\windows_1920x1080.txt Gui initialized INFO: Window registered Startup Phase - Preparing terrain Startup Phase - Connecting .. Disabling Nagles Writing to PlayerFiles\players\Danark\test_logs\_Event.2017-07.txt Writing to PlayerFiles\players\Danark\test_logs\Alliance.2017-07.txt Writing to PlayerFiles\players\Danark\test_logs\Village.2017-07.txt Writing to PlayerFiles\players\Danark\test_logs\GL-Freedom.2017-07.txt Writing to PlayerFiles\players\Danark\test_logs\Freedom.2017-07.txt Writing to PlayerFiles\players\Danark\test_logs\Trade.2017-07.txt Login successful Executing PlayerFiles\configs\default\autorun.txt Resized terrain FBOs to 1024 Now using reflection FBO (1024) Initializing font texture for SansSerif (12). Texture Size: 128 Initializing font texture for Cry Uncial (64). Texture Size: 1024 Initializing font texture for Monospaced (11). Texture Size: 128 Should have opened settings. Saving props file PlayerFiles\configs\default\gamesettings.txt Keybindings saved. Executing PlayerFiles\configs\default\keybindings.txt Translating legacy key PAGE_UP to PRIOR Translating legacy key PAGE_DOWN to NEXT Translating legacy key ENTER to RETURN Initializing font texture for SansSerif (24, bold). Texture Size: 256
  17. Topic has come up off and on, and been wondering if anyone has had success running Wurm on an android device. I'm specifically curious on the Nvidia Shield tablet. Hurdles and headaches to watch for? On the actual device, no remote desktops
  18. So apparently this latest update broke a server I host. Note : Prior to this update today being applied, no issues. Now, upon launching it, after the usual console spam, I see : [03:48:05 PM] SEVERE com.wurmonline.server.gui.WurmServerGuiMain: file:/C:/Program%20Files%20(x86)/Steam/steamapps/common/Wurm%20Unlimited%20Dedicated%20Server/server.jar!/com/wurmonline/server/gui/WurmServerGui.fxml javafx.fxml.LoadException: file:/C:/Program%20Files%20(x86)/Steam/steamapps/common/Wurm%20Unlimited%20Dedicated%20Server/server.jar!/com/wurmonline/server/gui/WurmServerGui.fxml at javafx.fxml.FXMLLoader.constructLoadException(FXMLLoader.java:2601) at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:2571) at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:2441) at javafx.fxml.FXMLLoader.load(FXMLLoader.java:2409) at com.wurmonline.server.gui.WurmServerGuiMain.start(WurmServerGuiMain.java:117) at com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$162(LauncherImpl.java:863) at com.sun.javafx.application.PlatformImpl.lambda$runAndWait$175(PlatformImpl.java:326) at com.sun.javafx.application.PlatformImpl.lambda$null$173(PlatformImpl.java:295) at java.security.AccessController.doPrivileged(Native Method) at com.sun.javafx.application.PlatformImpl.lambda$runLater$174(PlatformImpl.java:294) at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:95) at com.sun.glass.ui.win.WinApplication._runLoop(Native Method) at com.sun.glass.ui.win.WinApplication.lambda$null$148(WinApplication.java:191) at java.lang.Thread.run(Thread.java:745) Caused by: java.lang.reflect.InvocationTargetException at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at sun.reflect.misc.Trampoline.invoke(MethodUtil.java:71) at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at sun.reflect.misc.MethodUtil.invoke(MethodUtil.java:275) at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:2566) ... 12 more Caused by: java.lang.RuntimeException: ControlsFX Error: ControlsFX 8.20.8 requires at least Java 8u20 at impl.org.controlsfx.version.VersionChecker.doVersionCheck(VersionChecker.java:86) at org.controlsfx.control.ControlsFXControl.<init>(ControlsFXControl.java:35) at org.controlsfx.control.PropertySheet.<init>(PropertySheet.java:220) at com.wurmonline.server.gui.propertysheet.ServerPropertySheet.initializeLocalServer(ServerPropertySheet.java:909) at com.wurmonline.server.gui.propertysheet.ServerPropertySheet.<init>(ServerPropertySheet.java:694) at com.wurmonline.server.gui.WurmServerGuiController.buildSelectServerBox(WurmServerGuiController.java:1448) at com.wurmonline.server.gui.WurmServerGuiController.initialize(WurmServerGuiController.java:1151) ... 22 more In looking at this, I see a complaint that it wants Java 8u20. Since this server uses the built-in Java that is in the game's bin directory, I looked there, and see that this was updated today as well... How do I fix this, or overcome this issue ? Thanks.
  19. Hello, I recently noticed this game recently, and wanted to try it. When I hit the play button on the website, it does a jnlp file in my downloads. I have not yet found a program that can make that run, any ideas?
  20. I recently got disconnected from the game, and when I go to re launch the game, it doesnt launch. The java conformation window comes up and I select yes I would like to run this program, than a window pops up for a split second that says starting application. and then nothing. I've deleted The wurm folder C:/users/USERNAME/Wurm in an attempt to re install. I update java trying both 32 bit and 64 bit java and uninstalling and re installing both, but nothing works
  21. Noo! Crash!

    Please, help: Unexpected crash while setting up login The error was: <Could not start SteamApi Shutting down (Steam is not Running)> It's possible you might figure out what's wrong from the log file below, but if you can't, post the full log on the wurm unlimited forums, and someone else might be able to help you. Contents of temporary launch log: Time is Fri Dec 02 20:12:46 MSK 2016 Running client version === System information === Executing from C:\Program Files (x86)\Steam\steamapps\common\Wurm Unlimited\WurmLauncher\ Operating system: Windows 7 (arch: amd64, version: 6.1) Java version: 1.8.0_60 (Oracle Corporation) <http://java.oracle.com/> Jvm version: 25.60-b23 (Oracle Corporation) [Java HotSpot(TM) 64-Bit Server VM] Available CPUs: 8 ====== CLIENT CRASH ====== Unexpected crash while setting up login java.lang.Throwable: Could not start SteamApi Shutting down (Steam is not Running) at com.wurmonline.client.launcherfx.WurmMain.start(WurmMain.java:174) at com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$163(Unknown Source) at com.sun.javafx.application.PlatformImpl.lambda$runAndWait$176(Unknown Source) at com.sun.javafx.application.PlatformImpl.lambda$null$174(Unknown Source) at java.security.AccessController.doPrivileged(Native Method) at com.sun.javafx.application.PlatformImpl.lambda$runLater$175(Unknown Source) at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(Unknown Source) at com.sun.glass.ui.win.WinApplication._runLoop(Native Method) at com.sun.glass.ui.win.WinApplication.lambda$null$149(Unknown Source) at java.lang.Thread.run(Unknown Source)
  22. My wife can't get Wurm Online to run on her computer. Every time she logs in, it crashes and generates the following error message. We've tried reinstalling both Wurm and the Java, as well as a number of other tricks suggested by friends, or other java crash topics on this forum. Occasionally she manages to log in for about 30 seconds before it crashes. # # A fatal error has been detected by the Java Runtime Environment: # # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x543262ed, pid=9296, tid=0x00002910 # # JRE version: Java(TM) SE Runtime Environment (8.0_111-b14) (build 1.8.0_111-b14) # Java VM: Java HotSpot(TM) Client VM (25.111-b14 mixed mode windows-x86 ) # Problematic frame: # C [ig4icd32.dll+0x162ed] # # Failed to write core dump. Minidumps are not enabled by default on client versions of Windows # # If you would like to submit a bug report, please visit: # http://bugreport.java.com/bugreport/crash.jsp # The crash happened outside the Java Virtual Machine in native code. # See problematic frame for where to report the bug. # --------------- T H R E A D --------------- Current thread (0x46f9d000): JavaThread "Wurm 3.99ze main thread" [_thread_in_native, id=10512, stack(0x4aa50000,0x4ab50000)] siginfo: ExceptionCode=0xc0000005, reading address 0x00000020 Registers: EAX=0x4ac75190, EBX=0x00000000, ECX=0x00000000, EDX=0x4a026828 ESP=0x4ab4f2b8, EBP=0x00a10a28, ESI=0x4ac75190, EDI=0x4abf0080 EIP=0x543262ed, EFLAGS=0x00210206 Top of Stack: (sp=0x4ab4f2b8) 0x4ab4f2b8: 00000000 4abf0d80 00000001 4abf0080 0x4ab4f2c8: 00000000 00000000 003d0279 7493287c 0x4ab4f2d8: 746a7f69 05010f42 54325279 4ac75190 0x4ab4f2e8: 00000000 4a031370 4abf0080 00000005 0x4ab4f2f8: 05010100 4a031370 54493922 009d8a78 0x4ab4f308: 54751678 4abf0080 4a031370 4abf0080 0x4ab4f318: 4abf0080 4ab4f398 05010f42 543e10f8 0x4ab4f328: 00000005 00000001 00a162e8 5449f326 Instructions: (pc=0x543262ed) 0x543262cd: c0 5d 83 c4 20 c2 08 00 8b 44 24 28 8b 4c 24 2c 0x543262dd: 89 4c 24 10 85 c0 75 04 85 c9 74 e3 8b 50 20 53 0x543262ed: 8b 59 20 56 8b 70 0c 57 89 74 24 24 89 54 24 20 0x543262fd: 89 5c 24 18 33 ff eb 0f eb 09 8d a4 24 00 00 00 Register to memory mapping: EAX=0x4ac75190 is an unknown value EBX=0x00000000 is an unknown value ECX=0x00000000 is an unknown value EDX=0x4a026828 is an unknown value ESP=0x4ab4f2b8 is pointing into the stack for thread: 0x46f9d000 EBP=0x00a10a28 is an unknown value ESI=0x4ac75190 is an unknown value EDI=0x4abf0080 is an unknown value Stack: [0x4aa50000,0x4ab50000], sp=0x4ab4f2b8, free space=1020k Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) C [ig4icd32.dll+0x162ed] Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) j org.lwjgl.opengl.WindowsContextImplementation.nSwapBuffers(Ljava/nio/ByteBuffer;)V+0 j org.lwjgl.opengl.WindowsContextImplementation.swapBuffers()V+35 j org.lwjgl.opengl.ContextGL.swapBuffers()V+3 j org.lwjgl.opengl.DrawableGL.swapBuffers()V+0 j org.lwjgl.opengl.Display.swapBuffers()V+39 j org.lwjgl.opengl.Display.update(Z)V+44 j org.lwjgl.opengl.Display.update()V+1 j com.wurmonline.client.hzBVpzQFBz.XwhlvVTrl()V+15 j com.wurmonline.client.BILF1iey6X.iHOS3zg1KL()V+45 j com.wurmonline.client.BILF1iey6X.iHOS3zg1KL(Ljava/lang/String;)V+31 j com.wurmonline.client.BILF1iey6X.run()V+565 j java.lang.Thread.run()V+11 v ~StubRoutines::call_stub --------------- P R O C E S S --------------- Java Threads: ( => current thread ) 0x46f9d400 JavaThread "Sound Loader 0" daemon [_thread_in_Java, id=8968, stack(0x4da90000,0x4db90000)] 0x46f98400 JavaThread "Wurm-Fast-Clock-Workaround-Thread" daemon [_thread_blocked, id=7680, stack(0x47fc0000,0x480c0000)] 0x46f9c800 JavaThread "WOM Model Loader 1" daemon [_thread_blocked, id=5452, stack(0x47e80000,0x47f80000)] 0x46f99c00 JavaThread "WOM Model Loader 0" daemon [_thread_blocked, id=11224, stack(0x46970000,0x46a70000)] 0x46f97c00 JavaThread "Collada Model Loader 0" daemon [_thread_blocked, id=6180, stack(0x46610000,0x46710000)] 0x46f9c400 JavaThread "Sound Unloader" daemon [_thread_blocked, id=9656, stack(0x50ae0000,0x50be0000)] =>0x46f9d000 JavaThread "Wurm 3.99ze main thread" [_thread_in_native, id=10512, stack(0x4aa50000,0x4ab50000)] 0x46f97800 JavaThread "Job executor 2" [_thread_blocked, id=10048, stack(0x4a950000,0x4aa50000)] 0x46f9b000 JavaThread "Job executor 1" [_thread_blocked, id=2408, stack(0x4a360000,0x4a460000)] 0x46f99000 JavaThread "Job executor 0" [_thread_blocked, id=11168, stack(0x4a260000,0x4a360000)] 0x46f9bc00 JavaThread "SwingWorker-pool-2-thread-6" daemon [_thread_blocked, id=4052, stack(0x49540000,0x49640000)] 0x46f9b800 JavaThread "SwingWorker-pool-2-thread-5" daemon [_thread_blocked, id=10420, stack(0x4a660000,0x4a760000)] 0x46f9a400 JavaThread "Keep-Alive-Timer" daemon [_thread_blocked, id=5024, stack(0x48840000,0x48940000)] 0x46f98c00 JavaThread "SwingWorker-pool-2-thread-4" daemon [_thread_blocked, id=1536, stack(0x4a520000,0x4a620000)] 0x46f99800 JavaThread "SwingWorker-pool-2-thread-3" daemon [_thread_blocked, id=1416, stack(0x499c0000,0x49ac0000)] 0x46ef8000 JavaThread "SwingWorker-pool-2-thread-2" daemon [_thread_blocked, id=10372, stack(0x49880000,0x49980000)] 0x46ef8c00 JavaThread "SwingWorker-pool-2-thread-1" daemon [_thread_blocked, id=752, stack(0x48740000,0x48840000)] 0x46ef7400 JavaThread "TimerQueue" daemon [_thread_blocked, id=8680, stack(0x48540000,0x48640000)] 0x45431800 JavaThread "CacheCleanUpThread" daemon [_thread_blocked, id=4188, stack(0x474b0000,0x475b0000)] 0x46e32000 JavaThread "CacheMemoryCleanUpThread" daemon [_thread_blocked, id=9716, stack(0x47370000,0x47470000)] 0x46e31800 JavaThread "MemoryCache-DelayedCleanup" daemon [_thread_blocked, id=8372, stack(0x47230000,0x47330000)] 0x02973000 JavaThread "DestroyJavaVM" [_thread_blocked, id=3836, stack(0x027e0000,0x028e0000)] 0x45407c00 JavaThread "Javaws Secure Thread" daemon [_thread_blocked, id=9348, stack(0x46ab0000,0x46bb0000)] 0x453fb400 JavaThread "AWT-Windows" daemon [_thread_in_native, id=8352, stack(0x46750000,0x46850000)] 0x453f8c00 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=2320, stack(0x464d0000,0x465d0000)] 0x45312400 JavaThread "traceMsgQueueThread" daemon [_thread_blocked, id=4460, stack(0x45f60000,0x46060000)] 0x452a0800 JavaThread "Service Thread" daemon [_thread_blocked, id=1064, stack(0x45ce0000,0x45de0000)] 0x45299c00 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=4868, stack(0x45ba0000,0x45ca0000)] 0x45296c00 JavaThread "Attach Listener" daemon [_thread_blocked, id=9692, stack(0x45a60000,0x45b60000)] 0x452a2000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=3900, stack(0x45920000,0x45a20000)] 0x4528d800 JavaThread "Finalizer" daemon [_thread_blocked, id=10740, stack(0x456f0000,0x457f0000)] 0x45278800 JavaThread "Reference Handler" daemon [_thread_blocked, id=2556, stack(0x455b0000,0x456b0000)] Other Threads: 0x45273400 VMThread [stack: 0x45470000,0x45570000] [id=10752] 0x452f0400 WatcherThread [stack: 0x45e20000,0x45f20000] [id=5728] VM state:not at safepoint (normal execution) VM Mutex/Monitor currently owned by a thread: None Heap: def new generation total 157376K, used 59457K [0x04c00000, 0x0f6c0000, 0x1a150000) eden space 139904K, 30% used [0x04c00000, 0x0750d0a8, 0x0d4a0000) from space 17472K, 99% used [0x0e5b0000, 0x0f6b33e0, 0x0f6c0000) to space 17472K, 0% used [0x0d4a0000, 0x0d4a0000, 0x0e5b0000) tenured generation total 349568K, used 89338K [0x1a150000, 0x2f6b0000, 0x44c00000) the space 349568K, 25% used [0x1a150000, 0x1f88eb38, 0x1f88ec00, 0x2f6b0000) Metaspace used 19206K, capacity 19444K, committed 19584K, reserved 19840K Card table byte_map: [0x44c00000,0x44e10000] byte_map_base: 0x44bda000 Polling page: 0x00a80000 CodeCache: size=32768Kb used=4667Kb max_used=4667Kb free=28100Kb bounds [0x02a70000, 0x02f00000, 0x04a70000] total_blobs=2993 nmethods=2628 adapters=292 compilation: enabled Compilation events (10 events): Event: 16.732 Thread 0x45299c00 2687 sun.java2d.SunGraphics2D::drawImage (11 bytes) Event: 16.732 Thread 0x45299c00 nmethod 2687 0x02efe7c8 code [0x02efe8c0, 0x02efe96c] Event: 16.732 Thread 0x45299c00 2688 sun.java2d.pipe.DrawImage::copyImage (105 bytes) Event: 16.732 Thread 0x45299c00 nmethod 2688 0x02efe9c8 code [0x02efeb10, 0x02efeda8] Event: 16.739 Thread 0x45299c00 2689 sun.java2d.loops.Blit$GeneralMaskBlit::Blit (28 bytes) Event: 16.739 Thread 0x45299c00 nmethod 2689 0x02eff288 code [0x02eff390, 0x02eff48c] Event: 16.759 Thread 0x45299c00 2691 sun.awt.image.SunWritableRaster::stealTrackable (10 bytes) Event: 16.759 Thread 0x45299c00 nmethod 2691 0x02eff508 code [0x02eff600, 0x02eff6a0] Event: 16.760 Thread 0x45299c00 2692 s sun.font.FontAccess::getFontAccess (4 bytes) Event: 16.760 Thread 0x45299c00 nmethod 2692 0x02eff748 code [0x02eff840, 0x02eff9f0] GC Heap History (10 events): Event: 4.897 GC heap before {Heap before GC invocations=2 (full 0): def new generation total 157248K, used 43904K [0x04c00000, 0x0f6a0000, 0x1a150000) eden space 139776K, 27% used [0x04c00000, 0x07124d90, 0x0d480000) from space 17472K, 33% used [0x0d480000, 0x0da3b538, 0x0e590000) to space 17472K, 0% used [0x0e590000, 0x0e590000, 0x0f6a0000) tenured generation total 349568K, used 8828K [0x1a150000, 0x2f6b0000, 0x44c00000) the space 349568K, 2% used [0x1a150000, 0x1a9ef340, 0x1a9ef400, 0x2f6b0000) Metaspace used 11945K, capacity 12158K, committed 12288K, reserved 12672K Event: 4.964 GC heap after Heap after GC invocations=3 (full 1): def new generation total 157376K, used 0K [0x04c00000, 0x0f6c0000, 0x1a150000) eden space 139904K, 0% used [0x04c00000, 0x04c00000, 0x0d4a0000) from space 17472K, 0% used [0x0d4a0000, 0x0d4a0000, 0x0e5b0000) to space 17472K, 0% used [0x0e5b0000, 0x0e5b0000, 0x0f6c0000) tenured generation total 349568K, used 16350K [0x1a150000, 0x2f6b0000, 0x44c00000) the space 349568K, 4% used [0x1a150000, 0x1b147ba8, 0x1b147c00, 0x2f6b0000) Metaspace used 11945K, capacity 12158K, committed 12288K, reserved 12672K } Event: 12.618 GC heap before {Heap before GC invocations=3 (full 1): def new generation total 157376K, used 139904K [0x04c00000, 0x0f6c0000, 0x1a150000) eden space 139904K, 100% used [0x04c00000, 0x0d4a0000, 0x0d4a0000) from space 17472K, 0% used [0x0d4a0000, 0x0d4a0000, 0x0e5b0000) to space 17472K, 0% used [0x0e5b0000, 0x0e5b0000, 0x0f6c0000) tenured generation total 349568K, used 16350K [0x1a150000, 0x2f6b0000, 0x44c00000) the space 349568K, 4% used [0x1a150000, 0x1b147ba8, 0x1b147c00, 0x2f6b0000) Metaspace used 14508K, capacity 14776K, committed 14976K, reserved 15744K Event: 12.655 GC heap after Heap after GC invocations=4 (full 1): def new generation total 157376K, used 17472K [0x04c00000, 0x0f6c0000, 0x1a150000) eden space 139904K, 0% used [0x04c00000, 0x04c00000, 0x0d4a0000) from space 17472K, 100% used [0x0e5b0000, 0x0f6c0000, 0x0f6c0000) to space 17472K, 0% used [0x0d4a0000, 0x0d4a0000, 0x0e5b0000) tenured generation total 349568K, used 19434K [0x1a150000, 0x2f6b0000, 0x44c00000) the space 349568K, 5% used [0x1a150000, 0x1b44aab8, 0x1b44ac00, 0x2f6b0000) Metaspace used 14508K, capacity 14776K, committed 14976K, reserved 15744K } Event: 12.794 GC heap before {Heap before GC invocations=4 (full 1): def new generation total 157376K, used 42295K [0x04c00000, 0x0f6c0000, 0x1a150000) eden space 139904K, 17% used [0x04c00000, 0x0643dc68, 0x0d4a0000) from space 17472K, 100% used [0x0e5b0000, 0x0f6c0000, 0x0f6c0000) to space 17472K, 0% used [0x0d4a0000, 0x0d4a0000, 0x0e5b0000) tenured generation total 349568K, used 19434K [0x1a150000, 0x2f6b0000, 0x44c00000) the space 349568K, 5% used [0x1a150000, 0x1b44aab8, 0x1b44ac00, 0x2f6b0000) Metaspace used 14648K, capacity 14909K, committed 15104K, reserved 15744K Event: 12.888 GC heap after Heap after GC invocations=5 (full 2): def new generation total 157376K, used 0K [0x04c00000, 0x0f6c0000, 0x1a150000) eden space 139904K, 0% used [0x04c00000, 0x04c00000, 0x0d4a0000) from space 17472K, 0% used [0x0e5b0000, 0x0e5b0000, 0x0f6c0000) to space 17472K, 0% used [0x0d4a0000, 0x0d4a0000, 0x0e5b0000) tenured generation total 349568K, used 38363K [0x1a150000, 0x2f6b0000, 0x44c00000) the space 349568K, 10% used [0x1a150000, 0x1c6c6f20, 0x1c6c7000, 0x2f6b0000) Metaspace used 14648K, capacity 14909K, committed 15104K, reserved 15744K } Event: 15.319 GC heap before {Heap before GC invocations=5 (full 2): def new generation total 157376K, used 137939K [0x04c00000, 0x0f6c0000, 0x1a150000) eden space 139904K, 98% used [0x04c00000, 0x0d2b4c40, 0x0d4a0000) from space 17472K, 0% used [0x0e5b0000, 0x0e5b0000, 0x0f6c0000) to space 17472K, 0% used [0x0d4a0000, 0x0d4a0000, 0x0e5b0000) tenured generation total 349568K, used 38363K [0x1a150000, 0x2f6b0000, 0x44c00000) the space 349568K, 10% used [0x1a150000, 0x1c6c6f20, 0x1c6c7000, 0x2f6b0000) Metaspace used 19192K, capacity 19444K, committed 19584K, reserved 19840K Event: 15.378 GC heap after Heap after GC invocations=6 (full 2): def new generation total 157376K, used 17472K [0x04c00000, 0x0f6c0000, 0x1a150000) eden space 139904K, 0% used [0x04c00000, 0x04c00000, 0x0d4a0000) from space 17472K, 100% used [0x0d4a0000, 0x0e5b0000, 0x0e5b0000) to space 17472K, 0% used [0x0e5b0000, 0x0e5b0000, 0x0f6c0000) tenured generation total 349568K, used 67903K [0x1a150000, 0x2f6b0000, 0x44c00000) the space 349568K, 19% used [0x1a150000, 0x1e39fd98, 0x1e39fe00, 0x2f6b0000) Metaspace used 19192K, capacity 19444K, committed 19584K, reserved 19840K } Event: 16.508 GC heap before {Heap before GC invocations=6 (full 2): def new generation total 157376K, used 130024K [0x04c00000, 0x0f6c0000, 0x1a150000) eden space 139904K, 80% used [0x04c00000, 0x0b9ea2c8, 0x0d4a0000) from space 17472K, 100% used [0x0d4a0000, 0x0e5b0000, 0x0e5b0000) to space 17472K, 0% used [0x0e5b0000, 0x0e5b0000, 0x0f6c0000) tenured generation total 349568K, used 67903K [0x1a150000, 0x2f6b0000, 0x44c00000) the space 349568K, 19% used [0x1a150000, 0x1e39fd98, 0x1e39fe00, 0x2f6b0000) Metaspace used 19201K, capacity 19444K, committed 19584K, reserved 19840K Event: 16.528 GC heap after Heap after GC invocations=7 (full 2): def new generation total 157376K, used 17420K [0x04c00000, 0x0f6c0000, 0x1a150000) eden space 139904K, 0% used [0x04c00000, 0x04c00000, 0x0d4a0000) from space 17472K, 99% used [0x0e5b0000, 0x0f6b33e0, 0x0f6c0000) to space 17472K, 0% used [0x0d4a0000, 0x0d4a0000, 0x0e5b0000) tenured generation total 349568K, used 89338K [0x1a150000, 0x2f6b0000, 0x44c00000) the space 349568K, 25% used [0x1a150000, 0x1f88eb38, 0x1f88ec00, 0x2f6b0000) Metaspace used 19201K, capacity 19444K, committed 19584K, reserved 19840K } Deoptimization events (0 events): No events Internal exceptions (10 events): Event: 0.368 Thread 0x45408c00 Exception <a 'java/lang/ClassNotFoundException': com/sun/javaws/net/protocol/c/Handler> (0x0606e0c8) thrown at [C:\re\workspace\8-2-build-windows-i586-cygwin\jdk8u111\7883\hotspot\src\share\vm\classfile\systemDictionary.cpp, line 210] Event: 0.368 Thread 0x45408c00 Exception <a 'java/lang/ClassNotFoundException': com/sun/deploy/net/protocol/c/Handler> (0x06071ac8) thrown at [C:\re\workspace\8-2-build-windows-i586-cygwin\jdk8u111\7883\hotspot\src\share\vm\classfile\systemDictionary.cpp, line 210] Event: 0.368 Thread 0x45408c00 Exception <a 'java/lang/ClassNotFoundException': com/sun/deploy/net/protocol/c/Handler> (0x060755b0) thrown at [C:\re\workspace\8-2-build-windows-i586-cygwin\jdk8u111\7883\hotspot\src\share\vm\classfile\systemDictionary.cpp, line 210] Event: 0.368 Thread 0x45408c00 Exception <a 'java/lang/ClassNotFoundException': sun/net/www/protocol/c/Handler> (0x06078fd0) thrown at [C:\re\workspace\8-2-build-windows-i586-cygwin\jdk8u111\7883\hotspot\src\share\vm\classfile\systemDictionary.cpp, line 210] Event: 1.452 Thread 0x46ef6000 Exception <a 'java/io/FileNotFoundException'> (0x07c397b8) thrown at [C:\re\workspace\8-2-build-windows-i586-cygwin\jdk8u111\7883\hotspot\src\share\vm\prims\jni.cpp, line 709] Event: 1.482 Thread 0x45431800 Exception <a 'java/lang/ClassNotFoundException': com/sun/javaws/net/protocol/https/Handler> (0x07d6db18) thrown at [C:\re\workspace\8-2-build-windows-i586-cygwin\jdk8u111\7883\hotspot\src\share\vm\classfile\systemDictionary.cpp, line 210] Event: 5.124 Thread 0x46ef6000 Implicit null exception at 0x02bad432 to 0x02bad6c1 Event: 6.240 Thread 0x46ef8800 Implicit null exception at 0x02d1d04f to 0x02d1e8c3 Event: 7.186 Thread 0x46ef8800 Implicit null exception at 0x02d21ece to 0x02d220a7 Event: 12.895 Thread 0x46f9e400 Exception <a 'java/lang/NoClassDefFoundError': org/apache/log4j/Category> (0x050daca8) thrown at [C:\re\workspace\8-2-build-windows-i586-cygwin\jdk8u111\7883\hotspot\src\share\vm\classfile\systemDictionary.cpp, line 199] Events (10 events): Event: 16.554 loading class class/BnGQnzuho6 Event: 16.554 loading class class/BnGQnzuho6 done Event: 16.555 Executing VM operation: RevokeBias Event: 16.555 Executing VM operation: RevokeBias done Event: 16.748 Executing VM operation: RevokeBias Event: 16.748 Executing VM operation: RevokeBias done Event: 16.748 Executing VM operation: RevokeBias Event: 16.748 Executing VM operation: RevokeBias done Event: 16.748 Executing VM operation: RevokeBias Event: 16.748 Executing VM operation: RevokeBias done Dynamic libraries: 0x000d0000 - 0x000e9000 C:\Program Files (x86)\Java\jre1.8.0_111\bin\jp2launcher.exe 0x77120000 - 0x772a2000 C:\WINDOWS\SYSTEM32\ntdll.dll 0x74bc0000 - 0x74ca0000 C:\WINDOWS\System32\KERNEL32.DLL 0x73cf0000 - 0x73e91000 C:\WINDOWS\System32\KERNELBASE.dll 0x73b10000 - 0x73ba2000 C:\WINDOWS\system32\apphelp.dll 0x58680000 - 0x588f7000 C:\WINDOWS\AppPatch\AcLayers.DLL 0x73f90000 - 0x7404e000 C:\WINDOWS\System32\msvcrt.dll 0x74f60000 - 0x750bf000 C:\WINDOWS\System32\USER32.dll 0x74930000 - 0x74945000 C:\WINDOWS\System32\win32u.dll 0x74e90000 - 0x74ebb000 C:\WINDOWS\System32\GDI32.dll 0x74610000 - 0x7476b000 C:\WINDOWS\System32\gdi32full.dll 0x75450000 - 0x76829000 C:\WINDOWS\System32\SHELL32.dll 0x749d0000 - 0x74a06000 C:\WINDOWS\System32\cfgmgr32.dll 0x76b60000 - 0x770ce000 C:\WINDOWS\System32\windows.storage.dll 0x75140000 - 0x75351000 C:\WINDOWS\System32\combase.dll 0x76830000 - 0x76910000 C:\WINDOWS\System32\ucrtbase.dll 0x76a90000 - 0x76b51000 C:\WINDOWS\System32\RPCRT4.dll 0x73bc0000 - 0x73bde000 C:\WINDOWS\System32\SspiCli.dll 0x73bb0000 - 0x73bba000 C:\WINDOWS\System32\CRYPTBASE.dll 0x74460000 - 0x744ba000 C:\WINDOWS\System32\bcryptPrimitives.dll 0x74770000 - 0x747b1000 C:\WINDOWS\System32\sechost.dll 0x770d0000 - 0x77115000 C:\WINDOWS\System32\powrprof.dll 0x74aa0000 - 0x74b17000 C:\WINDOWS\System32\advapi32.dll 0x750f0000 - 0x75136000 C:\WINDOWS\System32\shlwapi.dll 0x74ec0000 - 0x74ecd000 C:\WINDOWS\System32\kernel.appcore.dll 0x74ed0000 - 0x74f58000 C:\WINDOWS\System32\shcore.dll 0x76910000 - 0x7691f000 C:\WINDOWS\System32\profapi.dll 0x73c50000 - 0x73ce4000 C:\WINDOWS\System32\OLEAUT32.dll 0x753c0000 - 0x7543b000 C:\WINDOWS\System32\msvcp_win.dll 0x74050000 - 0x7445b000 C:\WINDOWS\System32\SETUPAPI.dll 0x727d0000 - 0x727e6000 C:\WINDOWS\SYSTEM32\MPR.dll 0x00530000 - 0x00533000 C:\WINDOWS\SYSTEM32\sfc.dll 0x735c0000 - 0x7362a000 C:\WINDOWS\SYSTEM32\WINSPOOL.DRV 0x73310000 - 0x7332b000 C:\WINDOWS\SYSTEM32\bcrypt.dll 0x68730000 - 0x6873f000 C:\WINDOWS\SYSTEM32\sfc_os.DLL 0x750c0000 - 0x750e5000 C:\WINDOWS\System32\IMM32.DLL 0x73ea0000 - 0x73f8a000 C:\WINDOWS\System32\ole32.dll 0x59470000 - 0x5952f000 C:\Program Files (x86)\Java\jre1.8.0_111\bin\MSVCR100.dll 0x72420000 - 0x72448000 C:\WINDOWS\SYSTEM32\ntmarta.dll 0x593d0000 - 0x593fb000 C:\Program Files (x86)\Java\jre1.8.0_111\bin\jli.dll 0x70740000 - 0x7094a000 C:\WINDOWS\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.14393.447_none_89c64d28dafea4b9\COMCTL32.dll 0x582b0000 - 0x5867d000 C:\Program Files (x86)\Java\jre1.8.0_111\bin\client\jvm.dll 0x75440000 - 0x75446000 C:\WINDOWS\System32\PSAPI.DLL 0x73330000 - 0x73354000 C:\WINDOWS\SYSTEM32\WINMM.dll 0x73720000 - 0x73728000 C:\WINDOWS\SYSTEM32\VERSION.dll 0x73530000 - 0x73538000 C:\WINDOWS\SYSTEM32\WSOCK32.dll 0x74ca0000 - 0x74d03000 C:\WINDOWS\System32\WS2_32.dll 0x732e0000 - 0x73303000 C:\WINDOWS\SYSTEM32\WINMMBASE.dll 0x60110000 - 0x6011c000 C:\Program Files (x86)\Java\jre1.8.0_111\bin\verify.dll 0x59400000 - 0x59421000 C:\Program Files (x86)\Java\jre1.8.0_111\bin\java.dll 0x593b0000 - 0x593c3000 C:\Program Files (x86)\Java\jre1.8.0_111\bin\zip.dll 0x580e0000 - 0x58151000 C:\Program Files (x86)\Java\jre1.8.0_111\bin\deploy.dll 0x749b0000 - 0x749c9000 C:\WINDOWS\System32\imagehlp.dll 0x727f0000 - 0x72a1f000 C:\WINDOWS\SYSTEM32\WININET.dll 0x71e20000 - 0x71fb4000 C:\WINDOWS\SYSTEM32\urlmon.dll 0x71bf0000 - 0x71e19000 C:\WINDOWS\SYSTEM32\iertutil.dll 0x580c0000 - 0x580d6000 C:\Program Files (x86)\Java\jre1.8.0_111\bin\net.dll 0x722f0000 - 0x7233e000 C:\WINDOWS\system32\mswsock.dll 0x593a0000 - 0x593af000 C:\Program Files (x86)\Java\jre1.8.0_111\bin\nio.dll 0x58160000 - 0x582a6000 C:\Program Files (x86)\Java\jre1.8.0_111\bin\awt.dll 0x73540000 - 0x735b5000 C:\WINDOWS\system32\uxtheme.dll 0x747f0000 - 0x74925000 C:\WINDOWS\System32\MSCTF.dll 0x6f480000 - 0x6f49f000 C:\WINDOWS\system32\dwmapi.dll 0x6fe10000 - 0x6fe20000 C:\WINDOWS\SYSTEM32\ondemandconnroutehelper.dll 0x731c0000 - 0x731ef000 C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL 0x72730000 - 0x727d0000 C:\WINDOWS\SYSTEM32\winhttp.dll 0x6d490000 - 0x6d498000 C:\WINDOWS\SYSTEM32\WINNSI.DLL 0x744c0000 - 0x744c7000 C:\WINDOWS\System32\NSI.dll 0x722d0000 - 0x722e3000 C:\WINDOWS\SYSTEM32\dhcpcsvc6.DLL 0x73140000 - 0x731bc000 C:\WINDOWS\SYSTEM32\DNSAPI.dll 0x722b0000 - 0x722c4000 C:\WINDOWS\SYSTEM32\dhcpcsvc.DLL 0x715d0000 - 0x715d8000 C:\Windows\System32\rasadhlp.dll 0x714f0000 - 0x71539000 C:\WINDOWS\System32\fwpuclnt.dll 0x59460000 - 0x5946a000 C:\Program Files (x86)\Java\jre1.8.0_111\bin\management.dll 0x74d10000 - 0x74e8d000 C:\WINDOWS\System32\CRYPT32.dll 0x73be0000 - 0x73bee000 C:\WINDOWS\System32\MSASN1.dll 0x72480000 - 0x72493000 C:\WINDOWS\SYSTEM32\CRYPTSP.dll 0x72450000 - 0x7247f000 C:\WINDOWS\system32\rsaenh.dll 0x732b0000 - 0x732ca000 C:\WINDOWS\SYSTEM32\USERENV.dll 0x55480000 - 0x554b9000 C:\Program Files (x86)\Java\jre1.8.0_111\bin\fontmanager.dll 0x55200000 - 0x55226000 C:\Program Files (x86)\Java\jre1.8.0_111\bin\jpeg.dll 0x551c0000 - 0x551f2000 C:\Program Files (x86)\Java\jre1.8.0_111\bin\t2k.dll 0x47d00000 - 0x47d4d000 C:\Users\bardi\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\34\4fcda2-770a68ce-2.9.1--n\lwjgl.dll 0x55090000 - 0x55170000 C:\WINDOWS\SYSTEM32\OPENGL32.dll 0x55060000 - 0x55085000 C:\WINDOWS\SYSTEM32\GLU32.dll 0x54f70000 - 0x5505d000 C:\WINDOWS\SYSTEM32\DDRAW.dll 0x54f60000 - 0x54f67000 C:\WINDOWS\SYSTEM32\DCIMAN32.dll 0x74a10000 - 0x74a94000 C:\WINDOWS\System32\clbcatq.dll 0x68740000 - 0x68748000 C:\WINDOWS\SYSTEM32\msiltcfg.dll 0x60f40000 - 0x612cb000 C:\WINDOWS\SYSTEM32\msi.dll 0x5fa40000 - 0x5fbae000 C:\WINDOWS\SYSTEM32\WindowsCodecs.dll 0x601a0000 - 0x601e4000 C:\WINDOWS\system32\dataexchange.dll 0x6ec50000 - 0x6ee7f000 C:\WINDOWS\system32\d3d11.dll 0x685f0000 - 0x68703000 C:\WINDOWS\system32\dcomp.dll 0x6ef10000 - 0x6ef94000 C:\WINDOWS\system32\dxgi.dll 0x684f0000 - 0x685e1000 C:\WINDOWS\system32\twinapi.appcore.dll 0x72380000 - 0x72414000 C:\WINDOWS\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_5.82.14393.447_none_5507ded2cb4f7f4c\comctl32.dll 0x54310000 - 0x54d76000 C:\WINDOWS\SYSTEM32\ig4icd32.dll 0x658c0000 - 0x65945000 C:\WINDOWS\SYSTEM32\mscms.dll 0x542d0000 - 0x5430d000 C:\WINDOWS\SYSTEM32\icm32.dll 0x4a460000 - 0x4a4c5000 C:\Users\bardi\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\34\4fcda2-770a68ce-2.9.1--n\OpenAL32.dll 0x65950000 - 0x659a8000 C:\WINDOWS\System32\MMDevApi.dll 0x6aa40000 - 0x6ab8f000 C:\WINDOWS\System32\PROPSYS.dll 0x72640000 - 0x72662000 C:\WINDOWS\System32\DEVOBJ.dll 0x54240000 - 0x542c9000 C:\WINDOWS\SYSTEM32\dsound.dll 0x65a80000 - 0x65afb000 C:\WINDOWS\SYSTEM32\AUDIOSES.DLL 0x659b0000 - 0x65a7f000 C:\WINDOWS\SYSTEM32\wintypes.dll 0x54210000 - 0x54240000 C:\Program Files (x86)\Java\jre1.8.0_111\bin\lcms.dll 0x72ff0000 - 0x73135000 C:\WINDOWS\SYSTEM32\dbghelp.dll VM Arguments: jvm_args: -Dorg.lwjgl.input.Mouse.allowNegativeMouseCoords=true -Xbootclasspath/a:C:\Program Files (x86)\Java\jre1.8.0_111\lib\deploy.jar;C:\Program Files (x86)\Java\jre1.8.0_111\lib\javaws.jar;C:\Program Files (x86)\Java\jre1.8.0_111\lib\plugin.jar -Xverify:remote -Djava.security.manager -Djnlp.application.href=http://www.wurmonline.com/client/wurmclient.jnlp -Xmx1g -Xms512m -Dsun.java2d.noddraw=true -Djnlp.tk=awt -Djnlpx.vmargs=LURqbmxwLmFwcGxpY2F0aW9uLmhyZWY9aHR0cDovL3d3dy53dXJtb25saW5lLmNvbS9jbGllbnQvd3VybWNsaWVudC5qbmxwAC1YbXgxZwAtWG1zNTEybQAtRHN1bi5qYXZhMmQubm9kZHJhdz10cnVlAC1Eb3JnLmx3amdsLmlucHV0Lk1vdXNlLmFsbG93TmVnYXRpdmVNb3VzZUNvb3Jkcz10cnVlAA== -Djnlpx.jvm=C:\Program Files (x86)\Java\jre1.8.0_111\bin\javaw.exe -Djnlpx.splashport=54092 -Djnlpx.home=C:\Program Files (x86)\Java\jre1.8.0_111\bin -Djnlpx.remove=false -Djnlpx.offline=false -Djnlpx.relaunch=true -Djnlpx.session.data=C:\Users\bardi\AppData\Local\Temp\session5673290431838906107 -Djnlpx.heapsize=536870912,1073741824 -Djava.security.policy=file:C:\Program Files (x86)\Java\jre1.8.0_111\lib\security\javaws.policy -DtrustProxy=true -Djnlpx.origFilenameArg=C:\Users\bardi\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\41\5fef8269-6646e71d java_command: com.sun.javaws.Main -secure -notWebJava C:\Users\bardi\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\41\5fef8269-6646e71d java_class_path (initial): C:\Program Files (x86)\Java\jre1.8.0_111\lib\deploy.jar Launcher Type: SUN_STANDARD Environment Variables: PATH=C:\Program Files (x86)\Java\jre1.8.0_111\bin;C:\ProgramData\Oracle\Java\javapath;C:\Program Files\Dell\DW WLAN Card;;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Intel\OpenCL SDK\2.0\bin\x86;C:\Program Files (x86)\Intel\OpenCL SDK\2.0\bin\x64;C:\Program Files (x86)\Skype\Phone\;C:\Program Files (x86)\PharosSystems\Core;C:\Users\bardi\AppData\Local\Microsoft\WindowsApps;;"C:\Program Files (x86)\Java\jre1.8.0_111\bin" USERNAME=bardi OS=Windows_NT PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 42 Stepping 7, GenuineIntel --------------- S Y S T E M --------------- OS: Windows 10.0 , 64 bit Build 14393 (10.0.14393.0) CPU:total 4 (2 cores per cpu, 2 threads per core) family 6 model 42 stepping 7, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, aes, clmul, ht, tsc, tscinvbit Memory: 4k page, physical 8266680k(4046728k free), swap 16655288k(11896020k free) vm_info: Java HotSpot(TM) Client VM (25.111-b14) for windows-x86 JRE (1.8.0_111-b14), built on Sep 22 2016 18:54:33 by "java_re" with MS VC++ 10.0 (VS2010) time: Sat Nov 19 20:53:13 2016 elapsed time: 16 seconds (0d 0h 0m 16s)
  23. Help Please This morning after a small download of graphics I tried to run wurm and bounced back saying due to exception list it would not run i found how to add website wurmonline.com to exception list but now it wont run due to an invalid certificate HELP!! http://imgur.com/ZQ3pJC3
  24. Im on pristine and this issue began end of august just before last 2 rifts I have toshiba laptop satellite 4gb windows vista ati mobility 3650 512mb video card, all drivers and java is up to date. Nothing has been added or changed in any way I load game and start to play with 20-28fpsbut every few minutes when i move or run game on my end freezes up and my fps drop to 0 for 3 seconds before it catches up which can make exploring or fighting dangerous as world around me moves normally., its not an internet issue and run fine on other computers HELP PLEASE game is increasingly unplayable i also sometimes crash soon as i move and horses and other people are now outlines in a THICK Blue outline that shows static outline of npc
  25. An autoupdate popped up for me this evening when I turned on the PC. Be sure you install both 32 and 64 if you run a 64 bit OS.