Advertisement
Guest User

23f6rdgfd

a guest
Aug 18th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.50 KB | None | 0 0
  1. // sends the flag info to (CSQC) CSQC_Ent_Update
  2. float(entity to, float SendFlags) THE_FLAG_SendEntity =
  3. {
  4.    
  5.  
  6.     dimension_send = D_HAS_CSQC;
  7.    
  8.     WriteByte(MSG_ENTITY, THE_FLAG_MESSAGE_ID);
  9.        
  10.     // send the .origin info
  11.     WriteCoord(MSG_ENTITY, self.origin_x);
  12.     WriteCoord(MSG_ENTITY, self.origin_y);
  13.     WriteCoord(MSG_ENTITY, self.origin_z);
  14.    
  15.     dimension_send = D_DEFAULT;
  16.            
  17.     return TRUE;
  18.        
  19. }
  20.  
  21.  
  22. /// CSQC
  23.  
  24. void(float isnew) CSQC_Ent_Update =
  25. {
  26. * BREAK
  27. // this doesnt break/ get called
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement