remoteExecutedOwner: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "<code>_([a-zA-Z0-9_]+) = \[\[([a-zA-Z0-9]+)\]\];?<\/code>" to "<sqf>_$1 = $2;</sqf>") |
Lou Montana (talk | contribs) m (Some wiki formatting) |
||
Line 7: | Line 7: | ||
|descr= Returns the [[Multiplayer_Scripting#Machine_network_ID | machine network ID]] of the client that initiated [[Remote Execution]]. If used in SP or outside of remote executed context, the command returns 0. | |descr= Returns the [[Multiplayer_Scripting#Machine_network_ID | machine network ID]] of the client that initiated [[Remote Execution]]. If used in SP or outside of remote executed context, the command returns 0. | ||
{{Feature | | {{Feature|informative|To check if the context is remote executed, use [[isRemoteExecuted]] or [[isRemoteExecutedJIP]].}} | ||
|s1= [[remoteExecutedOwner]] | |s1= [[remoteExecutedOwner]] | ||
Line 13: | Line 13: | ||
|r1= [[Number]] | |r1= [[Number]] | ||
|x1= <sqf>_callerRE = remoteExecutedOwner;</sqf> | |x1= <sqf>private _callerRE = remoteExecutedOwner;</sqf> | ||
|x2= Send request to the server and get immediate response: | |x2= Send request to the server and get immediate response: | ||
< | <sqf> | ||
{ | |||
// in this scope, the remoteExecutedOwner equals clientOwner of the sender | |||
// so using it as target in remoteExec will send response right back at him | |||
[ | [ | ||
time, // mission time value on the server | |||
{ | { | ||
hint format | |||
[ | [ | ||
"Request recieved!\nMission time value on the server is: %1", | "Request recieved!\nMission time value on the server is: %1", | ||
_this | |||
]; | ]; | ||
} | } | ||
] | ] | ||
remoteExec ["call", remoteExecutedOwner]; // server response to the sender | |||
} | } | ||
remoteExec ["call", 2]; // send request to server | |||
</sqf> | |||
|seealso= [[isRemoteExecuted]] [[isRemoteExecutedJIP]] [[remoteExec]] [[remoteExecCall]] [[canSuspend]] [[publicVariableClient]] [[admin]] [[owner]] [[clientOwner]] [[groupOwner]] [[didJIPOwner]] | |seealso= [[isRemoteExecuted]] [[isRemoteExecutedJIP]] [[remoteExec]] [[remoteExecCall]] [[canSuspend]] [[publicVariableClient]] [[admin]] [[owner]] [[clientOwner]] [[groupOwner]] [[didJIPOwner]] | ||
Line 38: | Line 40: | ||
{{GameCategory|arma3|Remote Execution}} | {{GameCategory|arma3|Remote Execution}} | ||
{{Note | |||
|user= Demellion | |||
|timestamp= 20170911093100 | |||
|text= Always be sure to check if the [[remoteExecutedOwner]] is not equal to 0 when sending a [[remoteExec]]/[[remoteExecCall]] packet back, as this will result in sending packet to ANYONE (0): | |||
<sqf> | |||
if (remoteExecutedOwner isEqualTo 0) exitWith {}; // invalid RE owner | |||
_gearArray remoteExecCall ['someGearFunction', remoteExecutedOwner]; | |||
< | </sqf> | ||
_gearArray | |||
Will prevent from code being accidentally sent to everyone on the server. | Will prevent from code being accidentally sent to everyone on the server. | ||
}} | |||
Revision as of 21:43, 7 May 2022
Description
- Description:
- Returns the machine network ID of the client that initiated Remote Execution. If used in SP or outside of remote executed context, the command returns 0.
- Groups:
- Multiplayer
Syntax
- Syntax:
- remoteExecutedOwner
- Return Value:
- Number
Examples
- Example 1:
- Example 2:
- Send request to the server and get immediate response:
{ // in this scope, the remoteExecutedOwner equals clientOwner of the sender // so using it as target in remoteExec will send response right back at him [ time, // mission time value on the server { hint format [ "Request recieved!\nMission time value on the server is: %1", _this ]; } ] remoteExec ["call", remoteExecutedOwner]; // server response to the sender } remoteExec ["call", 2]; // send request to server
Additional Information
- See also:
- isRemoteExecuted isRemoteExecutedJIP remoteExec remoteExecCall canSuspend publicVariableClient admin owner clientOwner groupOwner didJIPOwner
Notes
-
Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
- Posted on Sep 11, 2017 - 09:31 (UTC)
-
Always be sure to check if the remoteExecutedOwner is not equal to 0 when sending a remoteExec/remoteExecCall packet back, as this will result in sending packet to ANYONE (0):
Will prevent from code being accidentally sent to everyone on the server.if (remoteExecutedOwner isEqualTo 0) exitWith {}; // invalid RE owner _gearArray remoteExecCall ['someGearFunction', remoteExecutedOwner];