Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. class opendoor
  2. {
  3. displayName="Open Canopy";
  4. position="pos driver";
  5. radius=5;
  6. showWindow = 0;
  7. onlyforplayer = true;
  8. hideOnUse = 1;
  9. condition="this animationPhase ""canopy"" < 0.5 and (speed this < 270)";
  10. statement="this animate [""canopy"", 1];";
  11. };
  12.  
  13. class closedoor
  14. {
  15. displayName="Close Canopy";
  16. position="pos driver";
  17. radius=5;
  18. showWindow = 0;
  19. onlyforplayer = true;
  20. hideOnUse = 1;
  21. condition="this animationPhase ""canopy"" >= 0.5 and (speed this < 280)";
  22. statement="this animate [""canopy"", 0];";
  23. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement