Page MenuHomeFeedback Tracker
Feed Advanced Search

Jul 19 2021

borizz.k added a comment to T159664: Mod sequence and functions overrides non correct in 1.13.

Hi Geez
I make pbo for you tomorrow

Jul 19 2021, 8:46 PM · DayZ Modding, DayZ

Jul 15 2021

borizz.k edited Steps To Reproduce on T159664: Mod sequence and functions overrides non correct in 1.13.
Jul 15 2021, 4:16 PM · DayZ Modding, DayZ

Jul 14 2021

borizz.k added a comment to T159658: Calling super in function generate error - NULL pinter to instance!.

Native c++ side function GatGame() returns NULL....

Jul 14 2021, 10:53 PM · DayZ Modding, DayZ
borizz.k created T159664: Mod sequence and functions overrides non correct in 1.13.
Jul 14 2021, 7:10 PM · DayZ Modding, DayZ
borizz.k created T159658: Calling super in function generate error - NULL pinter to instance!.
Jul 14 2021, 4:24 PM · DayZ Modding, DayZ

Apr 29 2021

borizz.k edited Additional Information on T158151: Server engine cyclic call function OnEngineStop in class CarScript if car destroy.
Apr 29 2021, 8:38 AM · DayZ
borizz.k renamed T158151: Server engine cyclic call function OnEngineStop in class CarScript if car destroy from Server engine cyclic call function OnEngineStop in class CarScript at server start to Server engine cyclic call function OnEngineStop in class CarScript if car destroy.
Apr 29 2021, 6:51 AM · DayZ
borizz.k updated the task description for T158151: Server engine cyclic call function OnEngineStop in class CarScript if car destroy.
Apr 29 2021, 6:51 AM · DayZ

Apr 28 2021

borizz.k edited Steps To Reproduce on T158151: Server engine cyclic call function OnEngineStop in class CarScript if car destroy.
Apr 28 2021, 6:01 PM · DayZ
borizz.k created T158151: Server engine cyclic call function OnEngineStop in class CarScript if car destroy.
Apr 28 2021, 3:09 PM · DayZ

Apr 26 2021

borizz.k renamed T158104: Error spam in server log about cars damage zones. from Error spam in server log then attach/detach car radiator: to Error spam in server log about cars damage zones..
Apr 26 2021, 8:05 PM · DayZ
borizz.k created T158104: Error spam in server log about cars damage zones..
Apr 26 2021, 8:04 PM · DayZ

Feb 10 2021

borizz.k created T156699: Vehicles: Change materials on selections bug..
Feb 10 2021, 9:58 AM · DayZ Modding, DayZ

Dec 9 2020

borizz.k updated the task description for T155643: Static definitions not reads in mission scripts.
Dec 9 2020, 8:00 AM · DayZ Modding, DayZ
borizz.k created T155643: Static definitions not reads in mission scripts.
Dec 9 2020, 7:59 AM · DayZ Modding, DayZ

Oct 8 2020

borizz.k added a comment to T154054: Request for Enscript behavior confirmation.

interesting
double variable declaration
in class and in function
and no error?

Oct 8 2020, 11:16 AM · DayZ Modding, DayZ
borizz.k added a comment to T153135: SetAffectPathgraph and UpdatePathgraphRegionByObject not works in 1.08.

still not works...

Oct 8 2020, 11:16 AM · DayZ
borizz.k updated the task description for T154198: DayZPhysics.RayCastBullet crash server with no crashlog.
Oct 8 2020, 11:14 AM · DayZ Modding, DayZ
borizz.k created T154200: Player clones / phantoms on server..
Oct 8 2020, 11:13 AM · DayZ
borizz.k created T154198: DayZPhysics.RayCastBullet crash server with no crashlog.
Oct 8 2020, 11:13 AM · DayZ Modding, DayZ
borizz.k created T154199: CrewEntryWS sometimes returns zero position in Actions .
Oct 8 2020, 11:13 AM · DayZ Modding, DayZ

Sep 26 2020

borizz.k added a comment to T152125: Request: ClothingBase or Clothing to be moddable.

The issue has been fixed internally and the fix will appear in one of the future updates!

@borizz.k There has been no update since this was fixed. Be patient.

