-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCalloutEvents.cs
68 lines (50 loc) · 3.25 KB
/
CalloutEvents.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
namespace PoliceMP.Shared.Constants
{
public static class CalloutEvents
{
#region Various Used Events
public static string SetUserWaypointPosition = "PoliceMP:Callouts:SetWaypointPosition";
#endregion
#region Stabbing
public const string OnStabbingAttackerSpawn = "PoliceMP:Callouts:OnStabbingAttackerSpawn";
public const string OnStabbingVictimSpawn = "PoliceMP:Callouts:OnStabbingVictimSpawn";
public const string OnStabbingAttackerDropKnife = "PoliceMP:Callouts:OnStabbingAttackerDropKnife";
public const string OnStabbingVictimAttacked = "PoliceMP:Callouts:OnStabbingVictimAttacked";
public const string OnStabbingAttackerReFollow = "PoliceMP:Callouts:OnStabbingAttackerReFollow";
public const string OnStabbingAttackerBlendIn = "PoliceMP:Callouts:OnStabbingAttackerBlendIn";
public const string OnStabbingAttackerPanic = "PoliceMP:Callouts:OnStabbingAttackerPanic";
public const string OnStabbingAttackerKnifeSpawned = "PoliceMP:Callouts:OnStabbingAttackerKnifeSpawned";
#endregion
#region Vehicle Break In
public const string VehicleBreakInGetDoorPosition = "PoliceMP:Callouts:VehicleBreakInGetDoorPosition";
public const string VehicleBreakInSetPedToBreakIn = "PoliceMP:Callouts:VehicleBreakInSetPedToBreakIn";
public const string VehicleBreakInVehicleBrokenInto = "PoliceMP:Callouts:VehicleBreakInVehicleBrokenInto";
public const string VehicleBreakInPlayPedAnim = "PoliceMP:Callouts:VehicleBreakInPlayAnim";
public const string VehicleBreakInWanderArea = "PoliceMP:Callouts:VehicleBreakInWanderArea";
#endregion
#region Suspicious Package
public const string CreateExplosion = "PoliceMP:Callouts:SusPackage:CreateExplosion";
#endregion
#region Fight Base
public static class FightBase
{
public const string InitializePed = "PoliceMP:Callouts:FightBase:InitializePed";
public const string UnfreezePed = "PoliceMP:Callouts:FightBase:UnfreezePeds";
public const string GetPedRelationship = "PoliceMP:Callouts:FightBase:GetPedRelationship";
public const string SetPedRelationship = "PoliceMP:Callouts:FightBase:SetPedRelationship";
public const string InitializeRelationships = "PoliceMP:Callouts:FightBase:InitializeRelationships";
public const string MakePedFight = "PoliceMP:Callouts:FightBase:MakePedFight";
}
#endregion
#region Domesitc Abuse
public const string DomesticAbuseAttackerSpeechStart = "PoliceMP:Callouts:DomesticAbuseAttackerSpeechStart";
public const string DomesticAbuseVictimSpeechStart = "PoliceMP:Callouts:DomesticAbuseVictimSpeechStart";
public const string DomesticAbuseVictimScreamStop = "PoliceMP:Callouts:DomesticAbuseVictimScreamStop";
public const string DomesticAbuseVictimCower = "PoliceMP:Callouts:DomesticAbuseVictimCower";
#endregion
#region BrokenDownVehicle
public const string BrokenDownVehicleWander = "PoliceMP:Callouts:BrokenDownVehicleWander";
public const string BrokenDownVehicleBreakDown = "PoliceMP:Callouts:BrokenDownVehicleBreakDown";
#endregion
}
}