CfgRemoteExec – Arma 3

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
No edit summary
Line 7: Line 7:
  class CfgRemoteExec
  class CfgRemoteExec
  {
  {
class Server
        // State of remoteExec: 0-turned off, 1-turned on, taking whitelist into account, 2-turned on, however, ignoring whitelists ('''default''' because of backward compatibility)
{
        mode = 2;
                // 0-turned off, 1-turned on, taking whitelist into account, 2-turned on, however, ignoring whitelists ('''default''' because of backward compatibility)
        // Ability to jip: 0-disabled, 1-enabled (default)
mode = 1;
        jip = true;
                // List of script functions enabled to be executed on server
 
class Functions
        // List of script functions allowed to be sent from client via remoteExec
                {
        class Functions
                        class bis_fnc_Something {};
        {
                        class YourFunction1 {};
                 jip = true; // jip enabled by default on all functions (default value)
                };
                /*your functions here*/
                // List of script commands enabled to be executed on server
                class YourFunction1 {
class Commands
      allowedTargets=0; // can target anyone (default)
                {
                      jip = false; // jip is disabled for this function
                        class hint {};
                        class setFuel {};
                };
};
class Client
{
                 mode = 2;
                class Functions {
                      jip = true; // jip enabled by default on all functions (default value)
                      /*your functions here*/
                      class YourFunction1 {
        allowedTargets=0; // can target anyone (default)
                              jip = false; // jip is disabled for this function
                      };
                      class YourFunction2 { allowedTargets=1; }; // can target only clients
                      class YourFunction3 { allowedTargets=2; }; // can target only the server
                };
                class Commands {
                      /*your commands here*/
                      class YourCommand1 { allowedTargets=0; jip=false; } // can target anyone, jip is turned off
                 };
                 };
                class YourFunction2 { allowedTargets=1; }; // can target only clients
                class YourFunction3 { allowedTargets=2; }; // can target only the server
        };
       
        // List of script commands allowed to be sent from client via remoteExec
        class Commands
        {
              /*your commands here*/
              class YourCommand1 { allowedTargets=0; jip=false; } // can target anyone, jip is turned off (overrides class settings)
  };
  };
  };
  };

Revision as of 08:54, 1 July 2015

-wrong parameter ("arma3dev") defined!-[[:Category:Introduced with arma3dev version 1.48|1.48]]

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
{
       // State of remoteExec: 0-turned off, 1-turned on, taking whitelist into account, 2-turned on, however, ignoring whitelists (default because of backward compatibility)
       mode = 2;
       // Ability to jip: 0-disabled, 1-enabled (default)
       jip = true;
       // List of script functions allowed to be sent from client via remoteExec
       class Functions
       {
               jip = true; // jip enabled by default on all functions (default value)
               /*your functions here*/
               class YourFunction1 {
	 	       allowedTargets=0; // can target anyone (default)
                      jip = false; // jip is disabled for this function
               };
               class YourFunction2 { allowedTargets=1; }; // can target only clients
               class YourFunction3 { allowedTargets=2; }; // can target only the server
       };
       
       // List of script commands allowed to be sent from client via remoteExec
       class Commands
       {
              /*your commands here*/
              class YourCommand1 { allowedTargets=0; jip=false; } // can target anyone, jip is turned off (overrides class settings)
	};
};