Sep 26 2020, 4:55 PM · DayZ Modding, DayZ
borizz.k added a comment to T152125: Request: ClothingBase or Clothing to be moddable.

@Geez
Mind sharing the solution?

Clothing has been split up into Clothing and Clothing_Base, Clothing extending Clothing_Base, Clothing class being moddable now.

Sep 26 2020, 2:35 PM · DayZ Modding, DayZ

Aug 7 2020

borizz.k created T153135: SetAffectPathgraph and UpdatePathgraphRegionByObject not works in 1.08.
Aug 7 2020, 10:35 AM · DayZ

Jul 22 2020

borizz.k renamed T152873: Any clothes and items such BackPacks, inherited from Clothes class wth items inside cant put in cars inventory from Any items wth items inside cant put in cars inventory to Any clothes and items such BackPacks, inherited from Clothes class wth items inside cant put in cars inventory.
Jul 22 2020, 12:17 PM · DayZ
borizz.k created T152873: Any clothes and items such BackPacks, inherited from Clothes class wth items inside cant put in cars inventory.
Jul 22 2020, 11:45 AM · DayZ

Jun 29 2020

borizz.k added a comment to T152071: If drop item while player stay on car, it falls to the ground under the car or in to textures of car under player in 1.08 Experemental.

Hello borizz.k and thank you for the report.
The items cannot be dropped on top of a vehicle due to a technical limitation and there is not an easy solution to this at the moment.
Regards,
Geez

How did it turn out to be complicated at a time when it worked well in 1.07?

This is due to the recent changes implemented in 1.08.

Jun 29 2020, 9:37 PM · DayZ

Jun 28 2020

borizz.k added a comment to T152071: If drop item while player stay on car, it falls to the ground under the car or in to textures of car under player in 1.08 Experemental.
modded class ItemBase extends InventoryItem
{
	
	override void EEItemLocationChanged(notnull InventoryLocation oldLoc, notnull InventoryLocation newLoc)
	{
		super.EEItemLocationChanged(oldLoc,newLoc);
		
		if (newLoc.GetType() == InventoryLocationType.GROUND)
		{
			if (oldLoc.GetParent())
			{
				PlayerBase player = PlayerBase.Cast(oldLoc.GetParent());
				if (player)
				{
					FixPositionIfDropOnCar(player);
				}
			}
		}
	}
Jun 28 2020, 1:04 PM · DayZ

Jun 27 2020

borizz.k added a comment to T152071: If drop item while player stay on car, it falls to the ground under the car or in to textures of car under player in 1.08 Experemental.
Jun 27 2020, 12:31 AM · DayZ

Jun 26 2020

borizz.k added a comment to T152071: If drop item while player stay on car, it falls to the ground under the car or in to textures of car under player in 1.08 Experemental.

Demonstration
If need, i can publish code (after corrections)

Jun 26 2020, 10:44 PM · DayZ
borizz.k added a comment to T152071: If drop item while player stay on car, it falls to the ground under the car or in to textures of car under player in 1.08 Experemental.

I fix it for 1.08 exp
resolve of this issue have two very easy ways

  1. In itemBase class (better way)
  2. In HandActionDrop class (only for drop by G key)
Jun 26 2020, 9:24 PM · DayZ
borizz.k added a comment to T151673: Offroad hatchback coDriver door is transparent (no textures) in 1.08.153.164.

In one of last Exp updates this issue is resolved
You can closse ticket
Thx!

Jun 26 2020, 5:21 PM · DayZ

Jun 25 2020

borizz.k added a comment to T152071: If drop item while player stay on car, it falls to the ground under the car or in to textures of car under player in 1.08 Experemental.


Zombies walks through cars

Jun 25 2020, 4:21 PM · DayZ

Jun 24 2020

borizz.k updated the task description for T152085: Strange lighting behavior if fireplace in car has fire.
Jun 24 2020, 11:13 PM · DayZ Modding, DayZ
borizz.k updated the task description for T152085: Strange lighting behavior if fireplace in car has fire.
Jun 24 2020, 11:12 PM · DayZ Modding, DayZ
borizz.k created T152085: Strange lighting behavior if fireplace in car has fire.
Jun 24 2020, 11:10 PM · DayZ Modding, DayZ
borizz.k added a comment to T152071: If drop item while player stay on car, it falls to the ground under the car or in to textures of car under player in 1.08 Experemental.

Zombies walks through car textures :-)))) Good job...

