72networkEventBroadcast(
float eventType)
74 WriteByte(MSG_MULTICAST, SVC_CGAMEPACKET);
75 WriteByte(MSG_MULTICAST, eventType);
77 multicast([0,0,0], MULTICAST_ALL_R);
85networkEventInPVS(
float eventType, vector castAtPos)
87 WriteByte(MSG_MULTICAST, SVC_CGAMEPACKET);
88 WriteByte(MSG_MULTICAST, eventType);
90 multicast(castAtPos, MULTICAST_PVS_R);
96networkEventSingle(
float eventType, entity targetEntity)
98 WriteByte(MSG_MULTICAST, SVC_CGAMEPACKET);
99 WriteByte(MSG_MULTICAST, eventType);
100 msg_entity = targetEntity;
101 multicast([0,0,0], MULTICAST_ONE_R);