Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
SCR_ECharacterDeathStatusRelations.c
Go to the documentation of this file.
1
4{
5 UNKNOWN = 1 << 0,
6
7 //~ Suicide
8 SUICIDE = 1 << 1,
9
10 //~ Killed by Enemy
13
14 //~ Killed by Friendly
17
18 //~ GM
20
21 //~ Character was deleted not killed
22 DELETED = 1 << 7,
24
25 //~ Fallbacks. Should never happend
28
29 OTHER_DEATH = 1 << 11,
30
31 //~ Other
32 NOT_A_CHARACTER = 1 << 12,
33}
@ KILLED_BY_ENEMY_PLAYER
Character was killed by enemy player (Can be a limited player, GM, Admin or possessed AI).
@ OTHER_DEATH
Killed by a form of suicide without being punished for it (Fallback).
@ KILLED_BY_FRIENDLY_PLAYER
Character was killed by friendly player (Can be a limited player, GM, Admin or possessed AI).
@ KILLED_BY_ENEMY_AI
Character was killed by enemy AI.
@ KILLED_BY_FRIENDLY_AI
Character was killed by friendly AI.
@ KILLED_BY_NEUTRAL_OR_FACTIONLESS
Character was killed by factionless character (Fallback).
@ VICTIM_IS_NEUTRAL_OR_FACTIONLESS
Victim had no faction (Fallback).
@ DELETED_BY_EDITOR
Character was deleted by Editor.
@ NOT_A_CHARACTER
The entity destroyed is not a character (Generally means it is a vehicle).
@ DELETED
Character was deleted.
@ KILLED_BY_UNLIMITED_EDITOR
Character is killed by a GM action (Eg: Context Neutralize, Lightning strike, etc).
@ UNKNOWN
Definition EPlatform.c:24