Jun 24 2020, 10:55 PM · DayZ
borizz.k created T152071: If drop item while player stay on car, it falls to the ground under the car or in to textures of car under player in 1.08 Experemental.
Jun 24 2020, 9:57 AM · DayZ

Jun 23 2020

borizz.k added a comment to T150938: LinkToLocalSpaceOf and UnlinkFromLocalSpace cause screen blink/screen switching and short freeze player on clients.

Personal thanks to Jacob Mango
Thanx all

Jun 23 2020, 3:03 PM · DayZ Modding, DayZ
borizz.k added a comment to T150938: LinkToLocalSpaceOf and UnlinkFromLocalSpace cause screen blink/screen switching and short freeze player on clients.

In 1.07, this worked fine only on server
See code:

Jun 23 2020, 12:05 PM · DayZ Modding, DayZ

Jun 22 2020

borizz.k added a comment to T150938: LinkToLocalSpaceOf and UnlinkFromLocalSpace cause screen blink/screen switching and short freeze player on clients.

I use for player on server side (like in 1.07)

Jun 22 2020, 6:59 PM · DayZ Modding, DayZ

Jun 20 2020

borizz.k added a comment to T150938: LinkToLocalSpaceOf and UnlinkFromLocalSpace cause screen blink/screen switching and short freeze player on clients.

