Skip to content

Latest commit

 

History

History
195 lines (137 loc) · 4.36 KB

ClientRpc.md

File metadata and controls

195 lines (137 loc) · 4.36 KB

clientRpc.hpp

__rpcmode_client

Type: constant

Description:

Replaced value:

File: client\ClientRpc\clientRpc.hpp at line 7

rpcAdd(name,code)

Type: constant

Description: #endif

  • Param: name
  • Param: code

Replaced value:

[name,code] call client_addEvent

File: client\ClientRpc\clientRpc.hpp at line 13

rpcAddGlobal(name,code)

Type: constant

Description:

  • Param: name
  • Param: code

Replaced value:

[name,code] call rpc_addEventGlobal

File: client\ClientRpc\clientRpc.hpp at line 15

rpcRemove(name,id)

Type: constant

Description:

  • Param: name
  • Param: id

Replaced value:

[name,id] call client_removeEvent

File: client\ClientRpc\clientRpc.hpp at line 17

rpcRemoveGlobal(name,id)

Type: constant

Description:

  • Param: name
  • Param: id

Replaced value:

[name,id] call rpc_removeEventGlobal

File: client\ClientRpc\clientRpc.hpp at line 19

rpcCall(name,args)

Type: constant

Description:

  • Param: name
  • Param: args

Replaced value:

[name,args] call client_callEvent

File: client\ClientRpc\clientRpc.hpp at line 21

rpcSendToServer(name,args)

Type: constant

Description:

  • Param: name
  • Param: args

Replaced value:

[name,args] call client_sendToServer

File: client\ClientRpc\clientRpc.hpp at line 23

clientrpc_init.sqf

log_client_rpc

Type: constant

Description:

Replaced value:

File: client\ClientRpc\clientrpc_init.sqf at line 8

rpc_log(event,args)

Type: constant

Exists if log_client_rpc defined

Description:

  • Param: event
  • Param: args

Replaced value:

'debug_console' callExtension format['[NET::LOG::CLIENT]:    <%1> send %3 bytes to SERVER with %2',event,args,args call oop_getTypeSizeFull]

File: client\ClientRpc\clientrpc_init.sqf at line 19

rpc_simple(data)

Type: constant

Exists if log_client_rpc defined

Description:

  • Param: data

Replaced value:

'debug_console' callExtension format['[NET::LOG]:    %1',data]

File: client\ClientRpc\clientrpc_init.sqf at line 20

rpc_log(event,args)

Type: constant

Exists if log_client_rpc not defined

Description:

  • Param: event
  • Param: args

Replaced value:

File: client\ClientRpc\clientrpc_init.sqf at line 22

client_addEvent

Type: function

Description: Добавляет обработчик событий на стороне клиента

  • Param: _eventName
  • Param: _eventCode

File: client\ClientRpc\clientrpc_init.sqf at line 26

client_removeEvent

Type: function

Description: Удаляет обработчик событий на стороне клиента

  • Param: _eventName
  • Param: _eventId

File: client\ClientRpc\clientrpc_init.sqf at line 32

rpc_removeEventGlobal

Type: function

Description: Удаляет глобальный обработчик событий на стороне клиента

  • Param: _eventName
  • Param: _eventId

File: client\ClientRpc\clientrpc_init.sqf at line 38

client_callEvent

Type: function

Description: Вызывает клиентский обработчик событий

  • Param: _eventName
  • Param: _args

File: client\ClientRpc\clientrpc_init.sqf at line 44

client_sendToServer

Type: function

Description: Отправляет событие на сервер

  • Param: _eventName
  • Param: _eventargs

File: client\ClientRpc\clientrpc_init.sqf at line 50