Arma Reforger Explorer  1.1.0.42
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
SCR_ESpawnResult.c
Go to the documentation of this file.
1 /*
2  This enum represents possible results/responses sent from the authority after a SCR_SpawnRequestComponent
3  issues a request to respawn to a SCR_SpawnHandlerComponent.
4 
5  When the spawning process is successfull, the return value is SCR_ESpawnResult.OK,
6  anything else is a request which has failed and resulted in the player not spawning.
7 */
9 {
13  OK = 0,
14 
18  BAD_REQUEST = 1000,
19 
25 
30 
38 
49 
56 
65 
71 
79 
85 
93 
97  INTERNAL_ERROR = 666666,
98 
103  UNKNOWN_ERROR = 999999,
104 };
NOT_ALLOWED_TIMER
@ NOT_ALLOWED_TIMER
Definition: SCR_ESpawnResult.c:39
NOT_ALLOWED_SPAWNING_DISABLED_ENEMIES_NEARBY
@ NOT_ALLOWED_SPAWNING_DISABLED_ENEMIES_NEARBY
Definition: SCR_ESpawnResult.c:46
UNSUPPORTED_SPAWN_METHOD
@ UNSUPPORTED_SPAWN_METHOD
Definition: SCR_ESpawnResult.c:24
UNKNOWN_ERROR
@ UNKNOWN_ERROR
Definition: SCR_ESpawnResult.c:103
SCR_ESpawnResult
SCR_ESpawnResult
Definition: SCR_ESpawnResult.c:8
NOT_ALLOWED_VEHICLE_FULL
@ NOT_ALLOWED_VEHICLE_FULL
Definition: SCR_ESpawnResult.c:42
NOT_ALLOWED_RADIO_VEHICLE_SPAWNING_DISABLED
@ NOT_ALLOWED_RADIO_VEHICLE_SPAWNING_DISABLED
Definition: SCR_ESpawnResult.c:44
NOT_ALLOWED_VEHICLE_MOVING
@ NOT_ALLOWED_VEHICLE_MOVING
Definition: SCR_ESpawnResult.c:43
CANNOT_PREPARE
@ CANNOT_PREPARE
Definition: SCR_ESpawnResult.c:78
NOT_ALLOWED_NOT_ENOUGH_SUPPLIES
@ NOT_ALLOWED_NOT_ENOUGH_SUPPLIES
Definition: SCR_ESpawnResult.c:48
NOT_ALLOWED_SPAWNPOINT_DISABLED_OUT_OF_RESPAWNS
@ NOT_ALLOWED_SPAWNPOINT_DISABLED_OUT_OF_RESPAWNS
Definition: SCR_ESpawnResult.c:47
MISSING_HANDLER
@ MISSING_HANDLER
Definition: SCR_ESpawnResult.c:29
NOT_ALLOWED_SPAWNING_DISABLED
@ NOT_ALLOWED_SPAWNING_DISABLED
Definition: SCR_ESpawnResult.c:41
INTERNAL_ERROR
@ INTERNAL_ERROR
Definition: SCR_ESpawnResult.c:97
CANNOT_SPAWN
@ CANNOT_SPAWN
Definition: SCR_ESpawnResult.c:70
INVALID_PREFAB
@ INVALID_PREFAB
Definition: SCR_ESpawnResult.c:55
SPAWN_NOT_ALLOWED
@ SPAWN_NOT_ALLOWED
Definition: SCR_ESpawnResult.c:37
BAD_REQUEST
@ BAD_REQUEST
Definition: SCR_ESpawnResult.c:18
CANNOT_VALIDATE
@ CANNOT_VALIDATE
Definition: SCR_ESpawnResult.c:64
NOT_ALLOWED_SPAWNPOINT_OCCUPIED_BY_HOSTILE
@ NOT_ALLOWED_SPAWNPOINT_OCCUPIED_BY_HOSTILE
Definition: SCR_ESpawnResult.c:45
NOT_ALLOWED_SPAWNPOINT_DISABLED
@ NOT_ALLOWED_SPAWNPOINT_DISABLED
Definition: SCR_ESpawnResult.c:40
CANNOT_ASSIGN
@ CANNOT_ASSIGN
Definition: SCR_ESpawnResult.c:92
CANNOT_POSSES
@ CANNOT_POSSES
Definition: SCR_ESpawnResult.c:84
OK
@ OK
Definition: SCR_ESpawnResult.c:13