DayZ 1.27
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)

См. определение в файле 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 ...
Определения Inventory.c:26
@ PREDICTIVE
'Predictive' means that the operation uses Client-Side Prediction, i.e. the action runs the same code...
Определения Inventory.c:23
@ LOCAL
'Local' operation executes from where it is run
Определения Inventory.c:24
@ JUNCTURE
'Juncture' operation is used whenever there is possibility of race condition, i.e....
Определения Inventory.c:25