Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. void () ActivePowers =
  2. {
  3. local string s1, s2, s3, s4;
  4.  
  5. if (self.axepower == 1)
  6. s1 = "-STRENGTH";
  7. else
  8. s1 = string_null;
  9.  
  10. if (self.axepower2 == 1)
  11. s2 = "-SPEED";
  12. else
  13. s2 = string_null;
  14.  
  15. if (self.axepower3 == 1)
  16. s3 = "-FRENZY";
  17. else
  18. s3 = string_null;
  19.  
  20. if (self.axepower4 == 1)
  21. s4 = "-REGEN";
  22. else
  23. s4 = string_null;
  24.  
  25.  
  26. //sprint (self, "\n\n\n \bActive Powers\b\n\n");
  27.  
  28. //if (s1 != string_null)
  29. // sprint
  30.  
  31. centerprint2 (self,"\n\n\n \bActivePwrs\b\n\n ",s1,"\n ",s2,"\n ",s3,"\n ","dicks");
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement