Dayz Explorer
1.24.157551 (v105080)
Dayz Code Explorer by Zeroy
painlightstate.c
Go to the documentation of this file.
1
class
PainLightSymptom
extends
SymptomBase
2
{
3
//this is just for the Symptom parameters set-up and is called even if the Symptom doesn't execute, don't put any gameplay code in here
4
override
void
OnInit
()
5
{
6
m_SymptomType
=
SymptomTypes
.PRIMARY;
7
m_Priority
= 1;
8
m_ID
= SymptomIDs.SYMPTOM_PAIN_LIGHT;
9
m_SyncToClient =
true
;
10
m_MaxCount = 2;
11
m_Duration
= 1;
12
}
13
15
override
void
OnUpdateServer
(
PlayerBase
player,
float
deltatime)
16
{
17
18
}
19
20
override
void
OnUpdateClient
(
PlayerBase
player,
float
deltatime)
21
{
22
}
23
24
override
void
OnAnimationPlayFailed()
25
{
26
27
}
28
29
override
bool
CanActivate()
30
{
31
return
true
;
32
}
33
35
override
void
OnGetActivatedServer(
PlayerBase
player)
36
{
37
if
(
LogManager
.IsSymptomLogEnable())
38
Debug
.SymptomLog(
"n/a"
, this.
ToString
(),
"n/a"
,
"OnGetActivated"
,
m_Player
.ToString());
39
40
PlaySound
(
EPlayerSoundEventID
.TAKING_DMG_LIGHT);
41
}
42
44
override
void
OnGetActivatedClient(
PlayerBase
player)
45
{
46
//player.SpawnShockEffect(0.5);
47
CachedObjectsParams
.PARAM2_FLOAT_FLOAT.param1 = 26;
48
CachedObjectsParams
.PARAM2_FLOAT_FLOAT.param2 = 0.25;
49
player.SpawnDamageDealtEffect2(
CachedObjectsParams
.PARAM2_FLOAT_FLOAT);
50
if
(
LogManager
.IsSymptomLogEnable())
Debug
.SymptomLog(
"n/a"
, this.
ToString
(),
"n/a"
,
"OnGetActivated"
,
m_Player
.ToString());
51
}
52
54
override
void
OnGetDeactivatedServer(
PlayerBase
player)
55
{
56
if
(
LogManager
.IsSymptomLogEnable())
Debug
.SymptomLog(
"n/a"
, this.
ToString
(),
"n/a"
,
"OnGetDeactivated"
,
m_Player
.ToString());
57
}
58
60
override
void
OnGetDeactivatedClient(
PlayerBase
player)
61
{
62
if
(
LogManager
.IsSymptomLogEnable())
Debug
.SymptomLog(
"n/a"
, this.
ToString
(),
"n/a"
,
"OnGetDeactivated"
,
m_Player
.ToString());
63
}
64
}
LogManager
Definition:
debug.c:734
m_Priority
int m_Priority
Definition:
bioslobbyservice.c:34
m_Duration
float m_Duration
Definition:
bullethitreaction.c:56
CachedObjectsParams
Definition:
utilityclasses.c:9
SymptomBase
Definition:
statebase.c:1
m_SymptomType
int m_SymptomType
Definition:
smptanimmeta.c:13
ToString
proto string ToString()
PlayerBase
Definition:
playerbaseclient.c:1
OnUpdateServer
void OnUpdateServer(float deltatime, float blood_scale, bool no_blood_loss)
Definition:
bleedingsource.c:114
OnUpdateClient
void OnUpdateClient(ActionData action_data)
Definition:
actionbase.c:998
m_Player
DayZPlayer m_Player
Definition:
hand_events.c:42
SymptomTypes
SymptomTypes
Definition:
statemanager.c:26
Debug
Definition:
debug.c:13
PlaySound
void PlaySound()
Definition:
hungersoundhandler.c:38
OnInit
void OnInit()
Definition:
aibehaviour.c:49
EPlayerSoundEventID
EPlayerSoundEventID
Definition:
playersoundeventhandler.c:1
m_ID
protected int m_ID
ID of effect, given by SEffectManager when registered (automatically done when playing through it)
Definition:
effect.c:49
DAYZ
scripts_v1.24.157551
scripts
world
classes
playersymptoms
states
primary
painlightstate.c
Generated by
1.8.17