DayZ 1.28
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено

◆ InventoryMode

NOTE: PREDICTIVE is not to be used at all in multiplayer.

Элементы перечислений
PREDICTIVE 

'Predictive' means that the operation uses Client-Side Prediction, i.e. the action runs the same code on both, client AND server

LOCAL 

'Local' operation executes from where it is run

JUNCTURE 

'Juncture' operation is used whenever there is possibility of race condition, i.e. two players picking same item from ground

SERVER 

'Server' mode operation is required if and only if the operation runs only on server (creates and/or destroys objects)

См. определение в файле 3_Game/Systems/Inventory/Inventory.c строка 21

22{
24 LOCAL,
25 JUNCTURE,
26 SERVER,
27};
@ SERVER
'Server' mode operation is required if and only if the operation runs only on server (creates and/or ...
@ PREDICTIVE
'Predictive' means that the operation uses Client-Side Prediction, i.e. the action runs the same code...
@ LOCAL
'Local' operation executes from where it is run
@ JUNCTURE
'Juncture' operation is used whenever there is possibility of race condition, i.e....