Advertisement
Guest User

Description.ext

a guest
Aug 10th, 2013
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. /////////////////////MISSION ENDINGS///////////////////////////////
  2. class CfgDebriefing
  3. //--- endings // blue side first
  4. {
  5. class End1
  6. { //West winner
  7. title = "Mission Complete";
  8. subtitle = "";
  9. description = "Your team has won the battle.";
  10. pictureBackground = "";
  11. picture = "b_inf";
  12. pictureColor[] = {0.0,0.3,0.6,1};
  13. };
  14.  
  15. class End2
  16. { //East loser
  17. title = "Mission Failed";
  18. subtitle = "";
  19. description = "Your team has lost the battle.";
  20. pictureBackground = "";
  21. picture = "b_inf";
  22. pictureColor[] = {0.5,0.0,0.0,1};
  23. };
  24.  
  25. class End3
  26. { //West loser
  27. title = "Mission Failed";
  28. subtitle = "";
  29. description = "Your team has lost the battle.";
  30. pictureBackground = "";
  31. picture = "b_inf";
  32. pictureColor[] = {0.0,0.3,0.6,1};
  33. };
  34.  
  35. class End4
  36. { //East winner
  37. title = "Mission Complete";
  38. subtitle = "";
  39. description = "Your team has won the battle.";
  40. pictureBackground = "";
  41. picture = "b_inf";
  42. pictureColor[] = {0.5,0.0,0.0,1};
  43. };
  44.  
  45.  
  46.  
  47. };
  48. ///////////////////END MISSION ENDINGS///////////////////////////////////
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement