Page MenuHomeFeedback Tracker

DayZ ModdingProject
ActivePublic

Watchers

  • This project does not have any watchers.

Details

Description

Space for mod related issues

Recent Activity

Today

mdc added a comment to T180931: Request for Information on Link<Class T> / OLinkT.

Hi, please see Class Template Example (for Arma Reforger though, but it would still give you a good idea)
Cheers

Mon, May 13, 6:06 PM · DayZ Modding, DayZ
LouMontana added a comment to T180931: Request for Information on Link<Class T> / OLinkT.

Hi, please see Class Template Example (for Arma Reforger though, but it would still give you a good idea)
Cheers

Mon, May 13, 4:34 PM · DayZ Modding, DayZ
Geez changed the status of T179707: Unexpected behavior of FindFile() on Linux from Assigned to Confirmed Internally.
Mon, May 13, 1:12 PM · DayZ Modding, DayZ
Geez changed the status of T181033: ScriptReadWriteContext has arbitrary buffer limit from New to Assigned.
Mon, May 13, 12:30 PM · DayZ Modding, DayZ
Geez closed T180692: Nested Items Behaviour Non-Configurable as Resolved.

Resolved for the 1.25 stable update.
Regards,
Geez

Mon, May 13, 12:22 PM · DayZ Modding, DayZ

Fri, May 10

InclementDab added a comment to T181033: ScriptReadWriteContext has arbitrary buffer limit.

This will be used to copy additional data from object to object. I have a serializeablebase class that exists in DF that gets used VERY constantly. Often data will exceed this limit, and being able to copy data from point to point is critical for something like trader (weapons alone is 10kb).

Fri, May 10, 9:26 PM · DayZ Modding, DayZ
InclementDab created T181033: ScriptReadWriteContext has arbitrary buffer limit.
Fri, May 10, 8:12 PM · DayZ Modding, DayZ
ntepup updated subscribers of T180950: Server Launch Parameters.

@Geez bot or spam post above.

Fri, May 10, 3:07 PM · DayZ Modding, DayZ
clara16720 added a comment to T180950: Server Launch Parameters.
Fri, May 10, 10:16 AM · DayZ Modding, DayZ

Thu, May 9

Geez changed the status of T180802: 1.25.157961 - Calling SetDirection on server does not synchronize with client from Awaiting internal Testing to Confirmed Internally.
Thu, May 9, 10:58 AM · DayZ Modding, DayZ
Geez changed the status of T181004: SetLooping slows down VideoWidget from New to Assigned.
Thu, May 9, 10:14 AM · DayZ Modding, DayZ

Wed, May 8

DrZiLLo created T181004: SetLooping slows down VideoWidget.
Wed, May 8, 10:00 PM · DayZ Modding, DayZ

Mon, May 6

cdatakill added a comment to T180950: Server Launch Parameters.

!

Mon, May 6, 8:06 PM · DayZ Modding, DayZ
Geez changed the status of T180931: Request for Information on Link<Class T> / OLinkT from New to Feedback.
Mon, May 6, 10:54 AM · DayZ Modding, DayZ
Geez changed the status of T180950: Server Launch Parameters from New to Feedback.
Mon, May 6, 10:45 AM · DayZ Modding, DayZ

Sun, May 5

OfficialWardog renamed T180950: Server Launch Parameters from Launch Parameters to Server Launch Parameters.
Sun, May 5, 8:41 PM · DayZ Modding, DayZ
OfficialWardog created T180950: Server Launch Parameters.
Sun, May 5, 8:41 PM · DayZ Modding, DayZ
nlaak added a comment to T179349: does not work properly fuction ForceStance (STANCEIDX_RAISEDERECT or STANCEIDX_RAISEDCROUCH or STANCEIDX_RAISEDPRONE) class HumanCommandMove .

Hello everyone.
Sounds like what you want to be using is HumanInputController.OverrideRaise. Here is some example code that works:

