Advertisement
Chronos_Ouroboros

Se7evidas...

Mar 19th, 2015
352
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. #INCLUDE "zcommon.acs"
  2. #LIBRARY "Se7evidas"
  3.  
  4. // Defines
  5. #DEFINE MAXPLAYERS 64
  6.  
  7. // Includes
  8. #INCLUDE "commonFuncs.h"
  9. #INCLUDE "Se7evidas/Weapon Stuff.h"
  10. #INCLUDE "Se7evidas/Health.h"
  11. #INCLUDE "Se7evidas/Stamina.h"
  12. #INCLUDE "Se7evidas/Sprint System.h"
  13. #INCLUDE "Se7evidas/Misc.h"
  14. #INCLUDE "Se7evidas/HUD.h"
  15. #INCLUDE "Se7evidas/Bank System.h"
  16.  
  17. // Defines
  18.  
  19. // Highest script num ID: 920
  20. // Highest global var ID: 5
  21.  
  22. #DEFINE S7_Enter 906
  23. script S7_Enter ENTER {
  24. setActorProperty (0, APROP_SPEED, 1.0);
  25. S7_SR_StaminaEmpty [playerNumber ()] = 0;
  26. }
  27.  
  28. #DEFINE S7_Respawn 907
  29. script S7_Respawn RESPAWN {
  30. setActorProperty (0, APROP_SPEED, 1.0);
  31. S7_SR_StaminaEmpty [playerNumber ()] = 0;
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement