73networkEventBroadcast(
float eventType)
75 WriteByte(MSG_MULTICAST, SVC_CGAMEPACKET);
76 WriteByte(MSG_MULTICAST, eventType);
78 multicast([0,0,0], MULTICAST_ALL_R);
86networkEventInPVS(
float eventType, vector castAtPos)
88 WriteByte(MSG_MULTICAST, SVC_CGAMEPACKET);
89 WriteByte(MSG_MULTICAST, eventType);
91 multicast(castAtPos, MULTICAST_PVS_R);
97networkEventSingle(
float eventType, entity targetEntity)
99 WriteByte(MSG_MULTICAST, SVC_CGAMEPACKET);
100 WriteByte(MSG_MULTICAST, eventType);
101 msg_entity = targetEntity;
102 multicast([0,0,0], MULTICAST_ONE_R);