home *** CD-ROM | disk | FTP | other *** search
/ Game Level Design / GLDesign.bin / Software / UnrealEngine2Runtime / UE2Runtime-22262001_Demo.exe / Gameplay / Classes / ACTION_StopShooting.uc < prev    next >
Text File  |  2003-12-11  |  176b  |  8 lines

  1. class ACTION_StopShooting extends ScriptedAction;
  2.  
  3. function bool InitActionFor(ScriptedController C)
  4. {
  5.     C.bShootTarget = false;
  6.     C.bShootSpray = false;
  7.     return false;    
  8. }