Advertisement
Chronos_Ouroboros

CasingBase

May 19th, 2015
364
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. actor S7_CasingBase {
  2. speed 6
  3. +doomBounce -noGravity +windThrust +clientsideOnly
  4. +moveWithSector +missile +noBlockmap -dropOff
  5. +noTeleport +forceXYBillboard +ghost
  6. states {
  7. Delaying:
  8. "----" A 0 a_jumpIf (acs_namedexecutewithresult ("S7_GetCasingDelay") == 1, "Delay.Shorter")
  9. "----" A 0 a_jumpIf (callACS ("S7_GetCasingDelay") == 2, "Delay.EvenShorter")
  10. "----" A 0 a_jumpIf (callACS ("S7_GetCasingDelay") == 3, "Delay.ShortAsFuck")
  11. "----" A 0 a_jumpIf (callACS ("S7_GetCasingDelay") == 4, "Delay.DearLordDoYouHaveAFuckingToaster")
  12. "----" A 0 a_jumpIf (callACS ("S7_GetCasingDelay") == 5, "Delay.MeinFuckingGott")
  13. "----" A 0 a_jumpIf (acs_namedexecutewithresult ("S7_GetCasingDelay") == 6, "Delay.DearLordGoBuyANewComputerRightMotherfuckingNow")
  14. "----" A 5000
  15. goto Fade
  16. Delay.Shorter:
  17. "----" A 2500
  18. goto Fade
  19. Delay.EvenShorter:
  20. "----" A 1250
  21. goto Fade
  22. Delay.ShortAsFuck:
  23. "----" A 625
  24. goto Fade
  25. Delay.DearLordDoYouHaveAFuckingToaster:
  26. "----" A 313
  27. goto Fade
  28. Delay.MeinFuckingGott:
  29. "----" A 157
  30. goto Fade
  31. Delay.DearLordGoBuyANewComputerRightMotherfuckingNow:
  32. "----" A 70
  33. goto Fade
  34. Fade:
  35. "----" A 3 a_fadeOut (0.03)
  36. loop
  37. }
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement