Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- actor S7_CasingBase {
- speed 6
- +doomBounce -noGravity +windThrust +clientsideOnly
- +moveWithSector +missile +noBlockmap -dropOff
- +noTeleport +forceXYBillboard +ghost
- states {
- Delaying:
- "----" A 0 a_jumpIf (acs_namedexecutewithresult ("S7_GetCasingDelay") == 1, "Delay.Shorter")
- "----" A 0 a_jumpIf (callACS ("S7_GetCasingDelay") == 2, "Delay.EvenShorter")
- "----" A 0 a_jumpIf (callACS ("S7_GetCasingDelay") == 3, "Delay.ShortAsFuck")
- "----" A 0 a_jumpIf (callACS ("S7_GetCasingDelay") == 4, "Delay.DearLordDoYouHaveAFuckingToaster")
- "----" A 0 a_jumpIf (callACS ("S7_GetCasingDelay") == 5, "Delay.MeinFuckingGott")
- "----" A 0 a_jumpIf (acs_namedexecutewithresult ("S7_GetCasingDelay") == 6, "Delay.DearLordGoBuyANewComputerRightMotherfuckingNow")
- "----" A 5000
- goto Fade
- Delay.Shorter:
- "----" A 2500
- goto Fade
- Delay.EvenShorter:
- "----" A 1250
- goto Fade
- Delay.ShortAsFuck:
- "----" A 625
- goto Fade
- Delay.DearLordDoYouHaveAFuckingToaster:
- "----" A 313
- goto Fade
- Delay.MeinFuckingGott:
- "----" A 157
- goto Fade
- Delay.DearLordGoBuyANewComputerRightMotherfuckingNow:
- "----" A 70
- goto Fade
- Fade:
- "----" A 3 a_fadeOut (0.03)
- loop
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement