Advertisement
Guest User

Sickboy

a guest
Mar 14th, 2008
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.08 KB | None | 0 0
  1. class Extended_Init_EventHandlers
  2. {
  3.     class AllVehicles
  4.     {
  5.         ECS_global_init = ECS_EH_INIT;
  6.     };
  7. };
  8. class Extended_Hit_EventHandlers
  9. {
  10.     class AllVehicles
  11.     {
  12.         ECS_global_hit = "[1,_this] call (ECS_functions select 111);";
  13.     };
  14. };
  15. class Extended_Killed_EventHandlers
  16. {
  17.     class AllVehicles
  18.     {
  19.         ECS_global_killed = "[2,_this] call (ECS_functions select 111);";
  20.     };
  21. };
  22. class Extended_Dammaged_EventHandlers
  23. {
  24.     class AllVehicles
  25.     {
  26.         ECS_global_dammaged = "[3,_this] call (ECS_functions select 111);";
  27.     };
  28. };
  29. class Extended_Fired_EventHandlers
  30. {
  31.     class AllVehicles
  32.     {
  33.         ECS_global_fired = "[4,_this] call (ECS_functions select 111);";
  34.     };
  35. };
  36. class Extended_incomingMissile_EventHandlers
  37. {
  38.     class AllVehicles
  39.     {
  40.         ECS_global_incomingMissile = "[5,_this] call (ECS_functions select 111);";
  41.     };
  42. };
  43. class Extended_getIn_EventHandlers
  44. {
  45.     class AllVehicles
  46.     {
  47.         ECS_global_getIn = "[6,_this] call (ECS_functions select 111);";
  48.     };
  49. };
  50. class Extended_getOut_EventHandlers
  51. {
  52.     class AllVehicles
  53.     {
  54.         ECS_global_getOut = "[7,_this] call (ECS_functions select 111);";
  55.     };
  56. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement