CfgRemoteExec – Arma 3

From Bohemia Interactive Community
Revision as of 09:27, 10 June 2015 by Richard.biely (talk | contribs) (Created page with "{{GVI|arma3|dev}} ==== Description ==== Class containing a list of all scripted functions and commands which can be remotely executed by BIS_fnc_MP / remoteExec / r...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Arma 3 logo black.pngDEV

Description

Class containing a list of all scripted functions and commands which can be remotely executed by BIS_fnc_MP / remoteExec / remoteExecCall on server or client machines. Can be defined in Config.cpp or in campaign's or mission's Description.ext. The most local variant is used.

Format

class CfgRemoteExec
{
	class Server
	{
               // 0-turned off, 1-turned on, taking whitelist into account, 2-turned on, however, ignoring whitelists (Bold textdefault Bold textbecause of backward compatibility)
		mode = 1;
               // List of script functions enabled to be executed on server
		class Functions
               {
                       class bis_fnc_Something{};
                       class YourFunction1{};
               };
               // List of script commands enabled to be executed on server
		class Commands
               {
                       class hint{};
                       class setFuel{};
               };
	};
	class Client
	{
               mode = 2;
               class Functions { /*your functions here*/ ... };
               class Commands { /*your commands here*/ ... };
	};
};

|Arma 3 remoteExec