modded class PlayerBase
{
	override void CommandHandler(float pDt, int pCurrentCommandID, bool pCurrentCommandFinished)
	{
		HumanInputController hic = GetInputController();

		float movementSpeed;
		vector movementDirection;
		hic.GetMovement(movementSpeed, movementDirection);

		// Only raise if player is moving
		if (movementSpeed > 0)
		{
			hic.OverrideRaise(HumanInputControllerOverrideType.ONE_FRAME, true);
		}

		super.CommandHandler(pDt, pCurrentCommandID, pCurrentCommandFinished);
	}
}
Sun, May 5, 1:22 AM · DayZ Modding, DayZ

Sat, May 4

mdc created T180931: Request for Information on Link<Class T> / OLinkT.
Sat, May 4, 6:36 PM · DayZ Modding, DayZ
Hunterz added a comment to T180871: AnimNodeBlendTAdd in animgraph not works for infected simulation in game.

Looks like it should work. I found that node type in infected animgraph. It looks like problem is I am trying use IK anim as additive (want have modified fingers). I apologize, ticket can be closed.

Sat, May 4, 7:37 AM · DayZ Modding, DayZ

Fri, May 3

Geez changed the status of T180871: AnimNodeBlendTAdd in animgraph not works for infected simulation in game from New to Feedback.
Fri, May 3, 11:15 AM · DayZ Modding, DayZ
Geez changed the status of T180872: Registering emotes of player as anim instance from New to Feedback.
Fri, May 3, 11:14 AM · DayZ Modding, DayZ
Geez changed the status of T180883: DayZ Experimental Tools - installscript.vdf from New to Feedback.
Fri, May 3, 11:11 AM · DayZ Modding, DayZ
Geez closed T180598: Minidump Analysis - Nonspecific CTD as Resolved.
Fri, May 3, 9:58 AM · DayZ Modding, DayZ

Thu, May 2

VinGal created T180883: DayZ Experimental Tools - installscript.vdf.
Thu, May 2, 3:06 PM · DayZ Modding, DayZ
Hunterz created T180872: Registering emotes of player as anim instance.
Thu, May 2, 10:13 AM · DayZ Modding, DayZ
Hunterz created T180871: AnimNodeBlendTAdd in animgraph not works for infected simulation in game.
Thu, May 2, 10:00 AM · DayZ Modding, DayZ
mdc added a comment to T180598: Minidump Analysis - Nonspecific CTD.

Just to specify:

This crash is caused by the dynamic lights with shadows. If one creates a light source (with shadows on) with too big of a radius, the client may crash depending on how complex the surroundings may be. We are aware of the crash, but sadly, lack solid repro at the moment.

Thu, May 2, 8:47 AM · DayZ Modding, DayZ
mdc added a comment to T170466: Server Crash Related to "Weapon Slings".

Looking to close up some of my tickets, and figured out the cause of this specific issue.

Thu, May 2, 8:47 AM · DayZ Modding, DayZ

Wed, May 1

VanTheMan added a comment to T177818: A request from all Modders.

There is ways to see binarized P3ds, as a text form from Mikeros Eliteness or as complete debin tool, i dont see a reason why not to use them for learning purpose. The tools arent hard to find (simple google search found it) if you want to invest a time in modding.

Wed, May 1, 1:06 PM · DayZ Modding, DayZ
RedFalcon added a comment to T177818: A request from all Modders.

Yes such things are possible and Eliteness does get you part of the way, but the point is that debin tools are not actually allowed (despite their availability). The main thrust here is to make such things legit and sanctioned rather than a "don't ask, don't tell" policy.

Wed, May 1, 8:38 AM · DayZ Modding, DayZ
d146ales added a comment to T177818: A request from all Modders.

There is ways to see binarized P3ds, as a text form from Mikeros Eliteness or as complete debin tool, i dont see a reason why not to use them for learning purpose. The tools arent hard to find (simple google search found it) if you want to invest a time in modding.

Wed, May 1, 7:57 AM · DayZ Modding, DayZ

Tue, Apr 30

Helkhiana added a comment to T177818: A request from all Modders.

