Page MenuHomeFeedback Tracker
Feed Advanced Search

Sep 18 2019

Grim created T144856: Mouse hover effect broken since 1.05 Hotfix.
Sep 18 2019, 5:57 AM · DayZ Modding, DayZ
LBmaster added a comment to T144773: PlayerIdentity returning values of other players / invalid data.

I had some hard hours trying to figure out the Issue causing this Problem. It's happening when you want to use the PlainId (maybe other values too) of the Player and not save the PlainId in a variable first ! I fixed I by always using string steamid = player.GetIdentity().GetPlainId(); and then compare those values ! I did not test if this is enough, but what should be enough is this code:

Sep 18 2019, 12:31 AM · DayZ Modding, DayZ

Sep 17 2019

triptomic added a comment to T144553: DayZ Game Events.

+1

Sep 17 2019, 11:02 PM · DayZ Modding, DayZ
Mario1ups added a comment to T144553: DayZ Game Events.

+1

Sep 17 2019, 5:57 AM · DayZ Modding, DayZ
sniperM4A added a comment to T144553: DayZ Game Events.

+1

Sep 17 2019, 5:28 AM · DayZ Modding, DayZ
jspears2675 added a comment to T144553: DayZ Game Events.
Sep 17 2019, 4:55 AM · DayZ Modding, DayZ
EZ added a comment to T144553: DayZ Game Events.

+1

Sep 17 2019, 4:48 AM · DayZ Modding, DayZ
woodstock13 added a comment to T144553: DayZ Game Events.

+1

Sep 17 2019, 2:50 AM · DayZ Modding, DayZ

Sep 16 2019

AXEL7 added a comment to T144553: DayZ Game Events.

+1

Sep 16 2019, 10:17 PM · DayZ Modding, DayZ
Geez changed the status of T143709: ToAscii function isn't working from New to Assigned.
Sep 16 2019, 2:59 PM · DayZ Modding, DayZ
Geez changed the status of T144773: PlayerIdentity returning values of other players / invalid data from New to Assigned.
Sep 16 2019, 2:35 PM · DayZ Modding, DayZ
Geez changed the status of T144553: DayZ Game Events from New to Assigned.
Sep 16 2019, 1:34 PM · DayZ Modding, DayZ
dim added a comment to T144553: DayZ Game Events.

+1

Sep 16 2019, 12:24 AM · DayZ Modding, DayZ

Sep 15 2019

Grim added a comment to T144773: PlayerIdentity returning values of other players / invalid data.

Line that causes the issue is

Sep 15 2019, 2:05 PM · DayZ Modding, DayZ
Jacob_Mango added a comment to T144773: PlayerIdentity returning values of other players / invalid data.

pls fix :)

Sep 15 2019, 12:58 PM · DayZ Modding, DayZ
GrosTon1 added a comment to T144773: PlayerIdentity returning values of other players / invalid data.

pls fix :)

Sep 15 2019, 12:47 PM · DayZ Modding, DayZ
Thurston added a comment to T144773: PlayerIdentity returning values of other players / invalid data.

pls fix :)

Sep 15 2019, 12:19 PM · DayZ Modding, DayZ
ukulelekid713 added a comment to T144773: PlayerIdentity returning values of other players / invalid data.

pls fix :)

Sep 15 2019, 12:08 PM · DayZ Modding, DayZ
markkoky44 added a comment to T144773: PlayerIdentity returning values of other players / invalid data.

pls fix :)

Sep 15 2019, 12:04 PM · DayZ Modding, DayZ
Arkensor created T144773: PlayerIdentity returning values of other players / invalid data.
Sep 15 2019, 11:49 AM · DayZ Modding, DayZ

Sep 14 2019

ukulelekid713 updated subscribers of T144553: DayZ Game Events.

@Geez
Anything on this topic?

