Leo_V117

Platinum Arts Sandbox - Cutscenes Example

Sep 26th, 2011
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.99 KB | None | 0 0
  1. cs_post [
  2. r_global_set @var_intro 1
  3. r_loop_ents curmap ent [
  4. if (= (r_get_type ent) $ENT_CHAR) [
  5. if (= (r_get_faction ent) 1) [
  6. r_destroy ent
  7. ]
  8. ]
  9. ]
  10. ]
  11.  
  12. if (r_global_get @var_intro) [] [
  13. //initalise
  14. cs_interp_cos [
  15. cs_element_solid 0 0 $hud_right $hud_bottom 0 0 1000
  16. ]
  17. cs_action_movecamera 2 0
  18. cs_action_viewcamera 2 0
  19.  
  20. //transitions and controls
  21. cs_container_generic [
  22. cs_action_generic 10500 [
  23. cs_element_solid 0 0 $hud_right $hud_bottom 0 0 500 [
  24. cs_action_movecamera 1 0 [cs_action_movecamera 0 21000]
  25. cs_action_viewcamera 1 0 [cs_action_viewcamera 0 21000]
  26. cs_interp_dlinear [ cs_element_solid 0 0 $hud_right $hud_bottom 0 0 500 ]
  27. ]
  28. ]
  29. cs_action_generic 31000 [
  30. cs_element_solid 0 0 $hud_right $hud_bottom 0 0 1000 [
  31. cs_interp_one [
  32. cs_element_solid 0 0 $hud_right $hud_bottom 0 0 3000 [
  33. cs_interp_dlinear [
  34. cs_element_solid 0 0 $hud_right $hud_bottom 0 0 1000
  35. ]
  36. ]
  37. ]
  38. ]
  39. cs_action_generic 1000 [
  40. cs_action_viewport player 4000
  41. ]
  42. ]
  43. ] 0
  44.  
  45. //subtitles
  46. cs_interp_one [
  47. cs_container_generic [
  48. cs_action_generic 1000 [
  49. cs_element_text (- (div $hud_right 2) 100) (- $hud_bottom 300) 1200 0xFF00FF "Aiee!" 1500 [
  50. cs_element_text (- (div $hud_right 2) 600) (- $hud_bottom 300) 1200 0xFFFF00 "Hey buddy, are you alright?" 1500 [
  51. cs_element_text (- (div $hud_right 2) 600) (- $hud_bottom 300) 1200 0x00FFFF "I'm fine but the door's stuck" 2000 [
  52. cs_element_text (- (div $hud_right 2) 600) (- $hud_bottom 300) 1200 0xFFFF00 "It's indeed stuck, we'll look for another entrance!" 2500 [
  53. cs_element_text (- (div $hud_right 2) 600) (- $hud_bottom 300) 1200 0xFF0000 "You should look for another way out as well" 1500 [
  54. cs_element_text (- (div $hud_right 2) 400) (- $hud_bottom 300) 1200 0xFFFF00 "Let's move out!" 1000
  55. ]
  56. ]
  57. ]
  58. ]
  59. ]
  60. ]
  61. cs_action_generic 13000 [
  62. cs_element_text (- (div $hud_right 2) 600) (- $hud_bottom 300) 1200 0x007F7F "This place was built in the face of a cliff and has been abandoned for some years." 3000 [
  63. cs_element_text (- (div $hud_right 2) 600) (- $hud_bottom 300) 1200 0x007F7F "Frankly it looks more like a tomb than a mansion..." 3000 [
  64. cs_element_text (- (div $hud_right 2) 600) (- $hud_bottom 300) 1200 0x007F7F "Everyone here just disappeared one day and the place deemed cursed by the nearby town." 3000 [
  65. cs_element_text (- (div $hud_right 2) 600) (- $hud_bottom 300) 1200 0x007F7F "Regardless, I shouldn't stay in this forsaken place longer than required" 3000
  66. ]
  67. ]
  68. ]
  69. ]
  70. cs_action_generic 32000 [
  71. cs_container_translate (div $hud_right 2) (div $hud_bottom 2) [
  72. cs_interp_linear [
  73. cs_container_scale 2.5 2.5 [
  74. cs_interp_one [
  75. cs_element_text -200 -48 400 0x7F7F7F "Hirato Presents" 3000
  76. cs_element_text -100 48 200 0xFFFFFF "Mystara" 3000
  77. ]
  78. ] 3000
  79. ]
  80. ]
  81. ]
  82. ] 0
  83. ]
  84. ]
  85.  
  86.  
  87.  
Advertisement
Add Comment
Please, Sign In to add comment