LinkToLocalSpaceOf not correctly works in 1.08 exp
Player going to sea anyway ((

Jun 20 2020, 11:48 AM · DayZ Modding, DayZ

Jun 11 2020

borizz.k created T151673: Offroad hatchback coDriver door is transparent (no textures) in 1.08.153.164.
Jun 11 2020, 10:20 AM · DayZ

May 27 2020

borizz.k added a comment to T150938: LinkToLocalSpaceOf and UnlinkFromLocalSpace cause screen blink/screen switching and short freeze player on clients.

Can confirm, except for an issue with getting out of seats and sometimes players teleport to 0,0 (mod issue) it works fine.

No flickering, no delay, no short freeze.

For it to work best you have to do a bunch of matrix math and add network delays when you call them so you don't call them at the same time

May 27 2020, 7:47 PM · DayZ Modding, DayZ
borizz.k added a comment to T150938: LinkToLocalSpaceOf and UnlinkFromLocalSpace cause screen blink/screen switching and short freeze player on clients.

Its fine someone use and read source code of my RoadTrip mod :P

May 27 2020, 7:45 PM · DayZ Modding, DayZ

May 14 2020

borizz.k created T150938: LinkToLocalSpaceOf and UnlinkFromLocalSpace cause screen blink/screen switching and short freeze player on clients.
May 14 2020, 7:39 PM · DayZ Modding, DayZ

Feb 18 2020

borizz.k added a comment to T148967: [CE][Estimate] :: !!! Avoidance system overloaded :: Reached MAX_VEHICLE= 768 :-(.

How to resolve?

Feb 18 2020, 8:04 PM · DayZ
borizz.k edited Steps To Reproduce on T148967: [CE][Estimate] :: !!! Avoidance system overloaded :: Reached MAX_VEHICLE= 768 :-(.
Feb 18 2020, 8:03 PM · DayZ

Feb 12 2020

borizz.k created T148967: [CE][Estimate] :: !!! Avoidance system overloaded :: Reached MAX_VEHICLE= 768 :-(.
Feb 12 2020, 9:08 PM · DayZ

Oct 24 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.

Good news...
May be can return color change of massages to players on server side?
I built mod for this, but native function much better...

Oct 24 2019, 9:01 PM · DayZ Modding, DayZ

Sep 30 2019

borizz.k added a comment to T144430: Community servers error on startup related to mod conflicts / limitations?.

Hello everyone.
A fix has been deployed internally and will appear on Steam in one of the future updates.
Regards,
Geez

Sep 30 2019, 10:07 PM · DayZ

Sep 18 2019

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.

NiiRoZz
I understood this and already rebuild our mod...
Thx

Sep 18 2019, 8:24 AM · 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.

nonsense...
why blеeding? why not death immediately?
why it is impossible to filter on client side and process only registered variables? is it difficult for programmers?

Sep 18 2019, 7:03 AM · DayZ Modding, DayZ

Sep 14 2019

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

Sep 13 2019

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
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

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

borizz.k added a comment to T144430: Community servers error on startup related to mod conflicts / limitations?.

Mod with multiple classes that inherit from ScriptedEntity may cause the same errors

Sep 10 2019, 8:46 PM · DayZ

Sep 8 2019

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

Sep 7 2019

borizz.k added a comment to T144430: Community servers error on startup related to mod conflicts / limitations?.
Sep 7 2019, 9:02 PM · DayZ

Sep 6 2019

borizz.k created T144499: Can't compile "World" script module! .
Sep 6 2019, 9:21 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

Sep 2 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.

Dear Geez.
Anything known to solve this problem?

Sep 2 2019, 4:56 PM · DayZ Modding, DayZ

Aug 25 2019

borizz.k edited Steps To Reproduce on T143957: Messages in chat from player logged as admin not intercepted on the server side in DayZ Experemental.
Aug 25 2019, 11:31 AM · DayZ Modding, DayZ
borizz.k created T143957: Messages in chat from player logged as admin not intercepted on the server side in DayZ Experemental.
Aug 25 2019, 11:27 AM · DayZ Modding, DayZ

Aug 5 2019

borizz.k edited Steps To Reproduce on T142851: Function AnglesToVector() does not work correctly?.
Aug 5 2019, 4:56 PM · DayZ Modding, DayZ
borizz.k edited Steps To Reproduce on T142851: Function AnglesToVector() does not work correctly?.
Aug 5 2019, 4:56 PM · DayZ Modding, DayZ
borizz.k created T142851: Function AnglesToVector() does not work correctly?.
Aug 5 2019, 4:50 PM · DayZ Modding, DayZ

Jul 30 2019

borizz.k added a member for DayZ Modding: borizz.k.
Jul 30 2019, 6:02 PM

Jun 26 2019

borizz.k created T141488: Dynzmic Objects not delete from map in scripton server shutdown.
Jun 26 2019, 10:11 AM · DayZ

Apr 7 2019

borizz.k added a comment to T138021: SelectSpectator still not works in 1.02.150980.

vector position = player.GetPosition();
GetGame().UpdateSpectatorPosition(position);

Apr 7 2019, 6:14 PM · DayZ Modding, DayZ

Apr 5 2019

borizz.k added a comment to T138021: SelectSpectator still not works in 1.02.150980.

How to setting up Camera object on server for camera control from client as freecamera?

Apr 5 2019, 6:45 PM · DayZ Modding, DayZ
borizz.k added a comment to T138021: SelectSpectator still not works in 1.02.150980.

Ok
camera is created, but how to contol it, move up, down, forward, backward etc ?
Old freedebugcam could be controlled by player (client)

Apr 5 2019, 4:57 PM · DayZ Modding, DayZ
borizz.k added a comment to T138021: SelectSpectator still not works in 1.02.150980.

I not use any mods for server and client
Only server functions on server side

Apr 5 2019, 11:30 AM · DayZ Modding, DayZ

Apr 1 2019

borizz.k updated the task description for T138021: SelectSpectator still not works in 1.02.150980.
Apr 1 2019, 1:16 PM · DayZ Modding, DayZ

Mar 29 2019

borizz.k created T138021: SelectSpectator still not works in 1.02.150980.
Mar 29 2019, 6:08 PM · DayZ Modding, DayZ
borizz.k added a comment to T137977: Bug with functions in 1.02.150958 experemental patch server.

What about SelectSpectator ?

Mar 29 2019, 1:56 PM · DayZ Modding, DayZ
borizz.k updated the task description for T137977: Bug with functions in 1.02.150958 experemental patch server.
Mar 29 2019, 11:32 AM · DayZ Modding, DayZ
borizz.k added a comment to T137977: Bug with functions in 1.02.150958 experemental patch server.
Mar 29 2019, 11:09 AM · DayZ Modding, DayZ
borizz.k created T137977: Bug with functions in 1.02.150958 experemental patch server.
Mar 29 2019, 11:08 AM · DayZ Modding, DayZ