Sep 14 2019, 5:49 PM · DayZ Modding, DayZ
NiiRoZz updated the task description for T144749: REQUEST: Add a GetObjectTexture and GetObjectMaterial on object.
Sep 14 2019, 3:47 PM · DayZ Modding, DayZ
NiiRoZz created T144749: REQUEST: Add a GetObjectTexture and GetObjectMaterial on object.
Sep 14 2019, 3:45 PM · DayZ Modding, DayZ
NiiRoZz added a comment to T144678: RegisterNetSyncVariable on server side in PlayerBase class cause cuts and bleeding wihout blood loss for players who do not have client part of server mod.

Why you would register variable on server but on client, for sure this will make clients bleeding or anything related, a net sync variable should be client side and server side. If you are doing it only server side this will make a shift in bitstream and fucked up every other system using netsyncvar on the client.

Sep 14 2019, 12:13 PM · DayZ Modding, DayZ
borizz.k added a comment to T144678: RegisterNetSyncVariable on server side in PlayerBase class cause cuts and bleeding wihout blood loss for players who do not have client part of server mod.

NiioZz
If i use init() result the same
If i register and sync network variables on server and not register this variables on clients, clients bleeding

Sep 14 2019, 11:14 AM · DayZ Modding, DayZ
girthquake added a comment to T144553: DayZ Game Events.

+1

Sep 14 2019, 8:38 AM · DayZ Modding, DayZ

Sep 13 2019

NiiRoZz added a comment to T144678: RegisterNetSyncVariable on server side in PlayerBase class cause cuts and bleeding wihout blood loss for players who do not have client part of server mod.

In expansion we have multiple of registernetsync and never experienced this issue.

Sep 13 2019, 7:07 PM · DayZ Modding, DayZ
borizz.k added a comment to T144678: RegisterNetSyncVariable on server side in PlayerBase class cause cuts and bleeding wihout blood loss for players who do not have client part of server mod.

Dear Geez

Sep 13 2019, 2:57 PM · DayZ Modding, DayZ
Geez added a comment to T144678: RegisterNetSyncVariable on server side in PlayerBase class cause cuts and bleeding wihout blood loss for players who do not have client part of server mod.

void Init() has to be called in class constructor in order to initialize and register other synced variables. This is likely the reason for the broken bleeding and other issues besides.
Safest way to achieve this would be:
void PlayerBase()
{

Init();
RegisterNetSyncVariableBool("m_isAdmin");

}
This would ensure the new variable is registered after the original ones are, and avoid possible mismatch in variable indexing. Alternatively, you can just modify the void Init() function and add the synced variable at the end of the list there. Either approach should work

Sep 13 2019, 2:53 PM · DayZ Modding, DayZ
borizz.k added a comment to T144678: RegisterNetSyncVariable on server side in PlayerBase class cause cuts and bleeding wihout blood loss for players who do not have client part of server mod.

This is a constructor and cannot be override.
Attempting to call super.PlayerBase() cause an error

Sep 13 2019, 2:31 PM · DayZ Modding, DayZ
Geez added a comment to T144678: RegisterNetSyncVariable on server side in PlayerBase class cause cuts and bleeding wihout blood loss for players who do not have client part of server mod.
Sep 13 2019, 1:27 PM · DayZ Modding, DayZ
Jacob_Mango added a comment to T144678: RegisterNetSyncVariable on server side in PlayerBase class cause cuts and bleeding wihout blood loss for players who do not have client part of server mod.

-ignoreMod is not a planned feature IIRC so this will never be a problem.

Sep 13 2019, 11:59 AM · DayZ Modding, DayZ

Sep 12 2019

Geez changed the status of T144678: RegisterNetSyncVariable on server side in PlayerBase class cause cuts and bleeding wihout blood loss for players who do not have client part of server mod from New to Assigned.
Sep 12 2019, 2:51 PM · DayZ Modding, DayZ

Sep 11 2019

borizz.k edited Steps To Reproduce on T144678: RegisterNetSyncVariable on server side in PlayerBase class cause cuts and bleeding wihout blood loss for players who do not have client part of server mod.
Sep 11 2019, 8:46 PM · DayZ Modding, DayZ
borizz.k created T144678: RegisterNetSyncVariable on server side in PlayerBase class cause cuts and bleeding wihout blood loss for players who do not have client part of server mod.
Sep 11 2019, 8:46 PM · DayZ Modding, DayZ

