Jump to content

Search the Community

Showing results for tags 'multiplayer'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • News & Announcements
    • News
  • Project Zomboid
    • PZ Updates
    • General Discussions
    • Bug Reports
    • PZ Support
    • PZ Multiplayer
    • PZ Community & Creativity
    • PZ Suggestions
  • PZ Modding
    • Tutorials & Resources
    • Mods
    • Items
    • Mapping
    • Mod Ideas and Requests
  • General Games Development
    • Indie Scene
  • Other Discussions
    • General Discussion
    • Forum Games & Activities

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Twitter


Interests

  1. How it works? Loot is generated when opening a container? When a player enters a chunk? Are there any differences from the singleplayer mode? I have found various options on the forums, but I don’t understand which one is correct.
  2. Hello everyone, first day & first post here. Let me tell you about our issue, we're currently hosting a private, dedicated server and we had this problem twice already. hile playing we disconnect and suddenly the next time we want to log back in the screen stops on the messege: "Loading 40/546 segments of the map" (or something like that). This blocks our character from loggin in, and kicks us back to the desktop, but not all of us, only the ones on Rosewood. 3 of my firnds play on Luisville and the rest of us are using the Fire department as a safehouse, this building got rolled back to zero (it even had water again 30/30) but our vehicles and carts were right where we left them. If we try loggin in with a new account, it lets us in, logs the whole map and everything, but our main characters are stuck on that screen. In addition to this, while driving around on this new characters we found a lot of "black squares" where the streets should've been, this lagged the game HARD and then *PUFF* the streets reapeared. We don't know if this issues are connected or not, but this rollbacks are killing the game for us. Any idea of what can be causing this ? We tried verifying the files, starting the server again from zero, uninstalling the game individually, copying and pasting the files of our saves/multiplayer folders, deleting the folders, and nothing fixed it.
  3. For clarity: • Version? 41.65 • Singleplayer/Multiplayer? Multiplayer. • Host or dedicated? Host. • Mods? None. Like the title says, this is a fairly straightforward issue and one that I've seen a few solutions for, but none have worked so far. When I Host a server (non-dedicated), I set my access level to admin (/setaccesslevel "name" admin) and the red "Admin" tag appears to the left of my name, so I know that this part works as intended. Additionally, though I haven't seen anyone mention this, at the top-left of my screen, a bunch of text appears lightly mushed together: So, all in all, these signs tell me that my issue isn't with my access level or that I haven't properly enabled Admin. Even still, when I check the Esc menu, I don't see "Admin Panel" or anything of the sort—no new options appear beyond the usual: Manually written commands still work (e.g.: /noclip) but I otherwise can't access any of the Admin UI or other tools to help moderate a server. Is there any reason for this? I've tried: Turning Debug Mode on and off. Enabling and disabling my access level. Relaunching the server. Relaunching the game. Changing my resolution.
  4. Version? legacy41_61 and public Singleplayer/Multiplayer? Multiplayer Host or dedicated? Dedicated Mods? No Reproduction steps: legacy41_61 branch: Download the server software using SteamCMD // Set the game installation directory force_install_dir /home/steam/ZomboidDedicatedServer login anonymous // Install/Update the Zomboid Dedicated Server app_update 380870 -beta legacy41_61 validate quit Attempt to set the maximum JVM RAM to 6 GiB using the `start-server.sh` file. #!/bin/bash # ############################################################################### INSTDIR="`dirname $0`" ; cd "${INSTDIR}" ; INSTDIR="`pwd`" if "${INSTDIR}/jre64/bin/java" -version > /dev/null 2>&1; then echo "64-bit java detected" export PATH="${INSTDIR}/jre64/bin:$PATH" export LD_LIBRARY_PATH="${INSTDIR}/linux64:${INSTDIR}/natives:${INSTDIR}:${INSTDIR}/jre64/lib/amd64:${LD_LIBRARY_PATH}" JSIG="libjsig.so" LD_PRELOAD="${LD_PRELOAD}:${JSIG}" ./ProjectZomboid64 "$@" elif "${INSTDIR}/jre/bin/java" -client -version > /dev/null 2>&1; then echo "32-bit java detected" export PATH="${INSTDIR}/jre/bin:$PATH" export LD_LIBRARY_PATH="${INSTDIR}/linux32:${INSTDIR}/natives:${INSTDIR}:${INSTDIR}/jre/lib/i386:${LD_LIBRARY_PATH}" JSIG="libjsig.so" LD_PRELOAD="${LD_PRELOAD}:${JSIG}" ./ProjectZomboid32 "$@" else echo "couldn't determine 32/64 bit of java" fi exit 0 JARPATH="java/:java/lwjgl.jar:java/lwjgl_util.jar:java/sqlite-jdbc-3.27.2.1.jar:java/uncommons-maths-1.2.3.jar" LD_PRELOAD=/usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/libjsig.so \ java \ -Dzomboid.steam=1 -Dzomboid.znetlog=1 \ -Djava.library.path="${INSTDIR}/natives:${INSTDIR}/linux64" \ -Xms2048m \ -Xmx6144m \ # <-- SETTING MAX JVM RAM. COMMENT ONLY FOR THIS REPORT -XX:-UseSplitVerifier \ -cp "${JARPATH}" \ zombie.network.GameServer \ "$@" exit 0 # # EOF # ############################################################################### Run the server by running the above modified file. Observe that the server is only ever allocated 2048 MiB of RAM from the server logs: 64-bit java detected 2021-12-27T19:02:39.822048743Z ERROR: ld.so: object 'libjsig.so' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored. 2021-12-27T19:02:39.823315370Z ERROR: ld.so: object 'libjsig.so' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored. 2021-12-27T19:02:40.113207134Z pzexe: looking for PZXInitThreads.so 2021-12-27T19:02:40.113239104Z pzexe: libPZXInitThreads64.so was not found. This is ok for a server, but multi-core rendering won't work on a client without it. 2021-12-27T19:02:40.113243294Z pzexe: about to run java hack to locate libjvm.so... 2021-12-27T19:02:40.113245633Z pzexe: executing "java -classpath pzexe.jar -Djava.library.path=. zombie.pzexe" 2021-12-27T19:02:40.113247743Z pzexe.java: loading shared library "pzexe_jni64" 2021-12-27T19:02:40.113249823Z JVM=/home/steam/ZomboidDedicatedServer/jre64/lib/server/libjvm.so 2021-12-27T19:02:40.113251893Z pxexe: /proc/self/exe=/home/steam/ZomboidDedicatedServer/ProjectZomboid64 2021-12-27T19:02:40.113253853Z pzexe config file: /home/steam/ZomboidDedicatedServer/ProjectZomboid64.json 2021-12-27T19:02:40.113255813Z pzexe: mainClass: zombie/network/GameServer 2021-12-27T19:02:40.113259723Z pzexe: classpath: -Djava.class.path=java/.:java/istack-commons-runtime.jar:java/jassimp.jar:java/javacord-2.0.17-shaded.jar:java/javax.activation-api.jar:java/jaxb-api.jar:java/jaxb-runtime.jar:java/lwjgl.jar:java/lwjgl-natives-linux.jar:java/lwjgl-glfw.jar:java/lwjgl-glfw-natives-linux.jar:java/lwjgl-jemalloc.jar:java/lwjgl-jemalloc-natives-linux.jar:java/lwjgl-opengl.jar:java/lwjgl-opengl-natives-linux.jar:java/lwjgl_util.jar:java/sqlite-jdbc-3.27.2.1.jar:java/trove-3.0.3.jar:java/uncommons-maths-1.2.3.jar 2021-12-27T19:02:40.113272723Z pzexe: vmArg (json) 1: -Djava.awt.headless=true 2021-12-27T19:02:40.113274763Z pzexe: vmArg (json) 2: -Xms2048m 2021-12-27T19:02:40.113276663Z pzexe: vmArg (json) 3: -Xmx2048m # <-- JVM Max RAM set to 2 GiB 2021-12-27T19:02:40.113278493Z pzexe: vmArg (json) 4: -Dzomboid.steam=1 2021-12-27T19:02:40.113280423Z pzexe: vmArg (json) 5: -Dzomboid.znetlog=1 2021-12-27T19:02:40.113282443Z pzexe: vmArg (json) 6: -Djava.library.path=linux64/:natives/ 2021-12-27T19:02:40.113284453Z pzexe: vmArg (json) 7: -Djava.security.egd=file:/dev/urandom 2021-12-27T19:02:40.113286373Z pzexe: vmArg (json) 8: -XX:+UseZGC 2021-12-27T19:02:40.113288333Z pzexe: vmArg (json) 9: -XX:-OmitStackTraceInFastThrow 2021-12-27T19:02:40.113290233Z pzexe: using jvm "/home/steam/ZomboidDedicatedServer/jre64/lib/server/libjvm.so" 2021-12-27T19:02:40.246246444Z DEBUG: General , 1640631760224> 11,601,441> LoggerManager.init > Initializing... 2021-12-27T19:02:40.262681331Z LOG : General , 1640631760262> 11,601,469> cachedir set to "/home/steam/Zomboid" Server then crashes when attempting to use more than 2GiB of RAM. public branch: Download the server software using SteamCMD // Set the game installation directory force_install_dir /home/steam/ZomboidDedicatedServer login anonymous // Install/Update the Zomboid Dedicated Server app_update 380870 -beta public validate quit Attempt to set the maximum JVM RAM to 6 GiB using the `start-server.sh` file. Discover during the previous step that those settings don't exist. #!/bin/bash # ############################################################################### # # Edit memory option -Xmx2048m \ # or ProjectZomboid32.json for 32bit servers (rare) # ############ INSTDIR="`dirname $0`" ; cd "${INSTDIR}" ; INSTDIR="`pwd`" if "${INSTDIR}/jre64/bin/java" -version > /dev/null 2>&1; then echo "64-bit java detected" export PATH="${INSTDIR}/jre64/bin:$PATH" export LD_LIBRARY_PATH="${INSTDIR}/linux64:${INSTDIR}/natives:${INSTDIR}:${INSTDIR}/jre64/lib/amd64:${LD_LIBRARY_PATH}" JSIG="libjsig.so" LD_PRELOAD="${LD_PRELOAD}:${JSIG}" ./ProjectZomboid64 "$@" elif "${INSTDIR}/jre/bin/java" -client -version > /dev/null 2>&1; then echo "32-bit java detected" export PATH="${INSTDIR}/jre/bin:$PATH" export LD_LIBRARY_PATH="${INSTDIR}/linux32:${INSTDIR}/natives:${INSTDIR}:${INSTDIR}/jre/lib/i386:${LD_LIBRARY_PATH}" JSIG="libjsig.so" LD_PRELOAD="${LD_PRELOAD}:${JSIG}" ./ProjectZomboid32 "$@" else echo "couldn't determine 32/64 bit of java" fi exit 0 # # EOF # ############################################################################### My workaround has been to also modify the `ProjectZomboid64.json` file when running the server on the `legacy41_61` branch. This makes the following appear in the startup logs, which is more promising: 64-bit java detected 2021-12-27T19:12:19.557328533Z ERROR: ld.so: object 'libjsig.so' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored. 2021-12-27T19:12:19.559820144Z ERROR: ld.so: object 'libjsig.so' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored. 2021-12-27T19:12:19.867248885Z pzexe: looking for PZXInitThreads.so 2021-12-27T19:12:19.867269414Z pzexe: libPZXInitThreads64.so was not found. This is ok for a server, but multi-core rendering won't work on a client without it. 2021-12-27T19:12:19.867278364Z pzexe: about to run java hack to locate libjvm.so... 2021-12-27T19:12:19.867280034Z pzexe: executing "java -classpath pzexe.jar -Djava.library.path=. zombie.pzexe" 2021-12-27T19:12:19.867281524Z pzexe.java: loading shared library "pzexe_jni64" 2021-12-27T19:12:19.867282984Z JVM=/home/steam/ZomboidDedicatedServer/jre64/lib/server/libjvm.so 2021-12-27T19:12:19.867284324Z pxexe: /proc/self/exe=/home/steam/ZomboidDedicatedServer/ProjectZomboid64 2021-12-27T19:12:19.867285654Z pzexe config file: /home/steam/ZomboidDedicatedServer/ProjectZomboid64.json 2021-12-27T19:12:19.867286934Z pzexe: mainClass: zombie/network/GameServer 2021-12-27T19:12:19.867289424Z pzexe: classpath: -Djava.class.path=java/.:java/istack-commons-runtime.jar:java/jassimp.jar:java/javacord-2.0.17-shaded.jar:java/javax.activation-api.jar:java/jaxb-api.jar:java/jaxb-runtime.jar:java/lwjgl.jar:java/lwjgl-natives-linux.jar:java/lwjgl-glfw.jar:java/lwjgl-glfw-natives-linux.jar:java/lwjgl-jemalloc.jar:java/lwjgl-jemalloc-natives-linux.jar:java/lwjgl-opengl.jar:java/lwjgl-opengl-natives-linux.jar:java/lwjgl_util.jar:java/sqlite-jdbc-3.27.2.1.jar:java/trove-3.0.3.jar:java/uncommons-maths-1.2.3.jar 2021-12-27T19:12:19.867292204Z pzexe: vmArg (json) 1: -Djava.awt.headless=true 2021-12-27T19:12:19.867293544Z pzexe: vmArg (json) 2: -Xms2048m 2021-12-27T19:12:19.867294844Z pzexe: vmArg (json) 3: -Xmx6144m # <-- JVM Max RAM set to 6 GiB 2021-12-27T19:12:19.867296104Z pzexe: vmArg (json) 4: -Dzomboid.steam=1 2021-12-27T19:12:19.867297384Z pzexe: vmArg (json) 5: -Dzomboid.znetlog=1 2021-12-27T19:12:19.867298704Z pzexe: vmArg (json) 6: -Djava.library.path=linux64/:natives/ 2021-12-27T19:12:19.867299954Z pzexe: vmArg (json) 7: -Djava.security.egd=file:/dev/urandom 2021-12-27T19:12:19.867301214Z pzexe: vmArg (json) 8: -XX:+UseZGC 2021-12-27T19:12:19.867302484Z pzexe: vmArg (json) 9: -XX:-OmitStackTraceInFastThrow 2021-12-27T19:12:19.867303784Z pzexe: using jvm "/home/steam/ZomboidDedicatedServer/jre64/lib/server/libjvm.so" 2021-12-27T19:12:20.022810780Z DEBUG: General , 1640632340001> 12,181,218> LoggerManager.init > Initializing... 2021-12-27T19:12:20.041868979Z LOG : General , 1640632340041> 12,181,248> cachedir set to "/home/steam/Zomboid" I have also verified that in the above configuration, the server can happily exceed the 2GiB RAM limit. I was informed that a "logged in" Steam user downloads a different `start-server.sh` file to the one that a dedicated server receives. I believe that a user hosting the server from within the game (non-dedicated) receives the following `start-server.sh`: #!/bin/bash INSTDIR="`dirname $0`" ; cd "${INSTDIR}" ; INSTDIR="`pwd`" JARPATH="./:./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-linux.jar:./lwjgl-glfw.jar:./lwjgl-glfw-natives-linux.jar:./lwj> if "${INSTDIR}/jre64/bin/java" -version > /dev/null 2>&1; then echo "64-bit java detected" export PATH="${INSTDIR}/jre64/bin:$PATH" export LD_LIBRARY_PATH="${INSTDIR}/linux64:${INSTDIR}:${INSTDIR}/jre64/lib/amd64:${LD_LIBRARY_PATH}" JSIG="libjsig.so" LD_PRELOAD="${LD_PRELOAD}:${JSIG}" "${INSTDIR}/jre64/bin/java" \ -cp "${JARPATH}" -Djava.awt.headless=true \ -Xms2048m -Xmx2048m -XX:+UseZGC \ -Dzomboid.steam=1 -Dzomboid.znetlog=1 \ -Djava.library.path=linux64/:./ \ -XX:-OmitStackTraceInFastThrow -Djava.security.egd=file:/dev/urandom \ zombie/network/GameServer "$@" elif "${INSTDIR}/jre/bin/java" -client -version > /dev/null 2>&1; then echo "32-bit java detected" export PATH="${INSTDIR}/jre/bin:$PATH" export LD_LIBRARY_PATH="${INSTDIR}/linux32:${INSTDIR}:${INSTDIR}/jre/lib/i386:${LD_LIBRARY_PATH}" JSIG="libjsig.so" LD_PRELOAD="${LD_PRELOAD}:${JSIG}" "${INSTDIR}/jre/bin/java" -client \ -cp "${JARPATH}" -Djava.awt.headless=true \ -Xms768m -Xmx768m \ -Dzomboid.steam=0 -Dzomboid.znetlog=1 \ -Djava.library.path=linux32/:./ \ -XX:-OmitStackTraceInFastThrow -Djava.security.egd=file:/dev/urandom \ zombie/network/GameServer "$@" else echo "couldn't determine 32/64 bit of java" fi exit 0 This is quite different to the one I am served on the `public` branch. Can you investigate whether "logged in" Steam users hosting non-dedicated servers are being distributed different files to dedicated servers downloading using the 'Steam anonymous user'? aaa
  5. Version: Legacy41_61 Multiplayer game. Dedicated Server. • No mods. I was unable to get map coordinates. Connection with debug as non-admin was blocked. Reproduction steps: Join any server. Just move to a direction non-stop. You will be seeing black border, you can't go past it, and it won't go away. Logs.zip
  6. It would be awesome if we had different colours of flare guns (red- green- maybe yellow that kinda) to pinpoint our location to our friends to group up, or just give a certain kind of signal and to use as a light source for a few minutes (10-20 in game minutes maybe?) , they could shimmer on the relevant 4 edges of the screen in certain colours to show where they are originating from or a simple icon on top of players head similar to foraging. Or at least have a few throwable flares to light up the night at urgent moments. And maybe invite some shamblers for dinner... Also why cant we use car batteries as a makeshift source for player hand-made lamps on pillars? I would love an option like this instead of batteries that last 5a few hours
  7. Is there a way to change the zombies spawn settings in a game that has already started? or do I have to restart the world? This will not affect anything? I want to change the Zombie spawns in a coop game so idk
  8. Hello! Not sure how to start this post. Before 41.61 was released, multiplayer was running smoothly for us (We are a group of 7 people, soon 9, if that changes anything.), no issues with lag, ping or anything at all. When 41.61 dropped, none of my friends could connect to my server, we ended up going back to 41.60 but it didn't fix anything; they still couldn't log in and when they finally could, the ping skyrockted and most of the times the places I saw them on my screen didn't match the places they actually were. My other friend tried hosting, this time everyone could join and things went smoothly for them, for some reason I could join them but no one would be able to see me, I couldn't interact with them nor zombies; in fact I could kill zombies but they didn't seem to react to me at all. (Also I could hit my friends but they didn't get damage nor any animation for the hits.) We tried everything, using default settings, no mods, switching back and forth with different versions (41.60, 41.61 and 41.62) but none of them seemed to work; is it my computer? Is my internet just bad? X_X
  9. sometimes Zombies spawning with same texture like twins this happends already with three or four same textures, clothes and loot. Server Setup: - Intel Core i7 - 9700 - 64 Gb Memory - NVME SSDs Zombie Sandbox Settings on Server ZombieLore = { Speed = 3, Strength = 3, Toughness = 3, Transmission = 1, Mortality = 3, Reanimate = 4, Cognition = 3, CrawlUnderVehicle = 1, Memory = 2, Decomp = 1, Sight = 2, Hearing = 2, Smell = 2, ThumpNoChasing = false, ThumpOnConstruction = true, ActiveOnly = 1, TriggerHouseAlarm = false, ZombiesDragDown = false, ZombiesFenceLunge = false, }, ZombieConfig = { PopulationMultiplier = 1.0, PopulationStartMultiplier = 1.0, PopulationPeakMultiplier = 1.5, PopulationPeakDay = 28, RespawnHours = 48.0, RespawnUnseenHours = 0.0, RespawnMultiplier = 0.0, RedistributeHours = 12.0, FollowSoundDistance = 100, RallyGroupSize = 20, RallyTravelDistance = 20, RallyGroupSeparation = 15, RallyGroupRadius = 3, }, ServerSettings.ini PingFrequency=10 PingLimit=400 PhysicsDelay=500 ZombieUpdateMaxHighPriority=150 ZombieUpdateDelta=0.5 ZombieUpdateRadiusLowPriority=90.0 ZombieUpdateRadiusHighPriority=20.0 Start Command: ./start-server.sh -servername start-server.sh -Xms12G -Xmx12G -servername Hirntot Server usage while players on the Server: CPU round about 6-12% Memory Usage is between 4 - 7 GB Good Job sofar happy to see more
  10. I'm hosting a game for 4 friends, not a dedicated server. Food Duplication: One person stayed behind to cook, one person stayed behind to eat the food when it was done being cooked. The other two of us were away, looting The cook made the food, and gave it to the person who intended to eat it. He ate the food, and the other two came back. One opened the stove and found an uncooked version of the food, and the other opened the stove and found a cooked version of the food. Both are removable from the oven, both are edible and provide the benefits from the food to the player who eats it, and if it is placed on the ground it can be picked up and eaten by other players. Attached are pictures of the two perspectives There was also an issue with the sound of cooking food bugging out and duplicating, never ending for all of us on the server despite the stove being off and nothing being in the oven for anyone. I have a suspicion that the stove duplicated somehow, but I have no way to test currently. I'll edit/add a comment if I manage to do so, but a restart of the server fixed the issue. If this doesn't repeat, I'll also add an edit/comment to clarify hopefully tomorrow. Observations: Zombie attention seems odd sometimes. They'll pace back and forth as if they're attempting to approach something not within their path finding ability to approach, and they'll ignore a player approaching them as if their "aggro" is on someone else. Is there a way I can see and confirm this? Other players seem to jump around and stand in odd places, especially when relating to doors, windows, and hop-able fences. It's as if the door opens/closes too quick for an observer to see them pass through it properly, but the player passing through the doorways has no issue. I've also found that people can appear to be falling from windows for a split second, or appear to be running outside of a building despite actually being inside. Nothing that seems game-breaking by any means, but confusing on occasion There was a fairly amusing bug where one player was constantly stomping and teleporting from all observer's perspectives until they attacked something again, as if it needed an update to the animation state Haven't tested cars yet, but that's a project for tomorrow as well. I'll likely edit/comment with anything new on those as well
  11. Every time when i try to connect in a coop server, my account resets but the save still in the saves folder. but when i try to enter in the same server (print below), still resetting the account, it's being a very annoying experience. When i played Remote Play in a Coop Server, I lost both characters, and have some bugs (Player 1 can't drive, Player 2 can't transfers items, etc)
  12. FULL FIX GUIDE https://steamcommunity.com/sharedfiles/filedetails/?id=2681173441 ------------------------------------------------------------------------------------------------ It happened twice now. I got my server up, fully modded, spent some hours in it, until suddenly, mods get updated on my client when a new version is released on the workshop, but it seems the server won't react the same way. Then, the typical error pops up whenever I try to boot the server after updating: "Workshop item version different than server's", which means the server is outdated. So here I am, trying to figure out a way for the server to "force" the update on these mods. It's truly a pain in the ass. P.S.: Yes, I've already tried wiping out all PZ workshop files from my PC and also unsuscribing/resuscribing to them. Like I said, it's not a client problem, but a server's one.
  13. Hello ! How make challenge server ? Build 32.6 have new challenges. How I can make a server, with this new challenges ? Please ! :< I must play with friends xD Please, help :c (Perfect English lv.100)
  14. I had to delete my lua files and uninstall my game to be able to get back to build 40, now it won"t let me join my friends private server and now I get this message. File does not exist on the client: media/scripts/Alchemy.txt What should I do?
  15. Hello, I am trying to host a multiplayer game for two, unfortunately the message in title of the post prevents me from doing just that. I have browsed through all threads on this topic but didn't find a working solution. I have uninstalled Avast with the dedicated tool. I experimented with RAM allocation for the server. I have restarted PC and reinstalled the game from scratch. Nothing helped. I am attaching all the logs I could find in my folder. In some of the threads devs called for other logs, which apparently don't even generate. I'm wondering if what I upload could be enough for someone to propose a solution I haven't tried. Cheers. console.txt server-console.txt coop-console.txt
  16. So I've searched through the suggestions and planned features, and I can't find anyone else who had an idea like this, so... Here's my suggestion. Skill Internships! That's right... An internship is where one learns professional skills working at a company. So what the H would a Skill Internship be and how does it apply to Zomboid? Okay, so now we know how it works... But... We already have recipe mags. Why would this ever be useful? Say you've searched Enigma Books and looted every house in West Point, and you still haven't found that darned How to operate generators magazine! Or maybe you're late game and all of these magazines have been scattered or used as fuel for fires by other players! Or you don't even know how to read in the FIRST place! Poor, illiterate child... Well, you're just out of luck then survivor! But not with internships! Internships make co-operation in the apocalypse even more meaningful, and the late game more dynamic. This could even potentially apply to NPCs in the future! That's my idea. Feel free to let me know what you think. It may not be much, but I think it's an interesting prospect. Thanks for reading!
  17. So I belong to a group of players that have been following Project Zomboid's development for a good while now and we love the game. We've played similar Zombie games in roleplay settings such as DayZ servers that are whitelisted and a few other games. We are interested in attempting something similar in Project Zomboid once IWBUMS is stable enough to be released. I guess my biggest question is there any interest in such a server? If there is I'd like to start working with people to setup an ideal server for everyone that encompasses rules, etc. Thanks for taking the time to read.
  18. Hi. I'm thinking about the creation of a mod for our roleplay PZ server : an icon showing on the character while its player is typing something in local chat. Being aware that another player is currently typing could be very useful on a roleplay server. I'm looking for solutions, as no Lua event is linked to this specific situation. As for now, I have tried to simply capture the "OnKeyPressed" event for the "Return" key (I know it's not either an elegant or a pro approach as keybinding could change.) But I can't even manage to capture the event... Is the return key out of "OnKeyPressed" range ? What am I doing wrong ? My current test is : -- If player(0) press "ENTER" key, log it and say it local function typingIconShow(_keyPressed) local key = _keyPressed; -- Store the parameter in a local variable. print(key); -- Prints the pressed key to the console. -- We test if the correct key is pressed. local player = getSpecificPlayer(0); if key == 13 then print('TYPINGICON MOD - RETURN key hit !'); player:Say("I press the RETURN key !"); else print('TYPINGICON MOD - '..key..' key hit !'); player:Say("I press the "..key.." key !"); end end -- Register the function to key pressed event Events.OnKeyPressed.Add(typingIconShow); Current results : the mod is loaded, but no output, nor in game nor in the console (I tested it by hosting a test multiplayer game). I'm also wondering... How to get the "typing icon" to appear on other players' client ? I mean, which mechanic should I use to place a small icon on the typing player character and make it visible for every other players ? Does anyone can help me please ?
  19. we having some trouble when playing MP in PZ B41 the connection from me to the game is bad and some player are not having a controler to meet the requirement for playing MP on B41 so im suggesting that adding MP work for 4 player that have a keyboard and mouse
  20. Hi all, Perhaps this should go in the "small suggestions" topic, not sure how small this is... feel free to move it there if necessary. I find it a bit limiting in how the admin of a server (being the person to maintain order, among other things) still has a cone of vision when all the admin powers are active, thereby easily losing sight of other players after teleporting towards them. Would it be reasonable to request an option where he can see all the angles, so 360 degrees around him?
  21. I am starting a server and am wondering if it is possible to set zones for specific things, like pvp, no building, admin only, no looting, periodic reset, etc. Is there an existing way to do this, or would it require custom modding? I have seen similar features in some of the servers I joined and would like to add it to my own. Thanks
  22. Hello, I couldn't find a similar bug report so I decided to post one. When in Multiplayer, two players can attempt the same action (ex: disassembling the same door). The actions will both complete. I will go back to that post to add a video when I have the opportunity to play again. How to reproduce: Find a friend to play with Have you or your friend host a game (I think any settings should be able to reproduce bug) Start disassembling a door Have your friend disassemble the same door Both actions should complete You know have disassembled the same door twice
  23. So I have some ideas for some multiplayer server mods that I would like to see, and am willing to try coding, but from what I gather, modding has limited scope to effect the base game? If anyone has any opinions of whether these are feasible or not, please lemme know? Mod Ideas: 1) A mod that makes safehouse owners able to individually set their safehouse settings to allow tresspassers and/or looters. For guests, businesses, rp. 2) A mod that allows, for servers that don't display usernames, faction members to see the usernames of fellow faction members. 2a) Additionally, if the mod allowed two faction owners to mutually set it to that their member faction names or tags display to members of both factions. For alliances and declared warfare. 3) A mod that allows admin to lay down zones, similar to PVP exclusion zones, that disallow hotwiring, vehicle window breaking, and accessing the mechanics interface unless the character ha sthe key for the vehicle on them. This is to allow people to use safezones, trade hubs, w/o getting their cars stolen or messed with. 4) A mod that would would integrate with a discord bot so that a discord channel would be broadcast on on eof the radio stations; and that player broadcasts on the same radio channel would appear in the discord channel. This is to allow immersive integration of discord with an in-game interface while also making radios more useful. 4b) Ideally, being able to integrate multiple discord channels with multiple radio channels. I've started looking at the java and lua code, but if anyone know if any of the ideas are impossible OR knows of any examples to help me write them please lemme know? thanks!
  24. EDIT: Found fix for this issue! My friend turned off 'Double size textures' option, we restarted the game and when we entered the server he could see snow on ground as well Hi, I am hosting a P2P server for my friend and I (version 40.43). When it snows we both see snow falling and trees being covered in it BUT only I can see the snow covering the ground, he can't. For him the ground looks normal. Could it be because of a certain setting, or is this a bug? He has tried disconnecting and connecting back again. We even tried restarting the server and turning Post-processing on and off. Still nothing. Also, when we are indoors we can see the rain/snow falling outside even though we're not watching trough the windows at that time. It feels like we're on a spaceship, flying trough the stars, kinda messes up with our eyesight, making us dizzy.
  25. Hi all, we are back looking for new survivors to join our famous PvE server based in the EU. See below for details; Server Join Details; Server Name - M700N's PvE Server 2019 | https://discord.gg/pUXV9pp Mods Required - https://steamcommunity.com/sharedfiles/filedetails/?id=1421254188 IP Address - 80.229.163.78 Port - 16300 Do not build in commercial areas, as they are reset on a monthly basis. You will be able to claim a Safehouse after 1 day of survival and you will be able to create a faction after 2 days. 1 day is 2 hours real-time. We will also be soon holding some more Survival Night events, where you will spawn into a different dedicated server than the above one and be presented at a load up point. You will then have 10 minutes to gather weapons, ammo and supplies, before being teleported to a random building and there you will have to all work together to defend and survive waves of zeds set upon you. See you all there soon. M700N
×
×
  • Create New...