arma:missions:mp_tutorial
Differences
This shows you the differences between two versions of the page.
arma:missions:mp_tutorial [2011/06/30 13:52] – created mp_tutorial initial page. snakeman | arma:missions:mp_tutorial [2024/08/01 08:27] (current) – links added. snakeman | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Multiplayer Tutorial ====== | + | ====== |
- | The purpose of this tutorial is to discuss some of the scripting issues that are particular to the creation of multi-player missions. It is assumed that the reader is at least a competent scripter in a single-player setting. | + | [[https:// |
- | ====== | + | **ArmA 1** aka Armed Assault (ArmA) |
- | ===== Locality | + | The purpose of this tutorial is to discuss some of the scripting issues that are particular to the creation of multi-player missions. It is assumed that the reader is at least a competent script writer in a single-player setting. |
+ | |||
+ | ====== Locality | ||
+ | |||
+ | ===== Locality Of Objects ===== | ||
The locality of an object determines which computer is the owner of this object. Many commands affect only to local objects, so the locality must be considered when we want to execute these commands over existing objects. | The locality of an object determines which computer is the owner of this object. Many commands affect only to local objects, so the locality must be considered when we want to execute these commands over existing objects. | ||
Line 21: | Line 25: | ||
- | ===== Locality | + | ===== Locality |
Any marker placed in the editor is global and will be seen by any player. If you want markers to be local for a particular machine (only visible from this machine) create it using createMarkerLocal (and use the corresponding local commands to configure it). | Any marker placed in the editor is global and will be seen by any player. If you want markers to be local for a particular machine (only visible from this machine) create it using createMarkerLocal (and use the corresponding local commands to configure it). | ||
- | ===== Locality | + | ===== Locality |
The locality of a command covers two different concepts: | The locality of a command covers two different concepts: | ||
Line 40: | Line 44: | ||
- | ===== Determining | + | ===== Determining |
Using the local comand: | Using the local comand: | ||
Line 82: | Line 86: | ||
- | ===== Determining | + | ===== Determining |
In older versions of the game, the most common way to check for server was to add a gamelogic named " | In older versions of the game, the most common way to check for server was to add a gamelogic named " | ||
Line 104: | Line 108: | ||
- | ===== The importance of determining where the server is ===== | + | ===== The Importance Of Determining Where The Server Is ===== |
For example, your mission might have many scripts that should not be executed on every connected machine and that isn't required to affect non-local units. For these cases you have two options: | For example, your mission might have many scripts that should not be executed on every connected machine and that isn't required to affect non-local units. For these cases you have two options: | ||
Line 124: | Line 128: | ||
- | ===== Where script files, and scripts input into the editor, are executed | + | ===== Where Script Files, And Scripts Input Into The Editor, Are Executed |
In many situations we must execute a script or command only once, not in every machine connected, or we must execute some code only there were a particular unit is local, or only in the server. To start with, let's see where the code is executed by default: | In many situations we must execute a script or command only once, not in every machine connected, or we must execute some code only there were a particular unit is local, or only in the server. To start with, let's see where the code is executed by default: | ||
Line 137: | Line 141: | ||
- | ===== Running | + | ===== Running |
For that purpose, use the setVehicleInit command to set the init commands of your newly created units. This is similar to writing these commands in the init field of a unit placed in the editor, but setVehicleInit doesn' | For that purpose, use the setVehicleInit command to set the init commands of your newly created units. This is similar to writing these commands in the init field of a unit placed in the editor, but setVehicleInit doesn' | ||
Line 153: | Line 157: | ||
- | ====== Server | + | ====== Server |
The simplest way to communicate is to use publicVariable, | The simplest way to communicate is to use publicVariable, | ||
- | ===== Remote | + | ===== Remote |
There are two ways to execute commands, whenever required, on other machines: | There are two ways to execute commands, whenever required, on other machines: | ||
Line 273: | Line 277: | ||
* Server: The machine controlling the game and the player interactions. | * Server: The machine controlling the game and the player interactions. | ||
* Single-player game (SP): A game run from within ArmA, such as the campaign, where the client and (non-dedicated) server are actually the same machine. This makes scripting considerably simpler, since one does not have to manage communication between machines, as one would in a multi-player game. | * Single-player game (SP): A game run from within ArmA, such as the campaign, where the client and (non-dedicated) server are actually the same machine. This makes scripting considerably simpler, since one does not have to manage communication between machines, as one would in a multi-player game. | ||
+ |
arma/missions/mp_tutorial.1309441968.txt.gz · Last modified: 2011/06/30 13:52 by snakeman