Jump to content

Forums

  1. News & Announcements

    1. News

      Blog posts, interesting news, and forum announcements.

      5k
      posts
  2. Project Zomboid

    1. PZ Updates

      Patch notes and announcement threads for PZ builds.

      22.2k
      posts
    2. General Discussions

      Just the general place to natter about zombie apocal-em-upse, Project Zomboid.

      66.2k
      posts
    3. Bug Reports

      Bugs go here. Please save us the time to translate all the posts in different languages and post them in English instead.

      16.9k
      posts
    4. PZ Support

      For any problems about purchasing, the actual running of the game, crash reports, etc.
      Bug reports go here (click).

      25.5k
      posts
    5. 22.3k
      posts
    6. 8.3k
      posts
    7. PZ Suggestions

      Got things you want to see in PZ? Post here! Tip: search to see if there's already an existing thread.

      54.9k
      posts
  3. PZ Modding

    1. Tutorials & Resources

      The place to learn and gather everything you could need for modding PZ!

      2.4k
      posts
    2. Mods

      Anything that alters gameplay mechanics or the UI and doesn't fit into the other categories.

      17.4k
      posts
    3. Items

      Weapons, food, recipes, clothes. All the items you need (or not) for survival.

      9.7k
      posts
    4. Mapping

      Visit exotic places.

      8.3k
      posts
    5. Mod Ideas and Requests

      For the creative minds and everyone else.

      2.8k
      posts
  4. General Games Development

    1. Indie Scene

      Talk about the Indie scene, promote your work, and get feedback about all aspects of game development!

      2.3k
      posts
  5. Other Discussions

    1. General Discussion

      Talk about anything you like!

      21.5k
      posts
    2. Forum Games & Activities

      Relax with some good ol' fashioned forum tomfoolery and creative fun!

      9.3k
      posts
  • New Topics

  • 2311 The Ultimate Question!

    1. 1. Which is better: pancakes or waffles?


      • PANCAKES
      • WAFFLES

  • Posts

    • NB: This issue is not game breaking and does not seem to affect the stability of the game. NB2: This post contains a bugfix.  (Scroll to the bottom for bugfix if tl;dr) Version: 41.78.16 Affects all game modes. (single/multiplayer) Reproduction steps: 1. save any game. Issue description: WorldDictionaryReadable.lua is currently not syntactically correct lua code and will error any code that attempts to load it: > -- in lua repl > worldDict = require("WorldDictionaryReadable") error loading module 'WorldDictionaryReadable' from file './WorldDictionaryReadable.lua': ./WorldDictionaryReadable.lua:20356: '}' expected (to close '{' at line 20355) near '=' stack traceback: [C]: in ? [C]: in function 'require' stdin:1: in main chunk [C]: in ? > dofile("WorldDictionaryReadable.lua") WorldDictionaryReadable.lua:20356: '}' expected (to close '{' at line 20355) near '=' stack traceback: [C]: in function 'dofile' stdin:1: in main chunk [C]: in ? This is due to the following generated section (e.g. from a save file of mine, note file continues before and after this section):   --[[ ---- OBJECTS ---- --]] objects = { 0 = "American Holly", 1 = "Canadian Hemlock", 2 = "Virginia Pine", 3 = "Riverbirch", 4 = "Cockspur Hawthorn", 5 = "Dogwood", 6 = "Carolina Silverbell", 7 = "Yellowwood", 8 = "Eastern Redbud", 9 = "Redmaple", 10 = "American Linden", 11 = "Spicebush", 12 = "Ninebark", 13 = "Blueberry", 14 = "Blackberry", 15 = "Piedmont azalea", 16 = "Arrowwood viburnum", 17 = "Red chokeberry", 18 = "Beautyberry", 19 = "New jersey tea", 20 = "Wild hydrangea", 21 = "Shrubby St. John's wort", 22 = "Butterfly Weed", 23 = "Swamp Sunflower", 24 = "Purple Coneflower", 25 = "Joe-Pye Weed", 26 = "Blazing Star", 27 = "Wild Bergamot", 28 = "White Beard-tongue", 29 = "Ironweed", 30 = "White Baneberry", 31 = "Wild Columbine", 32 = "Jack-in-the-pulpit", 33 = "Wild Ginger", 34 = "Wild Geranium", 35 = "Alumroot", 36 = "Wild Blue Phlox", 37 = "Polemonium Reptans", 38 = "Foamflower", 39 = "Grass", 40 = "Generic", 41 = "Fern", 42 = "CrackGrass", 43 = "WallVines", 44 = "WallCracks", 45 = "Flowerbed", } Two things are wrong with this generated dump.  The first, and minor issue which does not result in syntax errors, is that the generated table is 0-indexed and not 1-indexed which lua operates on. The second, and major issue, is that Number = Value syntax directly is not possible in lua.  This is what's causing the loading errors. -- lua requires this syntax for numerical indexes, so the section should look like this: objects = { [1] = "American Holly", -- [...] [45] = "Flowerbed", } this file is generated by zombie.world.DictionaryData's saveAsText method.  Debugging the related string information (https://docs.oracle.com/javase/specs/jvms/se22/html/jvms-4.html#jvms-4.4.3) from the compiled class, one finds that the string being interpolated in this section of saveAsText's execution is: "\t\u0001 = \"\u0001\",\u0001" Which, when interpolated with a key of 0, a value of "American Holly" (without quotes), and a local system's newline (here we use "\n" for simplicity) would give an example of: "\t0 = \"American Holly\",\n" Which matches the currently syntactically erroneous lua file. It should be: "\t[\u0001] = \"\u0001\",\u0001" which with the above example interpolation would give "\t[0] = \"American Holly\",\n" Which, along with some further knowledge of Java's instruction set allows us to arrive at our solution: Fix (for the syntax errors):   // zombie.world.DictionaryData // nb: variable names are ad hoc based on my notes and may not represent those in actual The Indie Store codebases public class DictionaryData { // [...] protected void saveAsText(String readableSaveFileName) throws IOException, WorldDictionaryException { // [...] // the foor loop is extrapolated based on my notes, // in decompiled code this would show as a while(hasNext) called on an iterator. // actual code may vary. for(object in objectIdToNameMap) { readableSaveWriter.write("\t" + object.getKey() + " = \"" + object.getValue() + "\"," + System.lineSeperator()); } // [...] } /* N.B. The instantiation of the readableSaveWriter variable (a java.io.FileWriter instance) * on a java.io.File (opened on the readableSaveFileName argument) is omitted for brevity, as are any related * try blocks or error handling, as that is beyond the scope of this report, and is all working perfectly well. */ Should be:   // zombie.world.DictionaryData // nb: above comments in previous code-section apply, but are omitted for brevity public class DictionaryData { // [...] protected void saveAsText(String readableSaveFileName) throws IOException, WorldDictionaryException { // [...] for(object in objectIdToNameMap) { readableSaveWriter.write("\t[" + object.getKey() + "] = \"" + object.getValue() + "\"," + System.lineSeperator()); } // [...] }  
    • but a nurse hat tho. 
    • Sometimes I would like to build bases for long term, sometimes I want to live in an RV, and others I want to just carry everything in a backpack and wander around.  It would be cool if you could add an option in the main menu that let's you chose the character you want to play and load them up in that same world ever other character you have is living in.  So  I have 2 characters, 1. Mike (base buliding) 2. Shannon (solo wanderer) and 3. New Character.  When I go to load the world, I can choose what character I want to load in as.    The world is updated for each character based on the last save file. So you can interact with your base your other character built if you come across it, and the changes will be there when you load your base builder dude.  Say you burnt down a building on your base builder, when you load in as a wanderer you'll see the building burnt down.   Deaths are the same, the body and items are there to be found by another character you can play as.   Essentially you have have an unlimited amount of play throughs going on at the same time.   As for the time of the year, each character should be on their own clock. This would keep a new character from starting when the water and power are already off due to another character already months in. The only thing that is the same across characters is the physical environemnt. 
    • My game won't open anymore... It all started when I tried to join a multiplayer server and ended up deleting the "Zomboid" folder, after that my game wouldn't open anymore. I have the game's minimum requirements by far, I've already formatted my PC and I've been talking to a Zomboid expert on Steam for days now. At this point my game opens, but when I go to customize my character, the game crashes. Please reply, I'm leaving the crash information below:   C:\Program Files (x86)\Steam\steamapps\common\ProjectZomboid>SET _JAVA_OPTIONS= C:\Program Files (x86)\Steam\steamapps\common\ProjectZomboid>SET PZ_CLASSPATH=commons-compress-1.18.jar;istack-commons-runtime.jar;jassimp.jar;javacord-2.0.17-shaded.jar;javax.activation-api.jar;jaxb-api.jar;jaxb-runtime.jar;lwjgl.jar;lwjgl-natives-windows.jar;lwjgl-glfw.jar;lwjgl-glfw-natives-windows.jar;lwjgl-jemalloc.jar;lwjgl-jemalloc-natives-windows.jar;lwjgl-opengl.jar;lwjgl-opengl-natives-windows.jar;lwjgl_util.jar;sqlite-jdbc-3.27.2.1.jar;trove-3.0.3.jar;uncommons-maths-1.2.3.jar;./ C:\Program Files (x86)\Steam\steamapps\common\ProjectZomboid>".\jre64\bin\java.exe" -Djava.awt.headless=true -Dzomboid.steam=1 -Dzomboid.znetlog=1 -XX:-CreateCoredumpOnCrash -XX:-OmitStackTraceInFastThrow -XX:+UseZGC -Xmx3072m -Djava.library.path=./win64/;./ -cp commons-compress-1.18.jar;istack-commons-runtime.jar;jassimp.jar;javacord-2.0.17-shaded.jar;javax.activation-api.jar;jaxb-api.jar;jaxb-runtime.jar;lwjgl.jar;lwjgl-natives-windows.jar;lwjgl-glfw.jar;lwjgl-glfw-natives-windows.jar;lwjgl-jemalloc.jar;lwjgl-jemalloc-natives-windows.jar;lwjgl-opengl.jar;lwjgl-opengl-natives-windows.jar;lwjgl_util.jar;sqlite-jdbc-3.27.2.1.jar;trove-3.0.3.jar;uncommons-maths-1.2.3.jar;./ zombie.gameStates.MainScreenState DEBUG: General     , 1714847153372> LoggerManager.init                  > Initializing... LOG  : General     , 1714847153430> cachedir set to "C:\Users\joaoa\Zomboid" LOG  : General     , 1714847153439> 04-05-2024 19:25:53 LOG  : General     , 1714847153440> cachedir is "C:\Users\joaoa\Zomboid" LOG  : General     , 1714847153441> LogFileDir is "C:\Users\joaoa\Zomboid\Logs" LOG  : General     , 1714847153441> ===== System specs ===== LOG  : General     , 1714847153443> OS: Windows 10, version: 10.0, arch: amd64 LOG  : General     , 1714847153445> Processor: Intel64 Family 6 Model 154 Stepping 3, GenuineIntel LOG  : General     , 1714847153446> Processor cores: 12 LOG  : General     , 1714847153448> Available processors (cores): 12 LOG  : General     , 1714847153450> Memory free: 200.0 MB LOG  : General     , 1714847153451> Memory max: 3072.0 MB LOG  : General     , 1714847153451> Memory  total available to JVM: 252.0 MB LOG  : General     , 1714847153457> C:\, Total: 476.09668 GB, Free: 226.9143 GB LOG  : General     , 1714847153592> Mobo = [Product=8A4F] LOG  : General     , 1714847153701> CPU = [Manufacturer=GenuineIntel,MaxClockSpeed=2000,Name=12th Gen Intel(R) Core(TM) i5-12450H] LOG  : General     , 1714847153835> Graphics = { [AdapterRAM=4293918720,DriverVersion=31.0.15.5222,Name=NVIDIA GeForce RTX 3050 Laptop GPU], [AdapterRAM=134217728,DriverVersion=31.0.101.5445,Name=Intel(R) UHD Graphics] } LOG  : General     , 1714847153964> VideoMode = { [VideoModeDescription=1920 x 1080 x 4294967296 cores], [VideoModeDescription=1920 x 1080 x 4294967296 cores] } LOG  : General     , 1714847154071> Sound = { [Manufacturer=NVIDIA,Name=NVIDIA High Definition Audio], [Manufacturer=Intel(R) Corporation,Name=Tecnologia Intel® Smart Sound para microfones digitais], [Manufacturer=Intel(R) Corporation,Name=Tecnologia Intel® Smart Sound para áudio Bluetooth®], [Manufacturer=NVIDIA,Name=NVIDIA Virtual Audio Device (Wave Extensible) (WDM)], [Manufacturer=Realtek,Name=Realtek High Definition Audio] } LOG  : General     , 1714847154176> Memory RAM = { [Capacity=8589934592,Manufacturer=Samsung], [Capacity=8589934592,Manufacturer=Samsung] } LOG  : General     , 1714847154177> ======================== LOG  : General     , 1714847154177> -- listing properties -- LOG  : General     , 1714847154178> java.specification.version=17 LOG  : General     , 1714847154178> sun.cpu.isalist=amd64 LOG  : General     , 1714847154178> sun.jnu.encoding=Cp1252 LOG  : General     , 1714847154179> java.class.path=commons-compress-1.18.jar;istack-comm... LOG  : General     , 1714847154179> java.vm.vendor=Azul Systems, Inc. LOG  : General     , 1714847154180> sun.arch.data.model=64 LOG  : General     , 1714847154180> user.variant= LOG  : General     , 1714847154180> java.vendor.url=http://www.azul.com/ LOG  : General     , 1714847154181> user.timezone=Europe/Lisbon LOG  : General     , 1714847154181> zomboid.steam=1 LOG  : General     , 1714847154182> java.vm.specification.version=17 LOG  : General     , 1714847154182> os.name=Windows 10 LOG  : General     , 1714847154182> sun.java.launcher=SUN_STANDARD LOG  : General     , 1714847154183> user.country=PT LOG  : General     , 1714847154183> sun.boot.library.path=C:\Program Files (x86)\Steam\steamapp... LOG  : General     , 1714847154183> zomboid.znetlog=1 LOG  : General     , 1714847154185> sun.java.command=zombie.gameStates.MainScreenState LOG  : General     , 1714847154185> jdk.debug=release LOG  : General     , 1714847154185> sun.cpu.endian=little LOG  : General     , 1714847154186> user.home=C:\Users\joaoa LOG  : General     , 1714847154186> user.language=pt LOG  : General     , 1714847154187> sun.stderr.encoding=cp850 LOG  : General     , 1714847154187> java.specification.vendor=Oracle Corporation LOG  : General     , 1714847154187> java.version.date=2021-10-19 LOG  : General     , 1714847154188> java.home=C:\Program Files (x86)\Steam\steamapp... LOG  : General     , 1714847154188> file.separator=\ LOG  : General     , 1714847154188> line.separator= LOG  : General     , 1714847154188> sun.stdout.encoding=cp850 LOG  : General     , 1714847154188> java.vm.specification.vendor=Oracle Corporation LOG  : General     , 1714847154190> java.specification.name=Java Platform API Specification LOG  : General     , 1714847154190> java.awt.headless=true LOG  : General     , 1714847154190> user.script= LOG  : General     , 1714847154191> sun.management.compiler=HotSpot 64-Bit Tiered Compilers LOG  : General     , 1714847154191> java.runtime.version=17.0.1+12-LTS LOG  : General     , 1714847154192> user.name=joaoa LOG  : General     , 1714847154192> path.separator=; LOG  : General     , 1714847154192> os.version=10.0 LOG  : General     , 1714847154193> java.runtime.name=OpenJDK Runtime Environment LOG  : General     , 1714847154193> file.encoding=Cp1252 LOG  : General     , 1714847154193> java.vm.name=OpenJDK 64-Bit Server VM LOG  : General     , 1714847154193> java.vendor.version=Zulu17.30+15-CA LOG  : General     , 1714847154194> java.vendor.url.bug=http://www.azul.com/support/ LOG  : General     , 1714847154194> java.io.tmpdir=C:\Users\joaoa\AppData\Local\Temp\ LOG  : General     , 1714847154195> java.version=17.0.1 LOG  : General     , 1714847154195> user.dir=C:\Program Files (x86)\Steam\steamapp... LOG  : General     , 1714847154196> os.arch=amd64 LOG  : General     , 1714847154196> java.vm.specification.name=Java Virtual Machine Specification LOG  : General     , 1714847154196> sun.os.patch.level= LOG  : General     , 1714847154197> native.encoding=Cp1252 LOG  : General     , 1714847154197> java.library.path=./win64/;./ LOG  : General     , 1714847154197> java.vm.info=mixed mode, sharing LOG  : General     , 1714847154198> java.vendor=Azul Systems, Inc. LOG  : General     , 1714847154198> java.vm.version=17.0.1+12-LTS LOG  : General     , 1714847154198> sun.io.unicode.encoding=UnicodeLittle LOG  : General     , 1714847154198> java.class.version=61.0 LOG  : General     , 1714847154199> ----- LOG  : General     , 1714847154199> version=41.78.16 demo=false LOG  : General     , 1714847154442> LightingFPS set to 15 LOG  : General     , 1714847154445> [javafmodJNI] Init: Start LOG  : General     , 1714847154446> [javafmodJNI] Init: WIN 64 LOG  : General     , 1714847154460> 1714847154455 fmod: Java loging: OK LOG  : General     , 1714847154468> closest width=640 freq=60 LOG  : General     , 1714847154469> closest width=640 freq=144 LOG  : General     , 1714847154469> 1714847154469 fmod: FMOD::Studio::System::create() result: No errors. LOG  : General     , 1714847154469> closest width=800 freq=60 LOG  : General     , 1714847154469> 1714847154469 fmod: FMOD::Studio::System::getCoreSystem() result: No errors. LOG  : General     , 1714847154470> closest width=800 freq=144 LOG  : General     , 1714847154470> 1714847154470 fmod: FMOD_System_GetVersion() result: No errors. LOG  : General     , 1714847154470> closest width=1280 freq=60 LOG  : General     , 1714847154471> closest width=1280 freq=144 LOG  : General     , 1714847154471> 1714847154471 fmod: fmodintegration built with version 20206, fmod shared library version 20206 LOG  : General     , 1714847154472> closest width=1360 freq=60 LOG  : General     , 1714847154472> 1714847154472 fmod: System Create: OK LOG  : General     , 1714847154472> closest width=1360 freq=144 LOG  : General     , 1714847154473> 1714847154473 fmod: FMOD_System_SetSoftwareFormat() result: No errors. LOG  : General     , 1714847154473> closest width=1366 freq=60 LOG  : General     , 1714847154473> closest width=1366 freq=144 LOG  : General     , 1714847154473> closest width=1440 freq=60 LOG  : General     , 1714847154474> closest width=1440 freq=144 LOG  : General     , 1714847154474> closest width=1600 freq=60 LOG  : General     , 1714847154474> closest width=1600 freq=144 LOG  : General     , 1714847154475> closest width=1680 freq=60 LOG  : General     , 1714847154475> closest width=1680 freq=144 LOG  : General     , 1714847154475> closest width=1920 freq=60 LOG  : General     , 1714847154960> 1714847154960 fmod: FMOD::Studio::System::Initialize() result: No errors. LOG  : General     , 1714847154961> 1714847154961 fmod: Creating DSP for capture sound LOG  : General     , 1714847154961> 1714847154961 fmod: FMOD_System_CreateDSP() result: No errors. LOG  : General     , 1714847154961> 1714847154961 fmod: FMOD_DSP_SetBypass() result: No errors. LOG  : General     , 1714847154962> 1714847154962 fmod: FMOD_System_GetMasterChannelGroup() result: No errors. LOG  : General     , 1714847154962> 1714847154962 fmod: FMOD_ChannelGroup_AddDSP() result: No errors. LOG  : General     , 1714847154962> 1714847154962 fmod: FMOD_System_Set3DSettings() result: No errors. ERROR: General     , 1714847155112> java.lang.RuntimeException: java.lang.IllegalStateException: There is no OpenGL context current in the current thread. ERROR: General     , 1714847155112>     at zombie.core.opengl.RenderThread.renderLoop(RenderThread.java:134) ERROR: General     , 1714847155113>     at zombie.gameStates.MainScreenState.main(MainScreenState.java:226) ERROR: General     , 1714847155114> Caused by: java.lang.IllegalStateException: There is no OpenGL context current in the current thread. ERROR: General     , 1714847155114>     at org.lwjgl.opengl.GL.createCapabilities(GL.java:378) ERROR: General     , 1714847155114>     at org.lwjgl.opengl.GL.createCapabilities(GL.java:322) ERROR: General     , 1714847155115>     at org.lwjglx.opengl.Display.create(Display.java:159) ERROR: General     , 1714847155115>     at org.lwjglx.opengl.Display.create(Display.java:84) ERROR: General     , 1714847155115>     at zombie.core.Core.init(Core.java:2432) ERROR: General     , 1714847155115>     at zombie.GameWindow.InitDisplay(GameWindow.java:408) ERROR: General     , 1714847155117>     at zombie.core.opengl.RenderThread.renderLoop(RenderThread.java:128) ERROR: General     , 1714847155117>     ... 1 more C:\Program Files (x86)\Steam\steamapps\common\ProjectZomboid>IF -805306369 NEQ 0 (".\jre64\bin\java.exe" -Djava.awt.headless=true -Dzomboid.steam=1 -Dzomboid.znetlog=1 -XX:-CreateCoredumpOnCrash -XX:-OmitStackTraceInFastThrow -Xmx3072m -Djava.library.path=./win64/;./ -cp commons-compress-1.18.jar;istack-commons-runtime.jar;jassimp.jar;javacord-2.0.17-shaded.jar;javax.activation-api.jar;jaxb-api.jar;jaxb-runtime.jar;lwjgl.jar;lwjgl-natives-windows.jar;lwjgl-glfw.jar;lwjgl-glfw-natives-windows.jar;lwjgl-jemalloc.jar;lwjgl-jemalloc-natives-windows.jar;lwjgl-opengl.jar;lwjgl-opengl-natives-windows.jar;lwjgl_util.jar;sqlite-jdbc-3.27.2.1.jar;trove-3.0.3.jar;uncommons-maths-1.2.3.jar;./ zombie.gameStates.MainScreenState   ) DEBUG: General     , 1714847162832> LoggerManager.init                  > Initializing... LOG  : General     , 1714847162912> cachedir set to "C:\Users\joaoa\Zomboid" LOG  : General     , 1714847162924> 04-05-2024 19:26:02 LOG  : General     , 1714847162925> cachedir is "C:\Users\joaoa\Zomboid" LOG  : General     , 1714847162926> LogFileDir is "C:\Users\joaoa\Zomboid\Logs" LOG  : General     , 1714847162927> ===== System specs ===== LOG  : General     , 1714847162930> OS: Windows 10, version: 10.0, arch: amd64 LOG  : General     , 1714847162932> Processor: Intel64 Family 6 Model 154 Stepping 3, GenuineIntel LOG  : General     , 1714847162933> Processor cores: 12 LOG  : General     , 1714847162936> Available processors (cores): 12 LOG  : General     , 1714847162940> Memory free: 233.28395 MB LOG  : General     , 1714847162941> Memory max: 3072.0 MB LOG  : General     , 1714847162942> Memory  total available to JVM: 252.0 MB LOG  : General     , 1714847162950> C:\, Total: 476.09668 GB, Free: 225.13602 GB LOG  : General     , 1714847163090> Mobo = [Product=8A4F] LOG  : General     , 1714847163210> CPU = [Manufacturer=GenuineIntel,MaxClockSpeed=2000,Name=12th Gen Intel(R) Core(TM) i5-12450H] LOG  : General     , 1714847163347> Graphics = { [AdapterRAM=4293918720,DriverVersion=31.0.15.5222,Name=NVIDIA GeForce RTX 3050 Laptop GPU], [AdapterRAM=134217728,DriverVersion=31.0.101.5445,Name=Intel(R) UHD Graphics] } LOG  : General     , 1714847163484> VideoMode = { [VideoModeDescription=1920 x 1080 x 4294967296 cores], [VideoModeDescription=1920 x 1080 x 4294967296 cores] } LOG  : General     , 1714847163603> Sound = { [Manufacturer=NVIDIA,Name=NVIDIA High Definition Audio], [Manufacturer=Intel(R) Corporation,Name=Tecnologia Intel® Smart Sound para microfones digitais], [Manufacturer=Intel(R) Corporation,Name=Tecnologia Intel® Smart Sound para áudio Bluetooth®], [Manufacturer=NVIDIA,Name=NVIDIA Virtual Audio Device (Wave Extensible) (WDM)], [Manufacturer=Realtek,Name=Realtek High Definition Audio] } LOG  : General     , 1714847163730> Memory RAM = { [Capacity=8589934592,Manufacturer=Samsung], [Capacity=8589934592,Manufacturer=Samsung] } LOG  : General     , 1714847163736> ======================== LOG  : General     , 1714847163738> -- listing properties -- LOG  : General     , 1714847163739> java.specification.version=17 LOG  : General     , 1714847163740> sun.cpu.isalist=amd64 LOG  : General     , 1714847163740> sun.jnu.encoding=Cp1252 LOG  : General     , 1714847163741> java.class.path=commons-compress-1.18.jar;istack-comm... LOG  : General     , 1714847163741> java.vm.vendor=Azul Systems, Inc. LOG  : General     , 1714847163742> sun.arch.data.model=64 LOG  : General     , 1714847163742> user.variant= LOG  : General     , 1714847163743> java.vendor.url=http://www.azul.com/ LOG  : General     , 1714847163743> user.timezone=Europe/Lisbon LOG  : General     , 1714847163744> zomboid.steam=1 LOG  : General     , 1714847163744> java.vm.specification.version=17 LOG  : General     , 1714847163745> os.name=Windows 10 LOG  : General     , 1714847163745> sun.java.launcher=SUN_STANDARD LOG  : General     , 1714847163746> user.country=PT LOG  : General     , 1714847163747> sun.boot.library.path=C:\Program Files (x86)\Steam\steamapp... LOG  : General     , 1714847163747> zomboid.znetlog=1 LOG  : General     , 1714847163748> sun.java.command=zombie.gameStates.MainScreenState LOG  : General     , 1714847163749> jdk.debug=release LOG  : General     , 1714847163749> sun.cpu.endian=little LOG  : General     , 1714847163750> user.home=C:\Users\joaoa LOG  : General     , 1714847163750> user.language=pt LOG  : General     , 1714847163750> sun.stderr.encoding=cp850 LOG  : General     , 1714847163751> java.specification.vendor=Oracle Corporation LOG  : General     , 1714847163751> java.version.date=2021-10-19 LOG  : General     , 1714847163751> java.home=C:\Program Files (x86)\Steam\steamapp... LOG  : General     , 1714847163752> file.separator=\ LOG  : General     , 1714847163752> java.vm.compressedOopsMode=Zero based LOG  : General     , 1714847163752> line.separator= LOG  : General     , 1714847163753> sun.stdout.encoding=cp850 LOG  : General     , 1714847163753> java.vm.specification.vendor=Oracle Corporation LOG  : General     , 1714847163754> java.specification.name=Java Platform API Specification LOG  : General     , 1714847163754> java.awt.headless=true LOG  : General     , 1714847163754> user.script= LOG  : General     , 1714847163755> sun.management.compiler=HotSpot 64-Bit Tiered Compilers LOG  : General     , 1714847163755> java.runtime.version=17.0.1+12-LTS LOG  : General     , 1714847163756> user.name=joaoa LOG  : General     , 1714847163756> path.separator=; LOG  : General     , 1714847163756> os.version=10.0 LOG  : General     , 1714847163757> java.runtime.name=OpenJDK Runtime Environment LOG  : General     , 1714847163757> file.encoding=Cp1252 LOG  : General     , 1714847163758> java.vm.name=OpenJDK 64-Bit Server VM LOG  : General     , 1714847163758> java.vendor.version=Zulu17.30+15-CA LOG  : General     , 1714847163758> java.vendor.url.bug=http://www.azul.com/support/ LOG  : General     , 1714847163759> java.io.tmpdir=C:\Users\joaoa\AppData\Local\Temp\ LOG  : General     , 1714847163760> java.version=17.0.1 LOG  : General     , 1714847163761> user.dir=C:\Program Files (x86)\Steam\steamapp... LOG  : General     , 1714847163761> os.arch=amd64 LOG  : General     , 1714847163762> java.vm.specification.name=Java Virtual Machine Specification LOG  : General     , 1714847163762> sun.os.patch.level= LOG  : General     , 1714847163762> native.encoding=Cp1252 LOG  : General     , 1714847163762> java.library.path=./win64/;./ LOG  : General     , 1714847163763> java.vm.info=mixed mode, sharing LOG  : General     , 1714847163763> java.vendor=Azul Systems, Inc. LOG  : General     , 1714847163763> java.vm.version=17.0.1+12-LTS LOG  : General     , 1714847163764> sun.io.unicode.encoding=UnicodeLittle LOG  : General     , 1714847163764> java.class.version=61.0 LOG  : General     , 1714847163764> ----- LOG  : General     , 1714847163765> version=41.78.16 demo=false LOG  : General     , 1714847164045> LightingFPS set to 15 LOG  : General     , 1714847164048> [javafmodJNI] Init: Start LOG  : General     , 1714847164049> [javafmodJNI] Init: WIN 64 LOG  : General     , 1714847164065> 1714847164059 fmod: Java loging: OK LOG  : General     , 1714847164073> 1714847164073 fmod: FMOD::Studio::System::create() result: No errors. LOG  : General     , 1714847164074> 1714847164074 fmod: FMOD::Studio::System::getCoreSystem() result: No errors. LOG  : General     , 1714847164074> 1714847164074 fmod: FMOD_System_GetVersion() result: No errors. LOG  : General     , 1714847164075> 1714847164075 fmod: fmodintegration built with version 20206, fmod shared library version 20206 LOG  : General     , 1714847164075> closest width=640 freq=60 LOG  : General     , 1714847164076> 1714847164075 fmod: System Create: OK LOG  : General     , 1714847164076> closest width=640 freq=144 LOG  : General     , 1714847164076> 1714847164076 fmod: FMOD_System_SetSoftwareFormat() result: No errors. LOG  : General     , 1714847164076> closest width=800 freq=60 LOG  : General     , 1714847164077> closest width=800 freq=144 LOG  : General     , 1714847164077> closest width=1280 freq=60 LOG  : General     , 1714847164078> closest width=1280 freq=144 LOG  : General     , 1714847164078> closest width=1360 freq=60 LOG  : General     , 1714847164079> closest width=1360 freq=144 LOG  : General     , 1714847164080> closest width=1366 freq=60 LOG  : General     , 1714847164080> closest width=1366 freq=144 LOG  : General     , 1714847164081> closest width=1440 freq=60 LOG  : General     , 1714847164081> closest width=1440 freq=144 LOG  : General     , 1714847164082> closest width=1600 freq=60 LOG  : General     , 1714847164082> closest width=1600 freq=144 LOG  : General     , 1714847164083> closest width=1680 freq=60 LOG  : General     , 1714847164083> closest width=1680 freq=144 LOG  : General     , 1714847164083> closest width=1920 freq=60 LOG  : General     , 1714847164397> 1714847164397 fmod: FMOD::Studio::System::Initialize() result: No errors. LOG  : General     , 1714847164399> 1714847164399 fmod: Creating DSP for capture sound LOG  : General     , 1714847164401> 1714847164401 fmod: FMOD_System_CreateDSP() result: No errors. LOG  : General     , 1714847164403> 1714847164403 fmod: FMOD_DSP_SetBypass() result: No errors. LOG  : General     , 1714847164403> 1714847164403 fmod: FMOD_System_GetMasterChannelGroup() result: No errors. LOG  : General     , 1714847164406> 1714847164406 fmod: FMOD_ChannelGroup_AddDSP() result: No errors. LOG  : General     , 1714847164409> 1714847164409 fmod: FMOD_System_Set3DSettings() result: No errors. ERROR: General     , 1714847164606> java.lang.RuntimeException: java.lang.IllegalStateException: There is no OpenGL context current in the current thread. ERROR: General     , 1714847164607>     at zombie.core.opengl.RenderThread.renderLoop(RenderThread.java:134) ERROR: General     , 1714847164607>     at zombie.gameStates.MainScreenState.main(MainScreenState.java:226) ERROR: General     , 1714847164608> Caused by: java.lang.IllegalStateException: There is no OpenGL context current in the current thread. ERROR: General     , 1714847164608>     at org.lwjgl.opengl.GL.createCapabilities(GL.java:378) ERROR: General     , 1714847164609>     at org.lwjgl.opengl.GL.createCapabilities(GL.java:322) ERROR: General     , 1714847164609>     at org.lwjglx.opengl.Display.create(Display.java:159) ERROR: General     , 1714847164610>     at org.lwjglx.opengl.Display.create(Display.java:84) ERROR: General     , 1714847164610>     at zombie.core.Core.init(Core.java:2432) ERROR: General     , 1714847164611>     at zombie.GameWindow.InitDisplay(GameWindow.java:408) ERROR: General     , 1714847164612>     at zombie.core.opengl.RenderThread.renderLoop(RenderThread.java:128) ERROR: General     , 1714847164612>     ... 1 more LOG  : General     , 1714847173636> AngelCodeFont failed to load page 0 texture C:/Program Files (x86)/Steam/steamapps/common/ProjectZomboid/media/mainfont_0.png LOG  : General     , 1714847173644> AngelCodeFont failed to load page 0 texture C:/Program Files (x86)/Steam/steamapps/common/ProjectZomboid/media/mainfont2_0.png WARN : General     , 1714847173668> TextManager.Init> font "MediumNew" not found in fonts.txt WARN : General     , 1714847173668> TextManager.Init> font "AutoNormSmall" not found in fonts.txt WARN : General     , 1714847173669> TextManager.Init> font "AutoNormMedium" not found in fonts.txt WARN : General     , 1714847173670> TextManager.Init> font "AutoNormLarge" not found in fonts.txt LOG  : General     , 1714847173676> AngelCodeFont failed to load page 0 texture C:/Program Files (x86)/Steam/steamapps/common/ProjectZomboid/media/fonts/zomboidDialogue.bmfc_0.png WARN : General     , 1714847173714> TextManager.Init> font "DebugConsole" not found in fonts.txt LOG  : General     , 1714847173879> Loading networking libraries... LOG  : General     , 1714847173880> Loading steam_api64... LOG  : General     , 1714847173883> Loading RakNet64... LOG  : General     , 1714847173887> Loading ZNetJNI64... LOG  : Network     , 1714847174016> [04-05-24 19:26:14.016] > ZNet: SetLogLevel 2 Setting breakpad minidump AppID = 108600 SteamInternal_SetMinidumpSteamID:  Caching Steam ID:  76561199138271351 [API loaded no] LOG  : Network     , 1714847174125> [04-05-24 19:26:14.125] > ZNet: SteamAPI initialised successfully LOG  : General     , 1714847174126> SteamUtils initialised successfully C:\Program Files (x86)\Steam\steamapps\common\ProjectZomboid>PAUSE Press any key to continue . . .     CWINDOWSsystem32cmd.exe.txt
×
×
  • Create New...