emplacement.hpp 845 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. class init
  2. {
  3. class marker
  4. {
  5. shape = "ELLIPSE";
  6. color = "ColorBLUFOR";
  7. brush = "FDiagonal";
  8. size[] = {100, 100};
  9. };
  10. class icon
  11. {
  12. shape = "ICON";
  13. type = "b_art";
  14. color = "ColorBLUFOR";
  15. };
  16. };
  17. class defending
  18. {
  19. class marker
  20. {
  21. shape = "ELLIPSE";
  22. brush = "BDiagonal";
  23. size[] = {100, 100};
  24. color = "ColorOrange";
  25. };
  26. class icon
  27. {
  28. shape = "ICON";
  29. type = "b_art";
  30. color = "ColorOrange";
  31. text = "(Under Attack)";
  32. };
  33. };
  34. class ammo
  35. {
  36. class marker
  37. {
  38. shape = "ELLIPSE";
  39. color = "ColorBLUFOR";
  40. brush = "FDiagonal";
  41. size[] = {100, 100};
  42. };
  43. class icon
  44. {
  45. shape = "ICON";
  46. type = "mil_warning";
  47. color = "ColorBLUFOR";
  48. text = "(Needs Ammo)";
  49. };
  50. };
  51. class truck
  52. {
  53. class marker {};
  54. class icon
  55. {
  56. shape = "ICON";
  57. type = "mil_warning";
  58. color = "ColorBLUFOR";
  59. text = "Repair Truck for";
  60. };
  61. };