**Mission Event:** HandleRemoteExec
**Description:** This will improve server security as well as improve debugging. Return true to block remoteExec
**Parameters:**
- function or command - Returns the name of the called function or command
- Arguments - Returns the arguments that were passed to the function
- Target - Returns the target(s) to which the remoteExec should be made
- JIP - This is JIP remoteExec or not
- Suspend - remoteExec or remoteExecCall
**Example:**
```
addMissionEventHandler ["HandleRemoteExec",{
params ["_funcName","_arguments","_target","_isJip","_canSuspend"];
}]
```