Sep 10 2019

Stix90 added a comment to T144553: DayZ Game Events.

+1

Sep 10 2019, 8:48 PM · DayZ Modding, DayZ

Sep 9 2019

digiacomtech added a comment to T143930: GetWind() Vector Doesn't Appear to Match Cloud/Rain Movement....

Thank you for the response ... but I'm still unsure of the values returned by GetWind() as further testing shows inconsistent wind vectors based on smoke in the game.

Sep 9 2019, 10:19 PM · DayZ Modding, DayZ
S4MT3K added a comment to T144553: DayZ Game Events.

+1

Sep 9 2019, 9:00 PM · DayZ Modding, DayZ
Schorsch_GER added a comment to T144553: DayZ Game Events.

+1

Sep 9 2019, 7:41 PM · DayZ Modding, DayZ
Geez changed the status of T144601: Climbing: Accessing these variables for anything other than printing to the log will crash the game. from New to Acknowledged.
Sep 9 2019, 3:14 PM · DayZ Modding, DayZ
Jacob_Mango updated the task description for T144601: Climbing: Accessing these variables for anything other than printing to the log will crash the game..
Sep 9 2019, 1:27 PM · DayZ Modding, DayZ
Jacob_Mango created T144601: Climbing: Accessing these variables for anything other than printing to the log will crash the game..
Sep 9 2019, 1:26 PM · DayZ Modding, DayZ
Geez added a comment to T143930: GetWind() Vector Doesn't Appear to Match Cloud/Rain Movement....

Hello digiacomtech.

Sep 9 2019, 10:55 AM · DayZ Modding, DayZ
Tacklebait added a comment to T144553: DayZ Game Events.

+1

Sep 9 2019, 8:23 AM · DayZ Modding, DayZ
Hooty added a comment to T144553: DayZ Game Events.

+1

Sep 9 2019, 4:03 AM · DayZ Modding, DayZ

Sep 8 2019

Allantheking added a comment to T144499: Can't compile "World" script module! .

https://feedback.bistudio.com/T144430 check this ticket been assigned

Sep 8 2019, 11:16 PM · DayZ Modding, DayZ
borizz.k added a comment to T144499: Can't compile "World" script module! .

This a compiler error...
wry-hands programmers from bohemia broke the compiler ))))))))))))

Sep 8 2019, 10:38 PM · DayZ Modding, DayZ
The_Chicken added a comment to T144553: DayZ Game Events.

+1

Sep 8 2019, 4:23 PM · DayZ Modding, DayZ
Salutesh merged task T143558: Unable to load custom script module class 3_Game into Workbench is back into Restricted Maniphest Task.
Sep 8 2019, 11:37 AM · DayZ Modding, DayZ
ukulelekid713 added a comment to T144553: DayZ Game Events.

@Jacob_Mango Thank you, friend.

Sep 8 2019, 8:26 AM · DayZ Modding, DayZ
scorpy added a comment to T144553: DayZ Game Events.

+1

Sep 8 2019, 7:31 AM · DayZ Modding, DayZ
Jacob_Mango added a comment to T144553: DayZ Game Events.

"One of which was spawning the player in the ocean and godmoding him then providing his gear, and spawn position, and toggling god mod off. "

Sep 8 2019, 7:31 AM · DayZ Modding, DayZ
sanders.david added a comment to T144553: DayZ Game Events.

+1

Sep 8 2019, 6:27 AM · DayZ Modding, DayZ
lagtek13012 added a comment to T144553: DayZ Game Events.

+1

Sep 8 2019, 5:33 AM · DayZ Modding, DayZ
jaxx0rr added a comment to T144499: Can't compile "World" script module! .

please, someone at bistudio, for the love of everything that is good, can you add information about what MOD is failing to compile ??