There are all kinds of things we can learn from unbinarized models. One example is memory points positions.
A lot can be learned at beginning by just mimicking vanilla even if it might not all be best practices. Those get improved in time as you learn and discover things. That's how i started with modding. Mimicked vanilla and other mods and improved over time after understanding what I'm doing.

Tue, Apr 30, 5:14 PM · DayZ Modding, DayZ
MilesDownshur added a comment to T177818: A request from all Modders.

"3.Modders can learn from vanilla models about good practices..." you think of them way too high dude ;) Believe me, not everything is so shiny in that town )

Tue, Apr 30, 4:59 PM · DayZ Modding, DayZ
Geez added a comment to T180791: Server Crash, need help.

We suggest to try disabling one mod at once to try to find the one that is faulty.

Tue, Apr 30, 4:32 PM · DayZ Modding, DayZ
intenso2891 added a comment to T180791: Server Crash, need help.

in this case, how can I find the cause of the server crashes? they weren't there, then they appeared. Perhaps there are some tools or ways to identify the cause?

Tue, Apr 30, 4:29 PM · DayZ Modding, DayZ
Geez changed the status of T177818: A request from all Modders from Reviewed to Feedback.

Hello everyone.
Currently we do not plan to provide the unbinarized models. This might possibly change in the future.

Tue, Apr 30, 11:44 AM · DayZ Modding, DayZ
Helkhiana added a comment to T177818: A request from all Modders.

It has been almost 5 months since the ticket has been made. Asking for an update close to half of year is not unreasonable.
I am trying to open a discussion between DayZ devs and modders.

Tue, Apr 30, 10:26 AM · DayZ Modding, DayZ
Hunterz added a comment to T177818: A request from all Modders.

I am very pesimistic with this ticket. It will open pandora's box if will be not refused. And honestly making pressure for answer is not good way in my opinion.

Tue, Apr 30, 10:13 AM · DayZ Modding, DayZ
Geez added a comment to T177818: A request from all Modders.

Hello Helkhiana.
Unfortunately no new information I can share.

Tue, Apr 30, 10:08 AM · DayZ Modding, DayZ

Mon, Apr 29

Helkhiana added a comment to T177818: A request from all Modders.

Hello @Geez Sorry for chasing this. It would be nice to get an update on where we are with this request.

Mon, Apr 29, 9:22 PM · DayZ Modding, DayZ
Geez changed the status of T180791: Server Crash, need help from New to Reviewed.

Hello intenso2891.
These crashes are related to the modded content you are running. Unfortunately there is no other information we can decipher from the dumps.
Regards,
Geez

Mon, Apr 29, 4:03 PM · DayZ Modding, DayZ
Geez changed the status of T180756: [bug] The door of the car tent cannot be detected from New to Awaiting internal Testing.
Mon, Apr 29, 2:01 PM · DayZ Modding, DayZ
Geez changed the status of T180774: SendLogoutTime from New to Feedback.
Mon, Apr 29, 1:56 PM · DayZ Modding, DayZ
Geez changed the status of T180802: 1.25.157961 - Calling SetDirection on server does not synchronize with client from New to Awaiting internal Testing.
Mon, Apr 29, 1:45 PM · DayZ Modding, DayZ

Sun, Apr 28

tjensen created T180802: 1.25.157961 - Calling SetDirection on server does not synchronize with client.
Sun, Apr 28, 8:18 PM · DayZ Modding, DayZ
intenso2891 created T180791: Server Crash, need help.
Sun, Apr 28, 11:37 AM · DayZ Modding, DayZ

Sat, Apr 27

TrueDolphin updated the task description for T180774: SendLogoutTime.
Sat, Apr 27, 2:41 PM · DayZ Modding, DayZ
TrueDolphin created T180774: SendLogoutTime.
Sat, Apr 27, 2:38 PM · DayZ Modding, DayZ

Fri, Apr 26

Dcrclub created T180756: [bug] The door of the car tent cannot be detected.
Fri, Apr 26, 7:01 PM · DayZ Modding, DayZ