VectorAdd (for Finding Elevator Tops and Bottoms)

In reply to: TUTORIAL: Finding Elevator Tops and Bottoms posted by Maj.Bitch () on October 04, 1999 at 06:44:51

#define VectorAdd(a,b,c) (c[0]=a[0]+b[0],c[1]=a[1]+b[1],c[2]=a[2]+b[2])

Add this define to your g_local.h file.

Maj.Bitch