0
0
Fork 0
mirror of https://git.code.sf.net/p/quake/prozac-qfcc synced 2025-03-02 15:41:49 +00:00
prozac-qfcc/qw.qc
2001-07-25 21:10:26 +00:00

22 lines
453 B
C++

// QW CenterPrinting hack
// these functions are only used if in normal quake
#include "defs.qh"
// replaces punchangle in QW
void(float psize, entity p) KickPlayer =
{
msg_entity = p;
if (psize > -3)
WriteByte (MSG_ONE, SVC_SMALLKICK);
else // (size < -3)
WriteByte (MSG_ONE, SVC_BIGKICK);
};
void() muzzleflash =
{
WriteByte (MSG_MULTICAST, SVC_MUZZLEFLASH);
WriteEntity (MSG_MULTICAST, self);
multicast (self.origin, MULTICAST_PVS);
};