Advertisement
Irkutsk86

Untitled

Dec 31st, 2024
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 2.26 KB | None | 0 0
  1. crateClassnames[] =
  2. {
  3.     "CargoNet_01_box_F",
  4.     "Exile_Container_SupplyBox",
  5.     "I_CargoNet_01_ammo_F",
  6.     "O_CargoNet_01_ammo_F",
  7.     "B_CargoNet_01_ammo_F",
  8.     "I_supplyCrate_F",
  9.     "O_supplyCrate_F",
  10.     "B_supplyCrate_F",
  11.     "C_supplyCrate_F",
  12.     "IG_supplyCrate_F",
  13.     "Box_NATO_AmmoVeh_F",
  14.     "Box_East_AmmoVeh_F",
  15.     "Box_IND_AmmoVeh_F",
  16.     "I_CargoNET_01_F",
  17.     "O_CargoNET_01_F",
  18.     "B_CargoNET_01_F",
  19.     "Land_CargoBox_V1_F",
  20.     "ASC_B_box",
  21.     "Box_NATO_Wps_F",
  22.     "Box_East_Wps_F",
  23.     "Box_IND_Wps_F",
  24.     "Box_East_WpsLaunch_F",
  25.     "Box_NATO_WpsLaunch_F",
  26.     "Box_IND_WpsLaunch_F",
  27.     "Box_IND_WpsSpecial_F",
  28.     "Box_East_WpsSpecial_F",
  29.     "Box_NATO_WpsSpecial_F",
  30.     "Box_NATO_Wps_F",
  31.     "Box_East_Wps_F",
  32.     "Box_IND_Wps_F",
  33.     "Box_East_WpsLaunch_F",
  34.     "Box_NATO_WpsLaunch_F",
  35.     "Box_IND_WpsLaunch_F",
  36.     "Box_IND_WpsSpecial_F",
  37.     "Box_East_WpsSpecial_F",
  38.     "Box_NATO_WpsSpecial_F",
  39.     "Box_NATO_AmmoOrd_F",
  40.     "Box_East_AmmoOrd_F",
  41.     "Box_IND_AmmoOrd_F",
  42.     "Box_NATO_Grenades_F",
  43.     "Box_East_Grenades_F",
  44.     "Box_IND_Grenades_F",
  45.     "Box_NATO_Ammo_F",
  46.     "Box_East_Ammo_F",
  47.     "Box_IND_Ammo_F",
  48.     "Box_IND_Support_F",
  49.     "Box_East_Support_F",
  50.     "Box_NATO_Support_F"
  51. };
  52.  
  53. //factor defines the difference between crate sales price of * items.
  54. crateSellFactor = 0.2;
  55.  
  56. //Spawn bought things from vehicle / air trader at an object
  57. spawnAtLocation = false;
  58.  
  59. //Object that the trader will search for to spawn the vehicle at.
  60. spawnAtLocationSearchTypes[] = {"Land_HelipadEmpty_F"};
  61.  
  62. spawnAtLocationAir = false;
  63. spawnAtLocationAirSearchTypes[] = {"Land_HelipadEmpty_F"};
  64.  
  65. spawnAtLocationSea = false;
  66. spawnAtLocationSeaSearchTypes[] = {"Land_HelipadEmpty_F"};
  67.  
  68. //Quality colors, Hex is supported.
  69. //NO # FOR HEX
  70. qualityColors[] =
  71. {
  72.     "ffffff", //0 //White, default quality
  73.     "ffffff", //1 (Default Exile has 0 and 1 as white.)
  74.     {0.62, 0.87 ,0.23, 1}, //2
  75.     {0, 0.78, 0.92, 1}, //3
  76.     {0.62, 0.27, 0.58, 1}, //4
  77.     {1, 0.7, 0.09, 1}, //5
  78.     {0.93, 0, 0.48, 1} //6
  79. };
  80.  
  81. //Maximum quantity for items to be purchased at once.
  82. purchaseMax = 10; //Maximum of 10 items purchased at once.
  83.  
  84. //Display items that do not have enough respect with ???
  85. displayNotEnoughRespect = true;
  86.  
  87. //Display text for not enough respect
  88. displayNotEnoughRespectText = "???";
  89.  
  90. //extDB3
  91. isUsingExtDB3 = true;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement