Advertisement
Guest User

Untitled

a guest
Sep 24th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.36 KB | None | 0 0
  1. class Dialog_CallCopsEmts
  2. {
  3. idd = -1;
  4. movingEnable = 1;
  5. controlsBackground[] = {Mainback};
  6. objects[] = { };
  7. onLoad = "";
  8. controls[] = {TEXT1, TEXT2, TEXT3, BUTTON1, BUTTON2, BUTTON3};
  9. class Mainback: RscPicture
  10. {
  11. x = 0.26875-0.02;
  12. y = 0.30604-0.02;
  13. w = 0.476+0.04;
  14. h = 0.31189+0.04;
  15. moving = 1;
  16. };
  17. class TEXT1: RscText
  18. {
  19. x = 0.3;
  20. y = 0.35088;
  21. idc = 6969;
  22. w = 0.41625;
  23. h = 0.05068;
  24. style = ST_LEFT;
  25. colorText[] = {0.8,0.8,0.8,1};
  26. colorBackground[] = {0,0,0,0.85};
  27. font = Zeppelin32;
  28. SizeEX = 0.024;
  29. text = "";
  30. };
  31. class TEXT2: RscText
  32. {
  33. x = 0.3;
  34. y = 0.35088+0.05068;
  35. idc = 465454;
  36. w = 0.41625;
  37. h = 0.05068;
  38. style = ST_LEFT;
  39. colorText[] = {0.8,0.8,0.8,1};
  40. colorBackground[] = {0,0,0,0.85};
  41. font = Zeppelin32;
  42. SizeEX = 0.024;
  43. text = "Police not being called";
  44. };
  45. class TEXT3: RscText
  46. {
  47. x = 0.3;
  48. y = 0.35088+0.05068+0.05068;
  49. idc = 465455;
  50. w = 0.41625;
  51. h = 0.05068;
  52. style = ST_LEFT;
  53. colorText[] = {0.8,0.8,0.8,1};
  54. colorBackground[] = {0,0,0,0.85};
  55. font = Zeppelin32;
  56. SizeEX = 0.024;
  57. text = "EMT not being called";
  58. };
  59. class BUTTON1: RscShortcutButton
  60. {
  61. x = 0.28625;
  62. y = 0.47173;
  63. idc = 465456;
  64. w = 0.20;
  65. style = ST_CENTER;
  66. colorText[] = {0.8,0.8,0.8,1};
  67. font = Zeppelin32;
  68. SizeEX = 0.025;
  69. text = "Call Police";
  70. action = "RL_YesNoRequestCops = true;ctrlSetText [465454,""Police are being called""];ctrlShow [465458 , true];";
  71. shortcuts[] = {0x00050000 + 0, 28, 57, 156};
  72. textureNoShortcut = "";
  73. period = 0.4;
  74. };
  75. class BUTTON2: RscShortcutButton
  76. {
  77. x = 0.51;
  78. y = 0.47173;
  79. idc = 465457;
  80. w = 0.20;
  81. style = ST_CENTER;
  82. colorText[] = {0.8,0.8,0.8,1};
  83. font = Zeppelin32;
  84. SizeEX = 0.025;
  85. text = "Call EMT";
  86. action = "RL_YesNoRequestEmt = true;ctrlSetText [465455,""EMT are being called""];ctrlShow [465458 , true];";
  87. default = false;
  88. shortcuts[] = {0x00050000 + 0, 28, 57, 156};
  89. textureNoShortcut = "";
  90. period = 0.4;
  91. };
  92. class BUTTON3: RscShortcutButton
  93. {
  94. x = 0.51 - 0.10;
  95. y = 0.53173;
  96. idc = 465458;
  97. w = 0.20;
  98. style = ST_CENTER;
  99. colorText[] = {0.8,0.8,0.8,1};
  100. font = Zeppelin32;
  101. SizeEX = 0.025;
  102. text = "Call";
  103. action = "RL_YesNoEmtCops = true;closeDialog 0;";
  104. shortcuts[] = {0x00050000 + 0, 28, 57, 156};
  105. textureNoShortcut = "";
  106. period = 0.4;
  107. };
  108. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement