Arma Reforger Explorer  1.1.0.42
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
AIAnimal.c
Go to the documentation of this file.
1 /*
2 ===========================================
3 Do not modify, this script is generated
4 ===========================================
5 */
6 
12 class AIAnimalClass: AIAgentClass
13 {
14 }
15 
16 class AIAnimal: AIAgent
17 {
18  proto external int GetSoundMapTag();
19  //A danger event happened in server, this calls to "ReactDanger" in clients. Returns false if it can not spawn/activate
20  proto external bool CallReactToDanger();
21  proto external bool ManualActivation();
22 
23  // callbacks
24 
25  //What effects should play when scared (for example, playing sounds, particles or animations)
26  event void OnReactToDanger();
27 }
28 
AIAnimalClass
Definition: AIAnimal.c:12
GetSoundMapTag
AIAnimalClass AIAgentClass GetSoundMapTag()
ManualActivation
proto external bool ManualActivation()
CallReactToDanger
proto external bool CallReactToDanger()
OnReactToDanger
event void OnReactToDanger()