Sep 8 2019, 5:21 AM · DayZ Modding, DayZ
nur381986 added a comment to T144553: DayZ Game Events.

+

Sep 8 2019, 5:06 AM · DayZ Modding, DayZ
thamos33 added a comment to T144553: DayZ Game Events.

+1

Sep 8 2019, 4:49 AM · DayZ Modding, DayZ
Drox added a member for DayZ Modding: Drox.
Sep 8 2019, 3:03 AM
RyanMoretti added a comment to T144553: DayZ Game Events.

+1

Sep 8 2019, 2:13 AM · DayZ Modding, DayZ
hzvfr1921 added a comment to T144553: DayZ Game Events.

+1

Sep 8 2019, 12:19 AM · DayZ Modding, DayZ
LowkeyF1re added a comment to T144553: DayZ Game Events.

+1

Sep 8 2019, 12:18 AM · DayZ Modding, DayZ
GrosTon1 added a comment to T144553: DayZ Game Events.

+1337

Sep 8 2019, 12:16 AM · DayZ Modding, DayZ
R3dRain added a comment to T144553: DayZ Game Events.

+1

Sep 8 2019, 12:02 AM · DayZ Modding, DayZ

Sep 7 2019

Complicity added a comment to T144553: DayZ Game Events.

+1

Sep 7 2019, 11:16 PM · DayZ Modding, DayZ
AKIITO added a comment to T144553: DayZ Game Events.

+1

Sep 7 2019, 11:05 PM · DayZ Modding, DayZ
Drox added a comment to T144553: DayZ Game Events.

+1

Sep 7 2019, 10:52 PM · DayZ Modding, DayZ
theclassifiedrebel added a comment to T144553: DayZ Game Events.

+1

Sep 7 2019, 10:51 PM · DayZ Modding, DayZ
Forcedown added a comment to T144553: DayZ Game Events.

+1

Sep 7 2019, 10:51 PM · DayZ Modding, DayZ
kombohead added a comment to T144553: DayZ Game Events.

+1

Sep 7 2019, 10:25 PM · DayZ Modding, DayZ
Turdle added a comment to T144553: DayZ Game Events.

+1

Sep 7 2019, 10:24 PM · DayZ Modding, DayZ
ukulelekid713 updated the task description for T144553: DayZ Game Events.
Sep 7 2019, 10:14 PM · DayZ Modding, DayZ
6IX added a comment to T144553: DayZ Game Events.

+1

Sep 7 2019, 10:13 PM · DayZ Modding, DayZ
d146ales added a comment to T144553: DayZ Game Events.

please we need spawn selection on our servers

Sep 7 2019, 10:09 PM · DayZ Modding, DayZ
MrSprinkles added a comment to T144553: DayZ Game Events.

+1

Sep 7 2019, 10:09 PM · DayZ Modding, DayZ
Scouqz added a comment to T144553: DayZ Game Events.

1+

Sep 7 2019, 10:02 PM · DayZ Modding, DayZ
Hardstyle96 added a comment to T144553: DayZ Game Events.

1+

Sep 7 2019, 9:46 PM · DayZ Modding, DayZ
thewerx added a comment to T144553: DayZ Game Events.

+1

Sep 7 2019, 9:44 PM · DayZ Modding, DayZ
claymax82 added a comment to T144553: DayZ Game Events.

+1

Sep 7 2019, 9:33 PM · DayZ Modding, DayZ
asorrycanadian added a comment to T144553: DayZ Game Events.

+1

Sep 7 2019, 9:19 PM · DayZ Modding, DayZ
martinezjosh809 added a comment to T144553: DayZ Game Events.

+1

Sep 7 2019, 9:19 PM · DayZ Modding, DayZ
MrTedNRW added a comment to T144553: DayZ Game Events.

1+

Sep 7 2019, 9:19 PM · DayZ Modding, DayZ
Simnenius added a comment to T144553: DayZ Game Events.

+1

Sep 7 2019, 9:18 PM · DayZ Modding, DayZ
sayingyourgoodbyes added a comment to T144553: DayZ Game Events.

