home *** CD-ROM | disk | FTP | other *** search
/ Superpower (Alt) / SUPERPOWER.iso / q / patch / mbq717 / asmo.qc < prev    next >
Encoding:
Text File  |  1996-07-27  |  307 b   |  17 lines

  1. /*
  2.  * Functions that are specific to my modifications.
  3.  *  -- AsmodeusB
  4.  *
  5.  * (28/07/96)
  6.  *    - Added mysprint(), which checks if it's a player before sprint()ing.
  7.  */
  8.  
  9. void (entity thisguy, string msg) mysprint =
  10. {
  11.  if(thisguy.classname != "player")
  12.    return;
  13.  sprint(thisguy, msg);
  14. };
  15.  
  16.  
  17.