+1

Sep 7 2019, 9:15 PM · DayZ Modding, DayZ
ukulelekid713 created T144553: DayZ Game Events.
Sep 7 2019, 9:07 PM · DayZ Modding, DayZ

Sep 6 2019

ukulelekid713 added a comment to T144499: Can't compile "World" script module! .

I've also received a bunch of bug reports for this, as well as the following:

Sep 6 2019, 11:54 PM · DayZ Modding, DayZ
borizz.k created T144499: Can't compile "World" script module! .
Sep 6 2019, 9:21 PM · DayZ Modding, DayZ
Unknown Object (User) added a comment to T143993: `attachTo` Function .

AddChild == attachTo

Sep 6 2019, 12:53 PM · DayZ Modding, DayZ

Sep 5 2019

borizz.k added a comment to T143957: Messages in chat from player logged as admin not intercepted on the server side in DayZ Experemental.

Please fix it
GetGame().ChatPlayer("message") (global message to all players connected to server) not works too (((

Sep 5 2019, 7:17 PM · DayZ Modding, DayZ
borizz.k created T144467: GetGame().ChatPlayer(Message) not works on server side since 1.05 update.
Sep 5 2019, 7:14 PM · DayZ Modding, DayZ
Geez added a comment to T143957: Messages in chat from player logged as admin not intercepted on the server side in DayZ Experemental.

Hello borizz.k
It appears that no messages are intercepted, not just the admin ones. We will look into the issue internally and will let you know once there is more information available.
Regards,
Geez

Sep 5 2019, 3:44 PM · DayZ Modding, DayZ
Geez closed T136562: JsonSerializer errors on blank lines as Resolved.
Sep 5 2019, 3:20 PM · DayZ Modding, DayZ

Sep 4 2019

digiacomtech added a comment to T143930: GetWind() Vector Doesn't Appear to Match Cloud/Rain Movement....

Thank you for the fast response and sorry if I did something wrong ... didn't realize that I could subscribe anyone to this ticket by creating a post to @ Geez .

Sep 4 2019, 6:56 PM · DayZ Modding, DayZ
Geez updated subscribers of T143930: GetWind() Vector Doesn't Appear to Match Cloud/Rain Movement....
Sep 4 2019, 3:57 PM · DayZ Modding, DayZ
Geez closed T143930: GetWind() Vector Doesn't Appear to Match Cloud/Rain Movement... as Resolved.

Hello digiacomtech.
The weather and environment corresponds correctly to the wind direction and speed. The issue is only with the clouds moving in an incorrect direction. We are aware of this issue and it is scheduled for a fix.
Regards,
Geez

Sep 4 2019, 3:56 PM · DayZ Modding, DayZ
Geez updated subscribers of T143930: GetWind() Vector Doesn't Appear to Match Cloud/Rain Movement....
Sep 4 2019, 3:55 PM · DayZ Modding, DayZ
Geez changed the status of T143930: GetWind() Vector Doesn't Appear to Match Cloud/Rain Movement... from New to Assigned.
Sep 4 2019, 11:16 AM · DayZ Modding, DayZ
Thurston added a member for DayZ Modding: Thurston.
Sep 4 2019, 10:12 AM
GrosTon1 added a comment to T143930: GetWind() Vector Doesn't Appear to Match Cloud/Rain Movement....

Please someone at BI disallow the ability to subscribe groups to tickets.

Sep 4 2019, 9:50 AM · DayZ Modding, DayZ
Arkensor added a comment to T143930: GetWind() Vector Doesn't Appear to Match Cloud/Rain Movement....

please do not subscribe other people to tickets by force. You sent notifications to all people that are on the feedback tracker and in any of the DayZ X groups.

Sep 4 2019, 8:27 AM · DayZ Modding, DayZ
digiacomtech updated subscribers of T143930: GetWind() Vector Doesn't Appear to Match Cloud/Rain Movement....

@Geez ... Any chance you can take a look at this?

Sep 4 2019, 4:19 AM · DayZ Modding, DayZ