From 1b81f517ac4c4fe1ca8b30677e657415f3a65cbe Mon Sep 17 00:00:00 2001 From: Florian Kinder Date: Mon, 3 Feb 2014 18:13:22 +0100 Subject: [PATCH 1/7] Added Tool to create trader config --- Tools/TraderMigration/serverTraders2cfg.pl | 97 ++++++++++++++++++++++ 1 file changed, 97 insertions(+) create mode 100644 Tools/TraderMigration/serverTraders2cfg.pl diff --git a/Tools/TraderMigration/serverTraders2cfg.pl b/Tools/TraderMigration/serverTraders2cfg.pl new file mode 100644 index 000000000..4edb2d24e --- /dev/null +++ b/Tools/TraderMigration/serverTraders2cfg.pl @@ -0,0 +1,97 @@ +#!/usr/bin/perl -w +use strict; +use warnings; +use DBI; +use JSON; +use Data::Dumper; + +my $pathServerTradersSQF = '..\..\Server Files\MPMissions\DayZ_Epoch_11.Chernarus\server_traders.sqf'; +my $pathServerTradersCfg = '..\..\SQF\dayz_code\Configs\CfgServerTrader\\'; +my $MySQL = DBI->connect('DBI:mysql:host=localhost;database=test2', 'root', 'root'); + +open(TRADERSQF, '<', $pathServerTradersSQF) or die $!; +my $trader = ''; +my $isTrader = 0; +my @traders; +while () { + if (/^menu_(\w+)\s*=\s*\[/) { + $trader = '{"'.$1.'":['; + $isTrader = 1; + } + elsif (/\];/ && $isTrader) { + $trader .= ']}'; + $trader =~ s/\r|\n|\t//g; + push(@traders, JSON->new()->decode($trader)); + } + elsif ($isTrader) { + $trader .= $_; + } +} +close(TRADERSQF); + +$trader = {}; +my $traderHumanity = { + Hero => {} + ,Friendly => {} + ,Neutral => {} + ,Bandit => {} +}; +foreach my $trad (@traders) { + my $name = (keys %{$trad})[0]; + $trader->{$name} = { + Humanity => @{$trad->{$name}}[2] + ,Categories => @{$trad->{$name}}[0] + ,Special => @{$trad->{$name}}[1] + }; + + if ($trader->{$name}->{Humanity} =~ /hero/) { + $traderHumanity->{Hero}->{$name} = $trader->{$name}; + } + elsif ($trader->{$name}->{Humanity} =~ /friendly/) { + $traderHumanity->{Friendly}->{$name} = $trader->{$name}; + } + elsif ($trader->{$name}->{Humanity} =~ /neutral/) { + $traderHumanity->{Neutral}->{$name} = $trader->{$name}; + } + elsif ($trader->{$name}->{Humanity} =~ /hostile/) { + $traderHumanity->{Bandit}->{$name} = $trader->{$name}; + } +} + +foreach my $traderhuman (keys $traderHumanity) { + my $cfg = ''; + foreach my $class (keys %{$traderHumanity->{$traderhuman}}) { + $cfg .= "class ".$class." {\n"; + $cfg .= "\thumanity = \"".$traderHumanity->{$traderhuman}->{$class}->{Humanity}."\";\n"; + $cfg .= "\tcategory[] = {\n"; + foreach my $cat (@{$traderHumanity->{$traderhuman}->{$class}->{Categories}}) { + my $catName = ''; + my $sth = $MySQL->prepare(q~ + SELECT + name AS CatName + FROM + trader_tids + WHERE + id = ? + ~); + $sth->execute( + $cat->[1] + ); + while (my $row = $sth->fetchrow_hashref()) { + $catName = $row->{CatName}; + } + $sth->finish(); + $catName =~ s~ |-|/~~g; + + $cfg .= "\t\t{\"".$cat->[0]."\",\"".$catName."\"}\n"; + } + $cfg .= "\t};\n"; + $cfg .= "};\n" + } + + open(CFG, '>', $pathServerTradersCfg.'Trader'.$traderhuman.'.hpp') or die $!; + print CFG $cfg; + close(CFG); +} + +exit(0); \ No newline at end of file From eba4091d930f8a4644de33ace7f24998b943b88a Mon Sep 17 00:00:00 2001 From: Florian Kinder Date: Mon, 3 Feb 2014 18:13:31 +0100 Subject: [PATCH 2/7] created configs --- .../Configs/CfgServerTrader/TraderBandit.hpp | 11 ++ .../CfgServerTrader/TraderFriendly.hpp | 74 ++++++++ .../Configs/CfgServerTrader/TraderHero.hpp | 11 ++ .../Configs/CfgServerTrader/TraderNeutral.hpp | 171 ++++++++++++++++++ SQF/dayz_code/Configs/cfgServerTrader.hpp | 8 + 5 files changed, 275 insertions(+) create mode 100644 SQF/dayz_code/Configs/CfgServerTrader/TraderBandit.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTrader/TraderFriendly.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTrader/TraderHero.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTrader/TraderNeutral.hpp create mode 100644 SQF/dayz_code/Configs/cfgServerTrader.hpp diff --git a/SQF/dayz_code/Configs/CfgServerTrader/TraderBandit.hpp b/SQF/dayz_code/Configs/CfgServerTrader/TraderBandit.hpp new file mode 100644 index 000000000..a282132c2 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTrader/TraderBandit.hpp @@ -0,0 +1,11 @@ +class GUE_Soldier_MG { + humanity = "hostile"; + category[] = { + {"Ammunition","Ammunition"} + {"Clothing","Clothing"} + {"Helicopter Armed","HelicopterArmed"} + {"Military Armed","MilitaryArmed"} + {"Trucks Armed","TrucksArmed"} + {"Weapons","Weapons"} + }; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTrader/TraderFriendly.hpp b/SQF/dayz_code/Configs/CfgServerTrader/TraderFriendly.hpp new file mode 100644 index 000000000..c6968c796 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTrader/TraderFriendly.hpp @@ -0,0 +1,74 @@ +class Profiteer4 { + humanity = "friendly"; + category[] = { + {"Bikes and ATV","BikesandATV"} + {"Buses and Vans","BusesandVans"} + {"Cargo Trucks","CargoTrucks"} + {"Fuel Trucks","FuelTrucks"} + {"Military Unarmed","MilitaryUnarmed"} + {"Trucks","Trucks"} + {"Used Cars","UsedCars"} + {"Utility Vehicles","UtilityVehicles"} + }; +}; +class RU_WorkWoman1 { + humanity = "friendly"; + category[] = { + {"Backpacks","Backpacks"} + {"Clothes","Clothes"} + {"Cooked Meats","CookedMeats"} + {"Drinks","Drinks"} + {"Packaged Food","PackagedFood"} + }; +}; +class UN_CDF_Soldier_Pilot_EP1 { + humanity = "friendly"; + category[] = { + {"Bikes and ATV","BikesandATV"} + {"Buses and Vans","BusesandVans"} + {"Cargo Trucks","CargoTrucks"} + {"Fuel Trucks","FuelTrucks"} + {"Military Unarmed","MilitaryUnarmed"} + {"Trucks Unarmed","TrucksUnarmed"} + {"Used Cars","UsedCars"} + {"Utility Vehicles","UtilityVehicles"} + }; +}; +class Rocker4 { + humanity = "friendly"; + category[] = { + {"Assault Rifle","AssaultRifle"} + {"Light Machine Gun","LightMachineGun"} + {"Pistols","Pistols"} + {"Shotguns and Single-shot","ShotgunsandSingleshot"} + {"Sniper Rifle","SniperRifle"} + {"Submachine Guns","SubmachineGuns"} + }; +}; +class RU_Citizen3 { + humanity = "friendly"; + category[] = { + {"Assault Rifle Ammo","AssaultRifleAmmo"} + {"Light Machine Gun Ammo","LightMachineGunAmmo"} + {"Pistol Ammo","PistolAmmo"} + {"Shotguns and Single-shot Ammo","ShotgunsandSingleshotAmmo"} + {"Sniper Rifle Ammo","SniperRifleAmmo"} + {"Submachine Gun Ammo","SubmachineGunAmmo"} + }; +}; +class Woodlander1 { + humanity = "friendly"; + category[] = { + {"Building Supplies","BuildingSupplies"} + {"Toolbelt Items","ToolbeltItems"} + {"Vehicle Parts","VehicleParts"} + }; +}; +class Dr_Annie_Baker_EP1 { + humanity = "friendly"; + category[] = { + {"Chem-lites/Flares","ChemlitesFlares"} + {"Medical Supplies","MedicalSupplies"} + {"Smoke Grenades","SmokeGrenades"} + }; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTrader/TraderHero.hpp b/SQF/dayz_code/Configs/CfgServerTrader/TraderHero.hpp new file mode 100644 index 000000000..ca66588bd --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTrader/TraderHero.hpp @@ -0,0 +1,11 @@ +class RU_Functionary1 { + humanity = "hero"; + category[] = { + {"Ammunition","Ammunition"} + {"Clothes","Clothes"} + {"Helicopter Armed","HelicopterArmed"} + {"Military Armed","MilitaryArmed"} + {"Trucks Armed","TrucksArmed"} + {"Weapons","Weapons"} + }; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTrader/TraderNeutral.hpp b/SQF/dayz_code/Configs/CfgServerTrader/TraderNeutral.hpp new file mode 100644 index 000000000..8730c9b39 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTrader/TraderNeutral.hpp @@ -0,0 +1,171 @@ +class Doctor { + humanity = "neutral"; + category[] = { + {"Chem-lites/Flares","ChemlitesFlares"} + {"Medical Supplies","MedicalSupplies"} + {"Smoke Grenades","SmokeGrenades"} + }; +}; +class HouseWife1 { + humanity = "neutral"; + category[] = { + {"Boats Armed","BoatsArmed"} + {"Boats Unarmed","BoatsUnarmed"} + }; +}; +class TK_GUE_Soldier_5_EP1 { + humanity = "neutral"; + category[] = { + {"Building Supplies","BuildingSupplies"} + {"Toolbelt Items","ToolbeltItems"} + {"Vehicle Parts","VehicleParts"} + }; +}; +class RU_Citizen4 { + humanity = "neutral"; + category[] = { + {"Wholesale","Wholesale"} + }; +}; +class Worker3 { + humanity = "neutral"; + category[] = { + {"Bikes and ATV","BikesandATV"} + {"Buses and Vans","BusesandVans"} + {"Cargo Trucks","CargoTrucks"} + {"Fuel Trucks","FuelTrucks"} + {"Military Unarmed","MilitaryUnarmed"} + {"Trucks","Trucks"} + {"Used Cars","UsedCars"} + {"Utility Vehicles","UtilityVehicles"} + }; +}; +class Dr_Hladik_EP1 { + humanity = "neutral"; + category[] = { + {"Chem-lites/Flares","ChemlitesFlares"} + {"Medical Supplies","MedicalSupplies"} + {"Smoke Grenades","SmokeGrenades"} + }; +}; +class RU_Villager3 { + humanity = "neutral"; + category[] = { + {"Boats Armed","BoatsArmed"} + {"Boats Unarmed","BoatsUnarmed"} + }; +}; +class Worker2 { + humanity = "neutral"; + category[] = { + {"Airplanes","Airplanes"} + {"Helicopter Unarmed","HelicopterUnarmed"} + }; +}; +class GUE_Woodlander2 { + humanity = "neutral"; + category[] = { + {"Black Market Ammo","BlackMarketAmmo"} + {"Black Market Weapons","BlackMarketWeapons"} + {"Explosives","Explosives"} + }; +}; +class Rita_Ensler_EP1 { + humanity = "neutral"; + category[] = { + {"Backpacks","Backpacks"} + {"Clothes","Clothes"} + {"Cooked Meats","CookedMeats"} + {"Drinks","Drinks"} + {"Packaged Food","PackagedFood"} + }; +}; +class Woodlander3 { + humanity = "neutral"; + category[] = { + {"Building Supplies","BuildingSupplies"} + {"Toolbelt Items","ToolbeltItems"} + {"Vehicle Parts","VehicleParts"} + }; +}; +class RU_Citizen1 { + humanity = "neutral"; + category[] = { + {"Wholesale","Wholesale"} + }; +}; +class Pilot_EP1 { + humanity = "neutral"; + category[] = { + {"Assault Rifle Ammo","AssaultRifleAmmo"} + {"Light Machine Gun Ammo","LightMachineGunAmmo"} + {"Pistol Ammo","PistolAmmo"} + {"Shotguns and Single-shot Ammo","ShotgunsandSingleshotAmmo"} + {"Sniper Rifle Ammo","SniperRifleAmmo"} + {"Submachine Gun Ammo","SubmachineGunAmmo"} + }; +}; +class RU_Profiteer4 { + humanity = "neutral"; + category[] = { + {"Bikes and ATV","BikesandATV"} + {"Buses and Vans","BusesandVans"} + {"Cargo Trucks","CargoTrucks"} + {"Fuel Trucks","FuelTrucks"} + {"Military Unarmed","MilitaryUnarmed"} + {"Trucks","Trucks"} + {"Used Cars","UsedCars"} + {"Utility Vehicles","UtilityVehicles"} + }; +}; +class Soldier_GL_M16A2_PMC { + humanity = "neutral"; + category[] = { + {"Black Market Ammo","BlackMarketAmmo"} + {"Black Market Weapons","BlackMarketWeapons"} + {"Explosives","Explosives"} + }; +}; +class CIV_EuroMan01_EP1 { + humanity = "neutral"; + category[] = { + {"Assault Rifle","AssaultRifle"} + {"Light Machine Gun","LightMachineGun"} + {"Pistols","Pistols"} + {"Shotguns and Single-shot","ShotgunsandSingleshot"} + {"Sniper Rifle","SniperRifle"} + {"Submachine Guns","SubmachineGuns"} + }; +}; +class RU_WorkWoman5 { + humanity = "neutral"; + category[] = { + {"Backpacks","Backpacks"} + {"Clothes","Clothes"} + {"Cooked Meats","CookedMeats"} + {"Drinks","Drinks"} + {"Packaged Food","PackagedFood"} + }; +}; +class TK_CIV_Takistani04_EP1 { + humanity = "neutral"; + category[] = { + {"Assault Rifle","AssaultRifle"} + {"Light Machine Gun","LightMachineGun"} + {"Pistols","Pistols"} + {"Shotguns and Single-shot","ShotgunsandSingleshot"} + {"Sniper Rifle","SniperRifle"} + {"Submachine Guns","SubmachineGuns"} + }; +}; +class CIV_EuroMan02_EP1 { + humanity = "neutral"; + category[] = { + {"Assault Rifle Ammo","AssaultRifleAmmo"} + {"Light Machine Gun Ammo","LightMachineGunAmmo"} + {"Pistol Ammo","PistolAmmo"} + {"Shotguns and Single-shot Ammo","ShotgunsandSingleshotAmmo"} + {"Sniper Rifle Ammo","SniperRifleAmmo"} + {"Submachine Gun Ammo","SubmachineGunAmmo"} + }; +}; diff --git a/SQF/dayz_code/Configs/cfgServerTrader.hpp b/SQF/dayz_code/Configs/cfgServerTrader.hpp new file mode 100644 index 000000000..3b6e9cee3 --- /dev/null +++ b/SQF/dayz_code/Configs/cfgServerTrader.hpp @@ -0,0 +1,8 @@ +#include "CfgServerTrader\TraderCategory.hpp" + +class CfgServerTrader { + #include "CfgServerTrader\TraderHero.hpp" + #include "CfgServerTrader\TraderFriendly.hpp" + #include "CfgServerTrader\TraderNeutral.hpp" + #include "CfgServerTrader\TraderBandit.hpp" +}; \ No newline at end of file From 8606f7ba111a89d79841dd51174dbac0a2c33fa4 Mon Sep 17 00:00:00 2001 From: Florian Kinder Date: Tue, 4 Feb 2014 14:12:33 +0100 Subject: [PATCH 3/7] Added Humantiy Prefix to TraderCategory --- .../Configs/CfgServerTrader/TraderBandit.hpp | 12 +- .../CfgServerTrader/TraderFriendly.hpp | 78 ++++----- .../Configs/CfgServerTrader/TraderHero.hpp | 12 +- .../Configs/CfgServerTrader/TraderNeutral.hpp | 152 +++++++++--------- Tools/TraderMigration/serverTraders2cfg.pl | 2 +- 5 files changed, 128 insertions(+), 128 deletions(-) diff --git a/SQF/dayz_code/Configs/CfgServerTrader/TraderBandit.hpp b/SQF/dayz_code/Configs/CfgServerTrader/TraderBandit.hpp index a282132c2..4a8dc6b3f 100644 --- a/SQF/dayz_code/Configs/CfgServerTrader/TraderBandit.hpp +++ b/SQF/dayz_code/Configs/CfgServerTrader/TraderBandit.hpp @@ -1,11 +1,11 @@ class GUE_Soldier_MG { humanity = "hostile"; category[] = { - {"Ammunition","Ammunition"} - {"Clothing","Clothing"} - {"Helicopter Armed","HelicopterArmed"} - {"Military Armed","MilitaryArmed"} - {"Trucks Armed","TrucksArmed"} - {"Weapons","Weapons"} + {"Ammunition","BanditAmmunition"} + {"Clothing","BanditClothing"} + {"Helicopter Armed","BanditHelicopterArmed"} + {"Military Armed","BanditMilitaryArmed"} + {"Trucks Armed","BanditTrucksArmed"} + {"Weapons","BanditWeapons"} }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTrader/TraderFriendly.hpp b/SQF/dayz_code/Configs/CfgServerTrader/TraderFriendly.hpp index c6968c796..790481831 100644 --- a/SQF/dayz_code/Configs/CfgServerTrader/TraderFriendly.hpp +++ b/SQF/dayz_code/Configs/CfgServerTrader/TraderFriendly.hpp @@ -1,74 +1,74 @@ class Profiteer4 { humanity = "friendly"; category[] = { - {"Bikes and ATV","BikesandATV"} - {"Buses and Vans","BusesandVans"} - {"Cargo Trucks","CargoTrucks"} - {"Fuel Trucks","FuelTrucks"} - {"Military Unarmed","MilitaryUnarmed"} - {"Trucks","Trucks"} - {"Used Cars","UsedCars"} - {"Utility Vehicles","UtilityVehicles"} + {"Bikes and ATV","FriendlyBikesandATV"} + {"Buses and Vans","FriendlyBusesandVans"} + {"Cargo Trucks","FriendlyCargoTrucks"} + {"Fuel Trucks","FriendlyFuelTrucks"} + {"Military Unarmed","FriendlyMilitaryUnarmed"} + {"Trucks","FriendlyTrucks"} + {"Used Cars","FriendlyUsedCars"} + {"Utility Vehicles","FriendlyUtilityVehicles"} }; }; class RU_WorkWoman1 { humanity = "friendly"; category[] = { - {"Backpacks","Backpacks"} - {"Clothes","Clothes"} - {"Cooked Meats","CookedMeats"} - {"Drinks","Drinks"} - {"Packaged Food","PackagedFood"} + {"Backpacks","FriendlyBackpacks"} + {"Clothes","FriendlyClothes"} + {"Cooked Meats","FriendlyCookedMeats"} + {"Drinks","FriendlyDrinks"} + {"Packaged Food","FriendlyPackagedFood"} }; }; class UN_CDF_Soldier_Pilot_EP1 { humanity = "friendly"; category[] = { - {"Bikes and ATV","BikesandATV"} - {"Buses and Vans","BusesandVans"} - {"Cargo Trucks","CargoTrucks"} - {"Fuel Trucks","FuelTrucks"} - {"Military Unarmed","MilitaryUnarmed"} - {"Trucks Unarmed","TrucksUnarmed"} - {"Used Cars","UsedCars"} - {"Utility Vehicles","UtilityVehicles"} + {"Bikes and ATV","FriendlyBikesandATV"} + {"Buses and Vans","FriendlyBusesandVans"} + {"Cargo Trucks","FriendlyCargoTrucks"} + {"Fuel Trucks","FriendlyFuelTrucks"} + {"Military Unarmed","FriendlyMilitaryUnarmed"} + {"Trucks Unarmed","FriendlyTrucksUnarmed"} + {"Used Cars","FriendlyUsedCars"} + {"Utility Vehicles","FriendlyUtilityVehicles"} }; }; class Rocker4 { humanity = "friendly"; category[] = { - {"Assault Rifle","AssaultRifle"} - {"Light Machine Gun","LightMachineGun"} - {"Pistols","Pistols"} - {"Shotguns and Single-shot","ShotgunsandSingleshot"} - {"Sniper Rifle","SniperRifle"} - {"Submachine Guns","SubmachineGuns"} + {"Assault Rifle","FriendlyAssaultRifle"} + {"Light Machine Gun","FriendlyLightMachineGun"} + {"Pistols","FriendlyPistols"} + {"Shotguns and Single-shot","FriendlyShotgunsandSingleshot"} + {"Sniper Rifle","FriendlySniperRifle"} + {"Submachine Guns","FriendlySubmachineGuns"} }; }; class RU_Citizen3 { humanity = "friendly"; category[] = { - {"Assault Rifle Ammo","AssaultRifleAmmo"} - {"Light Machine Gun Ammo","LightMachineGunAmmo"} - {"Pistol Ammo","PistolAmmo"} - {"Shotguns and Single-shot Ammo","ShotgunsandSingleshotAmmo"} - {"Sniper Rifle Ammo","SniperRifleAmmo"} - {"Submachine Gun Ammo","SubmachineGunAmmo"} + {"Assault Rifle Ammo","FriendlyAssaultRifleAmmo"} + {"Light Machine Gun Ammo","FriendlyLightMachineGunAmmo"} + {"Pistol Ammo","FriendlyPistolAmmo"} + {"Shotguns and Single-shot Ammo","FriendlyShotgunsandSingleshotAmmo"} + {"Sniper Rifle Ammo","FriendlySniperRifleAmmo"} + {"Submachine Gun Ammo","FriendlySubmachineGunAmmo"} }; }; class Woodlander1 { humanity = "friendly"; category[] = { - {"Building Supplies","BuildingSupplies"} - {"Toolbelt Items","ToolbeltItems"} - {"Vehicle Parts","VehicleParts"} + {"Building Supplies","FriendlyBuildingSupplies"} + {"Toolbelt Items","FriendlyToolbeltItems"} + {"Vehicle Parts","FriendlyVehicleParts"} }; }; class Dr_Annie_Baker_EP1 { humanity = "friendly"; category[] = { - {"Chem-lites/Flares","ChemlitesFlares"} - {"Medical Supplies","MedicalSupplies"} - {"Smoke Grenades","SmokeGrenades"} + {"Chem-lites/Flares","FriendlyChemlitesFlares"} + {"Medical Supplies","FriendlyMedicalSupplies"} + {"Smoke Grenades","FriendlySmokeGrenades"} }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTrader/TraderHero.hpp b/SQF/dayz_code/Configs/CfgServerTrader/TraderHero.hpp index ca66588bd..6372d869c 100644 --- a/SQF/dayz_code/Configs/CfgServerTrader/TraderHero.hpp +++ b/SQF/dayz_code/Configs/CfgServerTrader/TraderHero.hpp @@ -1,11 +1,11 @@ class RU_Functionary1 { humanity = "hero"; category[] = { - {"Ammunition","Ammunition"} - {"Clothes","Clothes"} - {"Helicopter Armed","HelicopterArmed"} - {"Military Armed","MilitaryArmed"} - {"Trucks Armed","TrucksArmed"} - {"Weapons","Weapons"} + {"Ammunition","HeroAmmunition"} + {"Clothes","HeroClothes"} + {"Helicopter Armed","HeroHelicopterArmed"} + {"Military Armed","HeroMilitaryArmed"} + {"Trucks Armed","HeroTrucksArmed"} + {"Weapons","HeroWeapons"} }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTrader/TraderNeutral.hpp b/SQF/dayz_code/Configs/CfgServerTrader/TraderNeutral.hpp index 8730c9b39..98661dadc 100644 --- a/SQF/dayz_code/Configs/CfgServerTrader/TraderNeutral.hpp +++ b/SQF/dayz_code/Configs/CfgServerTrader/TraderNeutral.hpp @@ -1,171 +1,171 @@ class Doctor { humanity = "neutral"; category[] = { - {"Chem-lites/Flares","ChemlitesFlares"} - {"Medical Supplies","MedicalSupplies"} - {"Smoke Grenades","SmokeGrenades"} + {"Chem-lites/Flares","NeutralChemlitesFlares"} + {"Medical Supplies","NeutralMedicalSupplies"} + {"Smoke Grenades","NeutralSmokeGrenades"} }; }; class HouseWife1 { humanity = "neutral"; category[] = { - {"Boats Armed","BoatsArmed"} - {"Boats Unarmed","BoatsUnarmed"} + {"Boats Armed","NeutralBoatsArmed"} + {"Boats Unarmed","NeutralBoatsUnarmed"} }; }; class TK_GUE_Soldier_5_EP1 { humanity = "neutral"; category[] = { - {"Building Supplies","BuildingSupplies"} - {"Toolbelt Items","ToolbeltItems"} - {"Vehicle Parts","VehicleParts"} + {"Building Supplies","NeutralBuildingSupplies"} + {"Toolbelt Items","NeutralToolbeltItems"} + {"Vehicle Parts","NeutralVehicleParts"} }; }; class RU_Citizen4 { humanity = "neutral"; category[] = { - {"Wholesale","Wholesale"} + {"Wholesale","NeutralWholesale"} }; }; class Worker3 { humanity = "neutral"; category[] = { - {"Bikes and ATV","BikesandATV"} - {"Buses and Vans","BusesandVans"} - {"Cargo Trucks","CargoTrucks"} - {"Fuel Trucks","FuelTrucks"} - {"Military Unarmed","MilitaryUnarmed"} - {"Trucks","Trucks"} - {"Used Cars","UsedCars"} - {"Utility Vehicles","UtilityVehicles"} + {"Bikes and ATV","NeutralBikesandATV"} + {"Buses and Vans","NeutralBusesandVans"} + {"Cargo Trucks","NeutralCargoTrucks"} + {"Fuel Trucks","NeutralFuelTrucks"} + {"Military Unarmed","NeutralMilitaryUnarmed"} + {"Trucks","NeutralTrucks"} + {"Used Cars","NeutralUsedCars"} + {"Utility Vehicles","NeutralUtilityVehicles"} }; }; class Dr_Hladik_EP1 { humanity = "neutral"; category[] = { - {"Chem-lites/Flares","ChemlitesFlares"} - {"Medical Supplies","MedicalSupplies"} - {"Smoke Grenades","SmokeGrenades"} + {"Chem-lites/Flares","NeutralChemlitesFlares"} + {"Medical Supplies","NeutralMedicalSupplies"} + {"Smoke Grenades","NeutralSmokeGrenades"} }; }; class RU_Villager3 { humanity = "neutral"; category[] = { - {"Boats Armed","BoatsArmed"} - {"Boats Unarmed","BoatsUnarmed"} + {"Boats Armed","NeutralBoatsArmed"} + {"Boats Unarmed","NeutralBoatsUnarmed"} }; }; class Worker2 { humanity = "neutral"; category[] = { - {"Airplanes","Airplanes"} - {"Helicopter Unarmed","HelicopterUnarmed"} + {"Airplanes","NeutralAirplanes"} + {"Helicopter Unarmed","NeutralHelicopterUnarmed"} }; }; class GUE_Woodlander2 { humanity = "neutral"; category[] = { - {"Black Market Ammo","BlackMarketAmmo"} - {"Black Market Weapons","BlackMarketWeapons"} - {"Explosives","Explosives"} + {"Black Market Ammo","NeutralBlackMarketAmmo"} + {"Black Market Weapons","NeutralBlackMarketWeapons"} + {"Explosives","NeutralExplosives"} }; }; class Rita_Ensler_EP1 { humanity = "neutral"; category[] = { - {"Backpacks","Backpacks"} - {"Clothes","Clothes"} - {"Cooked Meats","CookedMeats"} - {"Drinks","Drinks"} - {"Packaged Food","PackagedFood"} + {"Backpacks","NeutralBackpacks"} + {"Clothes","NeutralClothes"} + {"Cooked Meats","NeutralCookedMeats"} + {"Drinks","NeutralDrinks"} + {"Packaged Food","NeutralPackagedFood"} }; }; class Woodlander3 { humanity = "neutral"; category[] = { - {"Building Supplies","BuildingSupplies"} - {"Toolbelt Items","ToolbeltItems"} - {"Vehicle Parts","VehicleParts"} + {"Building Supplies","NeutralBuildingSupplies"} + {"Toolbelt Items","NeutralToolbeltItems"} + {"Vehicle Parts","NeutralVehicleParts"} }; }; class RU_Citizen1 { humanity = "neutral"; category[] = { - {"Wholesale","Wholesale"} + {"Wholesale","NeutralWholesale"} }; }; class Pilot_EP1 { humanity = "neutral"; category[] = { - {"Assault Rifle Ammo","AssaultRifleAmmo"} - {"Light Machine Gun Ammo","LightMachineGunAmmo"} - {"Pistol Ammo","PistolAmmo"} - {"Shotguns and Single-shot Ammo","ShotgunsandSingleshotAmmo"} - {"Sniper Rifle Ammo","SniperRifleAmmo"} - {"Submachine Gun Ammo","SubmachineGunAmmo"} + {"Assault Rifle Ammo","NeutralAssaultRifleAmmo"} + {"Light Machine Gun Ammo","NeutralLightMachineGunAmmo"} + {"Pistol Ammo","NeutralPistolAmmo"} + {"Shotguns and Single-shot Ammo","NeutralShotgunsandSingleshotAmmo"} + {"Sniper Rifle Ammo","NeutralSniperRifleAmmo"} + {"Submachine Gun Ammo","NeutralSubmachineGunAmmo"} }; }; class RU_Profiteer4 { humanity = "neutral"; category[] = { - {"Bikes and ATV","BikesandATV"} - {"Buses and Vans","BusesandVans"} - {"Cargo Trucks","CargoTrucks"} - {"Fuel Trucks","FuelTrucks"} - {"Military Unarmed","MilitaryUnarmed"} - {"Trucks","Trucks"} - {"Used Cars","UsedCars"} - {"Utility Vehicles","UtilityVehicles"} + {"Bikes and ATV","NeutralBikesandATV"} + {"Buses and Vans","NeutralBusesandVans"} + {"Cargo Trucks","NeutralCargoTrucks"} + {"Fuel Trucks","NeutralFuelTrucks"} + {"Military Unarmed","NeutralMilitaryUnarmed"} + {"Trucks","NeutralTrucks"} + {"Used Cars","NeutralUsedCars"} + {"Utility Vehicles","NeutralUtilityVehicles"} }; }; class Soldier_GL_M16A2_PMC { humanity = "neutral"; category[] = { - {"Black Market Ammo","BlackMarketAmmo"} - {"Black Market Weapons","BlackMarketWeapons"} - {"Explosives","Explosives"} + {"Black Market Ammo","NeutralBlackMarketAmmo"} + {"Black Market Weapons","NeutralBlackMarketWeapons"} + {"Explosives","NeutralExplosives"} }; }; class CIV_EuroMan01_EP1 { humanity = "neutral"; category[] = { - {"Assault Rifle","AssaultRifle"} - {"Light Machine Gun","LightMachineGun"} - {"Pistols","Pistols"} - {"Shotguns and Single-shot","ShotgunsandSingleshot"} - {"Sniper Rifle","SniperRifle"} - {"Submachine Guns","SubmachineGuns"} + {"Assault Rifle","NeutralAssaultRifle"} + {"Light Machine Gun","NeutralLightMachineGun"} + {"Pistols","NeutralPistols"} + {"Shotguns and Single-shot","NeutralShotgunsandSingleshot"} + {"Sniper Rifle","NeutralSniperRifle"} + {"Submachine Guns","NeutralSubmachineGuns"} }; }; class RU_WorkWoman5 { humanity = "neutral"; category[] = { - {"Backpacks","Backpacks"} - {"Clothes","Clothes"} - {"Cooked Meats","CookedMeats"} - {"Drinks","Drinks"} - {"Packaged Food","PackagedFood"} + {"Backpacks","NeutralBackpacks"} + {"Clothes","NeutralClothes"} + {"Cooked Meats","NeutralCookedMeats"} + {"Drinks","NeutralDrinks"} + {"Packaged Food","NeutralPackagedFood"} }; }; class TK_CIV_Takistani04_EP1 { humanity = "neutral"; category[] = { - {"Assault Rifle","AssaultRifle"} - {"Light Machine Gun","LightMachineGun"} - {"Pistols","Pistols"} - {"Shotguns and Single-shot","ShotgunsandSingleshot"} - {"Sniper Rifle","SniperRifle"} - {"Submachine Guns","SubmachineGuns"} + {"Assault Rifle","NeutralAssaultRifle"} + {"Light Machine Gun","NeutralLightMachineGun"} + {"Pistols","NeutralPistols"} + {"Shotguns and Single-shot","NeutralShotgunsandSingleshot"} + {"Sniper Rifle","NeutralSniperRifle"} + {"Submachine Guns","NeutralSubmachineGuns"} }; }; class CIV_EuroMan02_EP1 { humanity = "neutral"; category[] = { - {"Assault Rifle Ammo","AssaultRifleAmmo"} - {"Light Machine Gun Ammo","LightMachineGunAmmo"} - {"Pistol Ammo","PistolAmmo"} - {"Shotguns and Single-shot Ammo","ShotgunsandSingleshotAmmo"} - {"Sniper Rifle Ammo","SniperRifleAmmo"} - {"Submachine Gun Ammo","SubmachineGunAmmo"} + {"Assault Rifle Ammo","NeutralAssaultRifleAmmo"} + {"Light Machine Gun Ammo","NeutralLightMachineGunAmmo"} + {"Pistol Ammo","NeutralPistolAmmo"} + {"Shotguns and Single-shot Ammo","NeutralShotgunsandSingleshotAmmo"} + {"Sniper Rifle Ammo","NeutralSniperRifleAmmo"} + {"Submachine Gun Ammo","NeutralSubmachineGunAmmo"} }; }; diff --git a/Tools/TraderMigration/serverTraders2cfg.pl b/Tools/TraderMigration/serverTraders2cfg.pl index 4edb2d24e..929dc5b73 100644 --- a/Tools/TraderMigration/serverTraders2cfg.pl +++ b/Tools/TraderMigration/serverTraders2cfg.pl @@ -78,7 +78,7 @@ foreach my $traderhuman (keys $traderHumanity) { $cat->[1] ); while (my $row = $sth->fetchrow_hashref()) { - $catName = $row->{CatName}; + $catName = $traderhuman.$row->{CatName}; } $sth->finish(); $catName =~ s~ |-|/~~g; From 74288825b710bb22a7f2781c8183b046d7b40e44 Mon Sep 17 00:00:00 2001 From: Florian Kinder Date: Tue, 4 Feb 2014 14:30:50 +0100 Subject: [PATCH 4/7] Updated ServerTrader & added Categories --- .../Configs/CfgServerTrader/CfgServerTrader.hpp | 17 ----------------- SQF/dayz_code/Configs/cfgServerTrader.hpp | 6 ++++-- Tools/TraderMigration/serverTraders2cfg.pl | 15 +++++++++++++++ 3 files changed, 19 insertions(+), 19 deletions(-) delete mode 100644 SQF/dayz_code/Configs/CfgServerTrader/CfgServerTrader.hpp diff --git a/SQF/dayz_code/Configs/CfgServerTrader/CfgServerTrader.hpp b/SQF/dayz_code/Configs/CfgServerTrader/CfgServerTrader.hpp deleted file mode 100644 index b53a336c3..000000000 --- a/SQF/dayz_code/Configs/CfgServerTrader/CfgServerTrader.hpp +++ /dev/null @@ -1,17 +0,0 @@ -#include "TraderCategory.hpp" - -class CfgServerTrader { - - //Hero Trader for Example - class RU_Functionary1 { //Classname of the person - humanity = "hero"; //If Hero, normal or bandit - category[] = { //{"DisplayName","LinkedCategory"} - {"Ammunition","ammunition_1"}, - {"Clothes","clothes_1"}, - {"Helicopter Armed","heliarmed_1"}, - {"Military Armed","militaryarmed_1"}, - {"Trucks Armed","truckarmed_1"}, - {"Weapons","weapons_1"} - }; - }; -}; \ No newline at end of file diff --git a/SQF/dayz_code/Configs/cfgServerTrader.hpp b/SQF/dayz_code/Configs/cfgServerTrader.hpp index 3b6e9cee3..ba826dfbc 100644 --- a/SQF/dayz_code/Configs/cfgServerTrader.hpp +++ b/SQF/dayz_code/Configs/cfgServerTrader.hpp @@ -1,8 +1,10 @@ -#include "CfgServerTrader\TraderCategory.hpp" - class CfgServerTrader { #include "CfgServerTrader\TraderHero.hpp" #include "CfgServerTrader\TraderFriendly.hpp" #include "CfgServerTrader\TraderNeutral.hpp" #include "CfgServerTrader\TraderBandit.hpp" +}; + +class CfgTraderCategory { + #include "CfgTraderCategory\HeroAmmunition.hpp" }; \ No newline at end of file diff --git a/Tools/TraderMigration/serverTraders2cfg.pl b/Tools/TraderMigration/serverTraders2cfg.pl index 929dc5b73..b409483fe 100644 --- a/Tools/TraderMigration/serverTraders2cfg.pl +++ b/Tools/TraderMigration/serverTraders2cfg.pl @@ -7,12 +7,14 @@ use Data::Dumper; my $pathServerTradersSQF = '..\..\Server Files\MPMissions\DayZ_Epoch_11.Chernarus\server_traders.sqf'; my $pathServerTradersCfg = '..\..\SQF\dayz_code\Configs\CfgServerTrader\\'; +my $pathServerTraderCategoriesCfg = '..\..\SQF\dayz_code\Configs\CfgServerTraderCategories\\'; my $MySQL = DBI->connect('DBI:mysql:host=localhost;database=test2', 'root', 'root'); open(TRADERSQF, '<', $pathServerTradersSQF) or die $!; my $trader = ''; my $isTrader = 0; my @traders; +my $traderCategories = {}; while () { if (/^menu_(\w+)\s*=\s*\[/) { $trader = '{"'.$1.'":['; @@ -84,6 +86,7 @@ foreach my $traderhuman (keys $traderHumanity) { $catName =~ s~ |-|/~~g; $cfg .= "\t\t{\"".$cat->[0]."\",\"".$catName."\"}\n"; + $traderCategories->{$catName} = $cat->[1]; } $cfg .= "\t};\n"; $cfg .= "};\n" @@ -94,4 +97,16 @@ foreach my $traderhuman (keys $traderHumanity) { close(CFG); } +foreach my $traderCategory (keys $traderCategories) { + my $cfg = ''; + + $cfg .= "class ".$traderCategory." {\n"; + $cfg .= "\ttid = ".$traderCategories->{$traderCategory}.";\n"; + $cfg .= "};\n"; + + open(CFG, '>', $pathServerTraderCategoriesCfg.$traderCategory.'.hpp') or die $!; + print CFG $cfg; + close(CFG); +} + exit(0); \ No newline at end of file From 96bf638f28c1af37643915251aefed51a8f5f13b Mon Sep 17 00:00:00 2001 From: Florian Kinder Date: Tue, 4 Feb 2014 14:31:11 +0100 Subject: [PATCH 5/7] Added Category configs --- .../Configs/CfgServerTraderCategories/BanditAmmunition.hpp | 3 +++ .../Configs/CfgServerTraderCategories/BanditClothing.hpp | 3 +++ .../CfgServerTraderCategories/BanditHelicopterArmed.hpp | 3 +++ .../Configs/CfgServerTraderCategories/BanditMilitaryArmed.hpp | 3 +++ .../Configs/CfgServerTraderCategories/BanditTrucksArmed.hpp | 3 +++ .../Configs/CfgServerTraderCategories/BanditWeapons.hpp | 3 +++ .../Configs/CfgServerTraderCategories/FriendlyAssaultRifle.hpp | 3 +++ .../CfgServerTraderCategories/FriendlyAssaultRifleAmmo.hpp | 3 +++ .../Configs/CfgServerTraderCategories/FriendlyBackpacks.hpp | 3 +++ .../Configs/CfgServerTraderCategories/FriendlyBikesandATV.hpp | 3 +++ .../CfgServerTraderCategories/FriendlyBuildingSupplies.hpp | 3 +++ .../Configs/CfgServerTraderCategories/FriendlyBusesandVans.hpp | 3 +++ .../Configs/CfgServerTraderCategories/FriendlyCargoTrucks.hpp | 3 +++ .../CfgServerTraderCategories/FriendlyChemlitesFlares.hpp | 3 +++ .../Configs/CfgServerTraderCategories/FriendlyClothes.hpp | 3 +++ .../Configs/CfgServerTraderCategories/FriendlyCookedMeats.hpp | 3 +++ .../Configs/CfgServerTraderCategories/FriendlyDrinks.hpp | 3 +++ .../Configs/CfgServerTraderCategories/FriendlyFuelTrucks.hpp | 3 +++ .../CfgServerTraderCategories/FriendlyLightMachineGun.hpp | 3 +++ .../CfgServerTraderCategories/FriendlyLightMachineGunAmmo.hpp | 3 +++ .../CfgServerTraderCategories/FriendlyMedicalSupplies.hpp | 3 +++ .../CfgServerTraderCategories/FriendlyMilitaryUnarmed.hpp | 3 +++ .../Configs/CfgServerTraderCategories/FriendlyPackagedFood.hpp | 3 +++ .../Configs/CfgServerTraderCategories/FriendlyPistolAmmo.hpp | 3 +++ .../Configs/CfgServerTraderCategories/FriendlyPistols.hpp | 3 +++ .../FriendlyShotgunsandSingleshot.hpp | 3 +++ .../FriendlyShotgunsandSingleshotAmmo.hpp | 3 +++ .../CfgServerTraderCategories/FriendlySmokeGrenades.hpp | 3 +++ .../Configs/CfgServerTraderCategories/FriendlySniperRifle.hpp | 3 +++ .../CfgServerTraderCategories/FriendlySniperRifleAmmo.hpp | 3 +++ .../CfgServerTraderCategories/FriendlySubmachineGunAmmo.hpp | 3 +++ .../CfgServerTraderCategories/FriendlySubmachineGuns.hpp | 3 +++ .../CfgServerTraderCategories/FriendlyToolbeltItems.hpp | 3 +++ .../Configs/CfgServerTraderCategories/FriendlyTrucks.hpp | 3 +++ .../CfgServerTraderCategories/FriendlyTrucksUnarmed.hpp | 3 +++ .../Configs/CfgServerTraderCategories/FriendlyUsedCars.hpp | 3 +++ .../CfgServerTraderCategories/FriendlyUtilityVehicles.hpp | 3 +++ .../Configs/CfgServerTraderCategories/FriendlyVehicleParts.hpp | 3 +++ .../Configs/CfgServerTraderCategories/HeroAmmunition.hpp | 3 +++ .../Configs/CfgServerTraderCategories/HeroClothes.hpp | 3 +++ .../Configs/CfgServerTraderCategories/HeroHelicopterArmed.hpp | 3 +++ .../Configs/CfgServerTraderCategories/HeroMilitaryArmed.hpp | 3 +++ .../Configs/CfgServerTraderCategories/HeroTrucksArmed.hpp | 3 +++ .../Configs/CfgServerTraderCategories/HeroWeapons.hpp | 3 +++ .../Configs/CfgServerTraderCategories/NeutralAirplanes.hpp | 3 +++ .../Configs/CfgServerTraderCategories/NeutralAssaultRifle.hpp | 3 +++ .../CfgServerTraderCategories/NeutralAssaultRifleAmmo.hpp | 3 +++ .../Configs/CfgServerTraderCategories/NeutralBackpacks.hpp | 3 +++ .../Configs/CfgServerTraderCategories/NeutralBikesandATV.hpp | 3 +++ .../CfgServerTraderCategories/NeutralBlackMarketAmmo.hpp | 3 +++ .../CfgServerTraderCategories/NeutralBlackMarketWeapons.hpp | 3 +++ .../Configs/CfgServerTraderCategories/NeutralBoatsArmed.hpp | 3 +++ .../Configs/CfgServerTraderCategories/NeutralBoatsUnarmed.hpp | 3 +++ .../CfgServerTraderCategories/NeutralBuildingSupplies.hpp | 3 +++ .../Configs/CfgServerTraderCategories/NeutralBusesandVans.hpp | 3 +++ .../Configs/CfgServerTraderCategories/NeutralCargoTrucks.hpp | 3 +++ .../CfgServerTraderCategories/NeutralChemlitesFlares.hpp | 3 +++ .../Configs/CfgServerTraderCategories/NeutralClothes.hpp | 3 +++ .../Configs/CfgServerTraderCategories/NeutralCookedMeats.hpp | 3 +++ .../Configs/CfgServerTraderCategories/NeutralDrinks.hpp | 3 +++ .../Configs/CfgServerTraderCategories/NeutralExplosives.hpp | 3 +++ .../Configs/CfgServerTraderCategories/NeutralFuelTrucks.hpp | 3 +++ .../CfgServerTraderCategories/NeutralHelicopterUnarmed.hpp | 3 +++ .../CfgServerTraderCategories/NeutralLightMachineGun.hpp | 3 +++ .../CfgServerTraderCategories/NeutralLightMachineGunAmmo.hpp | 3 +++ .../CfgServerTraderCategories/NeutralMedicalSupplies.hpp | 3 +++ .../CfgServerTraderCategories/NeutralMilitaryUnarmed.hpp | 3 +++ .../Configs/CfgServerTraderCategories/NeutralPackagedFood.hpp | 3 +++ .../Configs/CfgServerTraderCategories/NeutralPistolAmmo.hpp | 3 +++ .../Configs/CfgServerTraderCategories/NeutralPistols.hpp | 3 +++ .../CfgServerTraderCategories/NeutralShotgunsandSingleshot.hpp | 3 +++ .../NeutralShotgunsandSingleshotAmmo.hpp | 3 +++ .../Configs/CfgServerTraderCategories/NeutralSmokeGrenades.hpp | 3 +++ .../Configs/CfgServerTraderCategories/NeutralSniperRifle.hpp | 3 +++ .../CfgServerTraderCategories/NeutralSniperRifleAmmo.hpp | 3 +++ .../CfgServerTraderCategories/NeutralSubmachineGunAmmo.hpp | 3 +++ .../CfgServerTraderCategories/NeutralSubmachineGuns.hpp | 3 +++ .../Configs/CfgServerTraderCategories/NeutralToolbeltItems.hpp | 3 +++ .../Configs/CfgServerTraderCategories/NeutralTrucks.hpp | 3 +++ .../Configs/CfgServerTraderCategories/NeutralUsedCars.hpp | 3 +++ .../CfgServerTraderCategories/NeutralUtilityVehicles.hpp | 3 +++ .../Configs/CfgServerTraderCategories/NeutralVehicleParts.hpp | 3 +++ .../Configs/CfgServerTraderCategories/NeutralWholesale.hpp | 3 +++ 83 files changed, 249 insertions(+) create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/BanditAmmunition.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/BanditClothing.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/BanditHelicopterArmed.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/BanditMilitaryArmed.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/BanditTrucksArmed.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/BanditWeapons.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyAssaultRifle.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyAssaultRifleAmmo.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBackpacks.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBikesandATV.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBuildingSupplies.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBusesandVans.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyCargoTrucks.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyChemlitesFlares.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyClothes.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyCookedMeats.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyDrinks.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyFuelTrucks.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyLightMachineGun.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyLightMachineGunAmmo.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyMedicalSupplies.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyMilitaryUnarmed.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyPackagedFood.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyPistolAmmo.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyPistols.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyShotgunsandSingleshot.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyShotgunsandSingleshotAmmo.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySmokeGrenades.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySniperRifle.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySniperRifleAmmo.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySubmachineGunAmmo.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySubmachineGuns.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyToolbeltItems.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyTrucks.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyTrucksUnarmed.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyUsedCars.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyUtilityVehicles.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyVehicleParts.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/HeroAmmunition.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/HeroClothes.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/HeroHelicopterArmed.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/HeroMilitaryArmed.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/HeroTrucksArmed.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/HeroWeapons.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralAirplanes.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralAssaultRifle.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralAssaultRifleAmmo.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBackpacks.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBikesandATV.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBlackMarketAmmo.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBlackMarketWeapons.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBoatsArmed.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBoatsUnarmed.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBuildingSupplies.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBusesandVans.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralCargoTrucks.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralChemlitesFlares.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralClothes.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralCookedMeats.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralDrinks.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralExplosives.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralFuelTrucks.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralHelicopterUnarmed.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralLightMachineGun.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralLightMachineGunAmmo.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralMedicalSupplies.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralMilitaryUnarmed.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralPackagedFood.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralPistolAmmo.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralPistols.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralShotgunsandSingleshot.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralShotgunsandSingleshotAmmo.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSmokeGrenades.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSniperRifle.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSniperRifleAmmo.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSubmachineGunAmmo.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSubmachineGuns.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralToolbeltItems.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralTrucks.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralUsedCars.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralUtilityVehicles.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralVehicleParts.hpp create mode 100644 SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralWholesale.hpp diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditAmmunition.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditAmmunition.hpp new file mode 100644 index 000000000..4e2f561a7 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditAmmunition.hpp @@ -0,0 +1,3 @@ +class BanditAmmunition { + tid = 577; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditClothing.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditClothing.hpp new file mode 100644 index 000000000..7a727df8a --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditClothing.hpp @@ -0,0 +1,3 @@ +class BanditClothing { + tid = 575; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditHelicopterArmed.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditHelicopterArmed.hpp new file mode 100644 index 000000000..4fe6d6f23 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditHelicopterArmed.hpp @@ -0,0 +1,3 @@ +class BanditHelicopterArmed { + tid = 512; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditMilitaryArmed.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditMilitaryArmed.hpp new file mode 100644 index 000000000..e099d1ce0 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditMilitaryArmed.hpp @@ -0,0 +1,3 @@ +class BanditMilitaryArmed { + tid = 569; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditTrucksArmed.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditTrucksArmed.hpp new file mode 100644 index 000000000..e8a2ed301 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditTrucksArmed.hpp @@ -0,0 +1,3 @@ +class BanditTrucksArmed { + tid = 534; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditWeapons.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditWeapons.hpp new file mode 100644 index 000000000..daab40b2c --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditWeapons.hpp @@ -0,0 +1,3 @@ +class BanditWeapons { + tid = 627; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyAssaultRifle.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyAssaultRifle.hpp new file mode 100644 index 000000000..1c0c44fdf --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyAssaultRifle.hpp @@ -0,0 +1,3 @@ +class FriendlyAssaultRifle { + tid = 485; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyAssaultRifleAmmo.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyAssaultRifleAmmo.hpp new file mode 100644 index 000000000..8a7c7e3df --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyAssaultRifleAmmo.hpp @@ -0,0 +1,3 @@ +class FriendlyAssaultRifleAmmo { + tid = 480; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBackpacks.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBackpacks.hpp new file mode 100644 index 000000000..914057bc6 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBackpacks.hpp @@ -0,0 +1,3 @@ +class FriendlyBackpacks { + tid = 538; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBikesandATV.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBikesandATV.hpp new file mode 100644 index 000000000..d4c67b774 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBikesandATV.hpp @@ -0,0 +1,3 @@ +class FriendlyBikesandATV { + tid = 536; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBuildingSupplies.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBuildingSupplies.hpp new file mode 100644 index 000000000..b0f5a5d29 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBuildingSupplies.hpp @@ -0,0 +1,3 @@ +class FriendlyBuildingSupplies { + tid = 530; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBusesandVans.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBusesandVans.hpp new file mode 100644 index 000000000..84e03824e --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBusesandVans.hpp @@ -0,0 +1,3 @@ +class FriendlyBusesandVans { + tid = 592; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyCargoTrucks.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyCargoTrucks.hpp new file mode 100644 index 000000000..f536af4e9 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyCargoTrucks.hpp @@ -0,0 +1,3 @@ +class FriendlyCargoTrucks { + tid = 570; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyChemlitesFlares.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyChemlitesFlares.hpp new file mode 100644 index 000000000..db5683d36 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyChemlitesFlares.hpp @@ -0,0 +1,3 @@ +class FriendlyChemlitesFlares { + tid = 542; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyClothes.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyClothes.hpp new file mode 100644 index 000000000..205fb9fa9 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyClothes.hpp @@ -0,0 +1,3 @@ +class FriendlyClothes { + tid = 628; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyCookedMeats.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyCookedMeats.hpp new file mode 100644 index 000000000..53c9e2f1d --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyCookedMeats.hpp @@ -0,0 +1,3 @@ +class FriendlyCookedMeats { + tid = 630; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyDrinks.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyDrinks.hpp new file mode 100644 index 000000000..5cf6fd565 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyDrinks.hpp @@ -0,0 +1,3 @@ +class FriendlyDrinks { + tid = 601; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyFuelTrucks.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyFuelTrucks.hpp new file mode 100644 index 000000000..faeafbc22 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyFuelTrucks.hpp @@ -0,0 +1,3 @@ +class FriendlyFuelTrucks { + tid = 595; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyLightMachineGun.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyLightMachineGun.hpp new file mode 100644 index 000000000..6daa90e96 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyLightMachineGun.hpp @@ -0,0 +1,3 @@ +class FriendlyLightMachineGun { + tid = 486; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyLightMachineGunAmmo.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyLightMachineGunAmmo.hpp new file mode 100644 index 000000000..794821657 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyLightMachineGunAmmo.hpp @@ -0,0 +1,3 @@ +class FriendlyLightMachineGunAmmo { + tid = 481; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyMedicalSupplies.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyMedicalSupplies.hpp new file mode 100644 index 000000000..79661b954 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyMedicalSupplies.hpp @@ -0,0 +1,3 @@ +class FriendlyMedicalSupplies { + tid = 541; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyMilitaryUnarmed.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyMilitaryUnarmed.hpp new file mode 100644 index 000000000..71a03e8e2 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyMilitaryUnarmed.hpp @@ -0,0 +1,3 @@ +class FriendlyMilitaryUnarmed { + tid = 599; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyPackagedFood.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyPackagedFood.hpp new file mode 100644 index 000000000..d13784dc8 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyPackagedFood.hpp @@ -0,0 +1,3 @@ +class FriendlyPackagedFood { + tid = 629; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyPistolAmmo.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyPistolAmmo.hpp new file mode 100644 index 000000000..358939775 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyPistolAmmo.hpp @@ -0,0 +1,3 @@ +class FriendlyPistolAmmo { + tid = 484; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyPistols.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyPistols.hpp new file mode 100644 index 000000000..ed19fedce --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyPistols.hpp @@ -0,0 +1,3 @@ +class FriendlyPistols { + tid = 489; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyShotgunsandSingleshot.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyShotgunsandSingleshot.hpp new file mode 100644 index 000000000..6c0cf9547 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyShotgunsandSingleshot.hpp @@ -0,0 +1,3 @@ +class FriendlyShotgunsandSingleshot { + tid = 574; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyShotgunsandSingleshotAmmo.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyShotgunsandSingleshotAmmo.hpp new file mode 100644 index 000000000..2b4f6be97 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyShotgunsandSingleshotAmmo.hpp @@ -0,0 +1,3 @@ +class FriendlyShotgunsandSingleshotAmmo { + tid = 573; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySmokeGrenades.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySmokeGrenades.hpp new file mode 100644 index 000000000..d74b776f4 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySmokeGrenades.hpp @@ -0,0 +1,3 @@ +class FriendlySmokeGrenades { + tid = 543; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySniperRifle.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySniperRifle.hpp new file mode 100644 index 000000000..89a67189b --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySniperRifle.hpp @@ -0,0 +1,3 @@ +class FriendlySniperRifle { + tid = 487; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySniperRifleAmmo.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySniperRifleAmmo.hpp new file mode 100644 index 000000000..5dd293049 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySniperRifleAmmo.hpp @@ -0,0 +1,3 @@ +class FriendlySniperRifleAmmo { + tid = 482; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySubmachineGunAmmo.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySubmachineGunAmmo.hpp new file mode 100644 index 000000000..1b472cb07 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySubmachineGunAmmo.hpp @@ -0,0 +1,3 @@ +class FriendlySubmachineGunAmmo { + tid = 483; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySubmachineGuns.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySubmachineGuns.hpp new file mode 100644 index 000000000..702f76f6d --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySubmachineGuns.hpp @@ -0,0 +1,3 @@ +class FriendlySubmachineGuns { + tid = 488; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyToolbeltItems.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyToolbeltItems.hpp new file mode 100644 index 000000000..6f5b58487 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyToolbeltItems.hpp @@ -0,0 +1,3 @@ +class FriendlyToolbeltItems { + tid = 532; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyTrucks.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyTrucks.hpp new file mode 100644 index 000000000..065cccb9c --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyTrucks.hpp @@ -0,0 +1,3 @@ +class FriendlyTrucks { + tid = 495; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyTrucksUnarmed.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyTrucksUnarmed.hpp new file mode 100644 index 000000000..d2604f601 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyTrucksUnarmed.hpp @@ -0,0 +1,3 @@ +class FriendlyTrucksUnarmed { + tid = 535; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyUsedCars.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyUsedCars.hpp new file mode 100644 index 000000000..6bebeb5df --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyUsedCars.hpp @@ -0,0 +1,3 @@ +class FriendlyUsedCars { + tid = 600; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyUtilityVehicles.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyUtilityVehicles.hpp new file mode 100644 index 000000000..26da6d0ae --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyUtilityVehicles.hpp @@ -0,0 +1,3 @@ +class FriendlyUtilityVehicles { + tid = 568; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyVehicleParts.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyVehicleParts.hpp new file mode 100644 index 000000000..b211fe666 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyVehicleParts.hpp @@ -0,0 +1,3 @@ +class FriendlyVehicleParts { + tid = 531; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroAmmunition.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroAmmunition.hpp new file mode 100644 index 000000000..e18a70e71 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroAmmunition.hpp @@ -0,0 +1,3 @@ +class HeroAmmunition { + tid = 478; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroClothes.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroClothes.hpp new file mode 100644 index 000000000..43dc9b35a --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroClothes.hpp @@ -0,0 +1,3 @@ +class HeroClothes { + tid = 476; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroHelicopterArmed.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroHelicopterArmed.hpp new file mode 100644 index 000000000..7c3b4dd74 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroHelicopterArmed.hpp @@ -0,0 +1,3 @@ +class HeroHelicopterArmed { + tid = 493; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroMilitaryArmed.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroMilitaryArmed.hpp new file mode 100644 index 000000000..504e84cc9 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroMilitaryArmed.hpp @@ -0,0 +1,3 @@ +class HeroMilitaryArmed { + tid = 562; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroTrucksArmed.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroTrucksArmed.hpp new file mode 100644 index 000000000..454523268 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroTrucksArmed.hpp @@ -0,0 +1,3 @@ +class HeroTrucksArmed { + tid = 479; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroWeapons.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroWeapons.hpp new file mode 100644 index 000000000..a9b96120f --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroWeapons.hpp @@ -0,0 +1,3 @@ +class HeroWeapons { + tid = 477; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralAirplanes.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralAirplanes.hpp new file mode 100644 index 000000000..0c7eed902 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralAirplanes.hpp @@ -0,0 +1,3 @@ +class NeutralAirplanes { + tid = 517; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralAssaultRifle.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralAssaultRifle.hpp new file mode 100644 index 000000000..35280ac95 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralAssaultRifle.hpp @@ -0,0 +1,3 @@ +class NeutralAssaultRifle { + tid = 637; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralAssaultRifleAmmo.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralAssaultRifleAmmo.hpp new file mode 100644 index 000000000..6647e4966 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralAssaultRifleAmmo.hpp @@ -0,0 +1,3 @@ +class NeutralAssaultRifleAmmo { + tid = 609; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBackpacks.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBackpacks.hpp new file mode 100644 index 000000000..e63cee9fc --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBackpacks.hpp @@ -0,0 +1,3 @@ +class NeutralBackpacks { + tid = 632; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBikesandATV.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBikesandATV.hpp new file mode 100644 index 000000000..1cb5350da --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBikesandATV.hpp @@ -0,0 +1,3 @@ +class NeutralBikesandATV { + tid = 650; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBlackMarketAmmo.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBlackMarketAmmo.hpp new file mode 100644 index 000000000..3ad106924 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBlackMarketAmmo.hpp @@ -0,0 +1,3 @@ +class NeutralBlackMarketAmmo { + tid = 527; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBlackMarketWeapons.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBlackMarketWeapons.hpp new file mode 100644 index 000000000..150dcdb25 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBlackMarketWeapons.hpp @@ -0,0 +1,3 @@ +class NeutralBlackMarketWeapons { + tid = 526; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBoatsArmed.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBoatsArmed.hpp new file mode 100644 index 000000000..02ff20b1a --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBoatsArmed.hpp @@ -0,0 +1,3 @@ +class NeutralBoatsArmed { + tid = 558; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBoatsUnarmed.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBoatsUnarmed.hpp new file mode 100644 index 000000000..66014b331 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBoatsUnarmed.hpp @@ -0,0 +1,3 @@ +class NeutralBoatsUnarmed { + tid = 557; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBuildingSupplies.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBuildingSupplies.hpp new file mode 100644 index 000000000..2f38cc8b2 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBuildingSupplies.hpp @@ -0,0 +1,3 @@ +class NeutralBuildingSupplies { + tid = 662; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBusesandVans.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBusesandVans.hpp new file mode 100644 index 000000000..17f790ad0 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBusesandVans.hpp @@ -0,0 +1,3 @@ +class NeutralBusesandVans { + tid = 651; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralCargoTrucks.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralCargoTrucks.hpp new file mode 100644 index 000000000..9a2d8225f --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralCargoTrucks.hpp @@ -0,0 +1,3 @@ +class NeutralCargoTrucks { + tid = 653; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralChemlitesFlares.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralChemlitesFlares.hpp new file mode 100644 index 000000000..7442e8468 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralChemlitesFlares.hpp @@ -0,0 +1,3 @@ +class NeutralChemlitesFlares { + tid = 666; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralClothes.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralClothes.hpp new file mode 100644 index 000000000..2282829d8 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralClothes.hpp @@ -0,0 +1,3 @@ +class NeutralClothes { + tid = 631; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralCookedMeats.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralCookedMeats.hpp new file mode 100644 index 000000000..9de84dc4e --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralCookedMeats.hpp @@ -0,0 +1,3 @@ +class NeutralCookedMeats { + tid = 634; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralDrinks.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralDrinks.hpp new file mode 100644 index 000000000..a012eb73b --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralDrinks.hpp @@ -0,0 +1,3 @@ +class NeutralDrinks { + tid = 633; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralExplosives.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralExplosives.hpp new file mode 100644 index 000000000..3dc869084 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralExplosives.hpp @@ -0,0 +1,3 @@ +class NeutralExplosives { + tid = 529; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralFuelTrucks.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralFuelTrucks.hpp new file mode 100644 index 000000000..4de1b2f40 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralFuelTrucks.hpp @@ -0,0 +1,3 @@ +class NeutralFuelTrucks { + tid = 655; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralHelicopterUnarmed.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralHelicopterUnarmed.hpp new file mode 100644 index 000000000..2bbb17c23 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralHelicopterUnarmed.hpp @@ -0,0 +1,3 @@ +class NeutralHelicopterUnarmed { + tid = 519; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralLightMachineGun.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralLightMachineGun.hpp new file mode 100644 index 000000000..677edaf81 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralLightMachineGun.hpp @@ -0,0 +1,3 @@ +class NeutralLightMachineGun { + tid = 638; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralLightMachineGunAmmo.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralLightMachineGunAmmo.hpp new file mode 100644 index 000000000..8da97fa47 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralLightMachineGunAmmo.hpp @@ -0,0 +1,3 @@ +class NeutralLightMachineGunAmmo { + tid = 610; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralMedicalSupplies.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralMedicalSupplies.hpp new file mode 100644 index 000000000..f2a82f79f --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralMedicalSupplies.hpp @@ -0,0 +1,3 @@ +class NeutralMedicalSupplies { + tid = 665; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralMilitaryUnarmed.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralMilitaryUnarmed.hpp new file mode 100644 index 000000000..7c70ab047 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralMilitaryUnarmed.hpp @@ -0,0 +1,3 @@ +class NeutralMilitaryUnarmed { + tid = 658; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralPackagedFood.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralPackagedFood.hpp new file mode 100644 index 000000000..2f72ff429 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralPackagedFood.hpp @@ -0,0 +1,3 @@ +class NeutralPackagedFood { + tid = 635; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralPistolAmmo.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralPistolAmmo.hpp new file mode 100644 index 000000000..3a93cab87 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralPistolAmmo.hpp @@ -0,0 +1,3 @@ +class NeutralPistolAmmo { + tid = 611; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralPistols.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralPistols.hpp new file mode 100644 index 000000000..ebd77c662 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralPistols.hpp @@ -0,0 +1,3 @@ +class NeutralPistols { + tid = 674; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralShotgunsandSingleshot.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralShotgunsandSingleshot.hpp new file mode 100644 index 000000000..e77fb280b --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralShotgunsandSingleshot.hpp @@ -0,0 +1,3 @@ +class NeutralShotgunsandSingleshot { + tid = 641; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralShotgunsandSingleshotAmmo.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralShotgunsandSingleshotAmmo.hpp new file mode 100644 index 000000000..f2723c7f1 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralShotgunsandSingleshotAmmo.hpp @@ -0,0 +1,3 @@ +class NeutralShotgunsandSingleshotAmmo { + tid = 613; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSmokeGrenades.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSmokeGrenades.hpp new file mode 100644 index 000000000..f5ea28d54 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSmokeGrenades.hpp @@ -0,0 +1,3 @@ +class NeutralSmokeGrenades { + tid = 668; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSniperRifle.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSniperRifle.hpp new file mode 100644 index 000000000..9d8e061de --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSniperRifle.hpp @@ -0,0 +1,3 @@ +class NeutralSniperRifle { + tid = 640; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSniperRifleAmmo.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSniperRifleAmmo.hpp new file mode 100644 index 000000000..6108d907c --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSniperRifleAmmo.hpp @@ -0,0 +1,3 @@ +class NeutralSniperRifleAmmo { + tid = 614; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSubmachineGunAmmo.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSubmachineGunAmmo.hpp new file mode 100644 index 000000000..3ab72d8a2 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSubmachineGunAmmo.hpp @@ -0,0 +1,3 @@ +class NeutralSubmachineGunAmmo { + tid = 612; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSubmachineGuns.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSubmachineGuns.hpp new file mode 100644 index 000000000..7eac15055 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSubmachineGuns.hpp @@ -0,0 +1,3 @@ +class NeutralSubmachineGuns { + tid = 642; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralToolbeltItems.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralToolbeltItems.hpp new file mode 100644 index 000000000..d81cb4aba --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralToolbeltItems.hpp @@ -0,0 +1,3 @@ +class NeutralToolbeltItems { + tid = 663; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralTrucks.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralTrucks.hpp new file mode 100644 index 000000000..9e6bd9cde --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralTrucks.hpp @@ -0,0 +1,3 @@ +class NeutralTrucks { + tid = 659; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralUsedCars.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralUsedCars.hpp new file mode 100644 index 000000000..09ac753e5 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralUsedCars.hpp @@ -0,0 +1,3 @@ +class NeutralUsedCars { + tid = 660; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralUtilityVehicles.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralUtilityVehicles.hpp new file mode 100644 index 000000000..f117d30d8 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralUtilityVehicles.hpp @@ -0,0 +1,3 @@ +class NeutralUtilityVehicles { + tid = 661; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralVehicleParts.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralVehicleParts.hpp new file mode 100644 index 000000000..6cf41f3ef --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralVehicleParts.hpp @@ -0,0 +1,3 @@ +class NeutralVehicleParts { + tid = 664; +}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralWholesale.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralWholesale.hpp new file mode 100644 index 000000000..bf8c109da --- /dev/null +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralWholesale.hpp @@ -0,0 +1,3 @@ +class NeutralWholesale { + tid = 636; +}; From f372af8547440e10b80d987a7567f8dfb799be9a Mon Sep 17 00:00:00 2001 From: Florian Kinder Date: Tue, 4 Feb 2014 15:00:44 +0100 Subject: [PATCH 6/7] Updated Categories --- .../BanditAmmunition.hpp | 25 ++++ .../BanditClothing.hpp | 60 ++++++++++ .../BanditHelicopterArmed.hpp | 25 ++++ .../BanditMilitaryArmed.hpp | 30 +++++ .../BanditTrucksArmed.hpp | 25 ++++ .../BanditWeapons.hpp | 40 +++++++ .../FriendlyAssaultRifle.hpp | 110 ++++++++++++++++++ .../FriendlyAssaultRifleAmmo.hpp | 25 ++++ .../FriendlyBackpacks.hpp | 55 +++++++++ .../FriendlyBikesandATV.hpp | 50 ++++++++ .../FriendlyBuildingSupplies.hpp | 60 ++++++++++ .../FriendlyBusesandVans.hpp | 20 ++++ .../FriendlyCargoTrucks.hpp | 70 +++++++++++ .../FriendlyChemlitesFlares.hpp | 30 +++++ .../FriendlyClothes.hpp | 80 +++++++++++++ .../FriendlyCookedMeats.hpp | 40 +++++++ .../FriendlyDrinks.hpp | 35 ++++++ .../FriendlyFuelTrucks.hpp | 25 ++++ .../FriendlyLightMachineGun.hpp | 20 ++++ .../FriendlyLightMachineGunAmmo.hpp | 15 +++ .../FriendlyMedicalSupplies.hpp | 35 ++++++ .../FriendlyMilitaryUnarmed.hpp | 40 +++++++ .../FriendlyPackagedFood.hpp | 35 ++++++ .../FriendlyPistolAmmo.hpp | 35 ++++++ .../FriendlyPistols.hpp | 40 +++++++ .../FriendlyShotgunsandSingleshot.hpp | 30 +++++ .../FriendlyShotgunsandSingleshotAmmo.hpp | 35 ++++++ .../FriendlySmokeGrenades.hpp | 15 +++ .../FriendlySniperRifle.hpp | 45 +++++++ .../FriendlySniperRifleAmmo.hpp | 20 ++++ .../FriendlySubmachineGunAmmo.hpp | 30 +++++ .../FriendlySubmachineGuns.hpp | 30 +++++ .../FriendlyToolbeltItems.hpp | 85 ++++++++++++++ .../FriendlyTrucks.hpp | 30 +++++ .../FriendlyTrucksUnarmed.hpp | 30 +++++ .../FriendlyUsedCars.hpp | 85 ++++++++++++++ .../FriendlyUtilityVehicles.hpp | 85 ++++++++++++++ .../FriendlyVehicleParts.hpp | 50 ++++++++ .../HeroAmmunition.hpp | 25 ++++ .../CfgServerTraderCategories/HeroClothes.hpp | 65 +++++++++++ .../HeroHelicopterArmed.hpp | 25 ++++ .../HeroMilitaryArmed.hpp | 30 +++++ .../HeroTrucksArmed.hpp | 25 ++++ .../CfgServerTraderCategories/HeroWeapons.hpp | 40 +++++++ .../NeutralAirplanes.hpp | 35 ++++++ .../NeutralAssaultRifle.hpp | 110 ++++++++++++++++++ .../NeutralAssaultRifleAmmo.hpp | 25 ++++ .../NeutralBackpacks.hpp | 55 +++++++++ .../NeutralBikesandATV.hpp | 50 ++++++++ .../NeutralBlackMarketAmmo.hpp | 75 ++++++++++++ .../NeutralBlackMarketWeapons.hpp | 95 +++++++++++++++ .../NeutralBoatsArmed.hpp | 5 + .../NeutralBoatsUnarmed.hpp | 45 +++++++ .../NeutralBuildingSupplies.hpp | 50 ++++++++ .../NeutralBusesandVans.hpp | 20 ++++ .../NeutralCargoTrucks.hpp | 70 +++++++++++ .../NeutralChemlitesFlares.hpp | 30 +++++ .../NeutralClothes.hpp | 80 +++++++++++++ .../NeutralCookedMeats.hpp | 40 +++++++ .../NeutralDrinks.hpp | 35 ++++++ .../NeutralExplosives.hpp | 20 ++++ .../NeutralFuelTrucks.hpp | 25 ++++ .../NeutralHelicopterUnarmed.hpp | 30 +++++ .../NeutralLightMachineGun.hpp | 20 ++++ .../NeutralLightMachineGunAmmo.hpp | 15 +++ .../NeutralMedicalSupplies.hpp | 35 ++++++ .../NeutralMilitaryUnarmed.hpp | 40 +++++++ .../NeutralPackagedFood.hpp | 35 ++++++ .../NeutralPistolAmmo.hpp | 35 ++++++ .../NeutralPistols.hpp | 40 +++++++ .../NeutralShotgunsandSingleshot.hpp | 30 +++++ .../NeutralShotgunsandSingleshotAmmo.hpp | 40 +++++++ .../NeutralSmokeGrenades.hpp | 15 +++ .../NeutralSniperRifle.hpp | 45 +++++++ .../NeutralSniperRifleAmmo.hpp | 20 ++++ .../NeutralSubmachineGunAmmo.hpp | 30 +++++ .../NeutralSubmachineGuns.hpp | 30 +++++ .../NeutralToolbeltItems.hpp | 85 ++++++++++++++ .../NeutralTrucks.hpp | 30 +++++ .../NeutralUsedCars.hpp | 85 ++++++++++++++ .../NeutralUtilityVehicles.hpp | 85 ++++++++++++++ .../NeutralVehicleParts.hpp | 50 ++++++++ .../NeutralWholesale.hpp | 60 ++++++++++ Tools/TraderMigration/serverTraders2cfg.pl | 29 +++++ 84 files changed, 3554 insertions(+) diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditAmmunition.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditAmmunition.hpp index 4e2f561a7..abbad8734 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditAmmunition.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditAmmunition.hpp @@ -1,3 +1,28 @@ class BanditAmmunition { tid = 577; + class 30Rnd_556x45_StanagSD { + type = "trade_items"; + buy[] = {4,"ItemSilverBar10oz",1}; + sell[] = {2,"ItemSilverBar10oz",1}; + }; + class 5Rnd_86x70_L115A1 { + type = "trade_items"; + buy[] = {4,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; + class 100Rnd_762x51_M240 { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class 20Rnd_762x51_FNFAL { + type = "trade_items"; + buy[] = {4,"ItemSilverBar10oz",1}; + sell[] = {2,"ItemSilverBar10oz",1}; + }; + class 20Rnd_762x51_SB_SCAR { + type = "trade_items"; + buy[] = {1,"ItemGoldBar",1}; + sell[] = {5,"ItemSilverBar10oz",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditClothing.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditClothing.hpp index 7a727df8a..61d19ec98 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditClothing.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditClothing.hpp @@ -1,3 +1,63 @@ class BanditClothing { tid = 575; + class Skin_Bandit1_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_Bandit2_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_GUE_Commander_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_GUE_Soldier_2_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_GUE_Soldier_CO_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_GUE_Soldier_Crew_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_GUE_Soldier_Sniper_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_Ins_Soldier_GL_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_TK_INS_Soldier_EP1_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_TK_INS_Warlord_EP1_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_BanditW1_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_BanditW2_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditHelicopterArmed.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditHelicopterArmed.hpp index 4fe6d6f23..b34fe16e6 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditHelicopterArmed.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditHelicopterArmed.hpp @@ -1,3 +1,28 @@ class BanditHelicopterArmed { tid = 512; + class CH_47F_EP1_DZE { + type = "trade_any_vehicle"; + buy[] = {2,"ItemBriefcase100oz",1}; + sell[] = {1,"ItemBriefcase100oz",1}; + }; + class UH1H_DZE { + type = "trade_any_vehicle"; + buy[] = {2,"ItemBriefcase100oz",1}; + sell[] = {1,"ItemBriefcase100oz",1}; + }; + class Mi17_DZE { + type = "trade_any_vehicle"; + buy[] = {1,"ItemBriefcase100oz",1}; + sell[] = {5,"ItemGoldBar10oz",1}; + }; + class UH60M_EP1_DZE { + type = "trade_any_vehicle"; + buy[] = {2,"ItemBriefcase100oz",1}; + sell[] = {1,"ItemBriefcase100oz",1}; + }; + class UH1Y_DZE { + type = "trade_any_vehicle"; + buy[] = {2,"ItemBriefcase100oz",1}; + sell[] = {1,"ItemBriefcase100oz",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditMilitaryArmed.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditMilitaryArmed.hpp index e099d1ce0..3522e874e 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditMilitaryArmed.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditMilitaryArmed.hpp @@ -1,3 +1,33 @@ class BanditMilitaryArmed { tid = 569; + class HMMWV_M998A2_SOV_DES_EP1_DZE { + type = "trade_any_vehicle"; + buy[] = {4,"ItemGoldBar10oz",1}; + sell[] = {2,"ItemGoldBar10oz",1}; + }; + class HMMWV_M1151_M2_CZ_DES_EP1_DZE { + type = "trade_any_vehicle"; + buy[] = {1,"ItemBriefcase100oz",1}; + sell[] = {5,"ItemGoldBar10oz",1}; + }; + class LandRover_Special_CZ_EP1_DZE { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class LandRover_MG_TK_EP1_DZE { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class UAZ_MG_TK_EP1_DZE { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class GAZ_Vodnik_DZE { + type = "trade_any_vehicle"; + buy[] = {1,"ItemBriefcase100oz",1}; + sell[] = {5,"ItemGoldBar10oz",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditTrucksArmed.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditTrucksArmed.hpp index e8a2ed301..fdd0363f9 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditTrucksArmed.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditTrucksArmed.hpp @@ -1,3 +1,28 @@ class BanditTrucksArmed { tid = 534; + class Pickup_PK_GUE_DZE { + type = "trade_any_vehicle"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class Pickup_PK_INS_DZE { + type = "trade_any_vehicle"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class ArmoredSUV_PMC_DZE { + type = "trade_any_vehicle"; + buy[] = {2,"ItemBriefcase100oz",1}; + sell[] = {1,"ItemBriefcase100oz",1}; + }; + class Pickup_PK_TK_GUE_EP1_DZE { + type = "trade_any_vehicle"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class Offroad_DSHKM_Gue_DZE { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditWeapons.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditWeapons.hpp index daab40b2c..66ae8eed4 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditWeapons.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditWeapons.hpp @@ -1,3 +1,43 @@ class BanditWeapons { tid = 627; + class G36_C_SD_camo { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class M4A1_AIM_SD_camo { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class FN_FAL_ANPVS4 { + type = "trade_weapons"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class SCAR_H_LNG_Sniper_SD { + type = "trade_weapons"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class BAF_LRR_scoped { + type = "trade_weapons"; + buy[] = {4,"ItemGoldBar10oz",1}; + sell[] = {2,"ItemGoldBar10oz",1}; + }; + class FN_FAL { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class Mk_48_DZ { + type = "trade_weapons"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class M240_DZ { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyAssaultRifle.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyAssaultRifle.hpp index 1c0c44fdf..25e07b7cd 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyAssaultRifle.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyAssaultRifle.hpp @@ -1,3 +1,113 @@ class FriendlyAssaultRifle { tid = 485; + class G36A_camo { + type = "trade_weapons"; + buy[] = {6,"ItemGoldBar",1}; + sell[] = {3,"ItemGoldBar",1}; + }; + class G36C { + type = "trade_weapons"; + buy[] = {4,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; + class G36C_camo { + type = "trade_weapons"; + buy[] = {6,"ItemGoldBar",1}; + sell[] = {3,"ItemGoldBar",1}; + }; + class G36K_camo { + type = "trade_weapons"; + buy[] = {6,"ItemGoldBar",1}; + sell[] = {3,"ItemGoldBar",1}; + }; + class M16A2 { + type = "trade_weapons"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class M16A2GL { + type = "trade_weapons"; + buy[] = {4,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; + class M16A4_ACG { + type = "trade_weapons"; + buy[] = {4,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; + class M4A1 { + type = "trade_weapons"; + buy[] = {4,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; + class M4A1_HWS_GL_camo { + type = "trade_weapons"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class M4A3_CCO_EP1 { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class M4A1_Aim { + type = "trade_weapons"; + buy[] = {6,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class Sa58P_EP1 { + type = "trade_weapons"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Sa58V_CCO_EP1 { + type = "trade_weapons"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class Sa58V_EP1 { + type = "trade_weapons"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Sa58V_RCO_EP1 { + type = "trade_weapons"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class AKS_74_kobra { + type = "trade_weapons"; + buy[] = {4,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; + class AKS_74_U { + type = "trade_weapons"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class AK_47_M { + type = "trade_weapons"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {6,"ItemGoldBar",1}; + }; + class AK_74 { + type = "trade_weapons"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class FN_FAL { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class BAF_L85A2_RIS_SUSAT { + type = "trade_weapons"; + buy[] = {6,"ItemGoldBar",1}; + sell[] = {3,"ItemGoldBar",1}; + }; + class BAF_L85A2_RIS_Holo { + type = "trade_weapons"; + buy[] = {9,"ItemGoldBar10oz",1}; + sell[] = {6,"ItemGoldBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyAssaultRifleAmmo.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyAssaultRifleAmmo.hpp index 8a7c7e3df..a3468c058 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyAssaultRifleAmmo.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyAssaultRifleAmmo.hpp @@ -1,3 +1,28 @@ class FriendlyAssaultRifleAmmo { tid = 480; + class 30Rnd_556x45_Stanag { + type = "trade_items"; + buy[] = {4,"ItemSilverBar",1}; + sell[] = {2,"ItemSilverBar",1}; + }; + class 20Rnd_762x51_FNFAL { + type = "trade_items"; + buy[] = {4,"ItemSilverBar10oz",1}; + sell[] = {2,"ItemSilverBar10oz",1}; + }; + class 30Rnd_545x39_AK { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class 30Rnd_762x39_AK47 { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class 30Rnd_762x39_SA58 { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBackpacks.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBackpacks.hpp index 914057bc6..c3d9ee6f1 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBackpacks.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBackpacks.hpp @@ -1,3 +1,58 @@ class FriendlyBackpacks { tid = 538; + class DZ_Patrol_Pack_EP1 { + type = "trade_backpacks"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class CZ_VestPouch_EP1 { + type = "trade_backpacks"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class DZ_ALICE_Pack_EP1 { + type = "trade_backpacks"; + buy[] = {1,"ItemGoldBar",1}; + sell[] = {5,"ItemSilverBar10oz",1}; + }; + class DZ_Assault_Pack_EP1 { + type = "trade_backpacks"; + buy[] = {1,"ItemGoldBar",1}; + sell[] = {5,"ItemSilverBar10oz",1}; + }; + class DZ_Backpack_EP1 { + type = "trade_backpacks"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class DZ_British_ACU { + type = "trade_backpacks"; + buy[] = {4,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; + class DZ_CivilBackpack_EP1 { + type = "trade_backpacks"; + buy[] = {6,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class DZ_Czech_Vest_Puch { + type = "trade_backpacks"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class DZ_TK_Assault_Pack_EP1 { + type = "trade_backpacks"; + buy[] = {6,"ItemSilverBar10oz",1}; + sell[] = {3,"ItemSilverBar10oz",1}; + }; + class DZ_TerminalPack_EP1 { + type = "trade_backpacks"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; + class DZ_GunBag_EP1 { + type = "trade_backpacks"; + buy[] = {6,"ItemGoldBar",1}; + sell[] = {3,"ItemGoldBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBikesandATV.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBikesandATV.hpp index d4c67b774..cf76c0559 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBikesandATV.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBikesandATV.hpp @@ -1,3 +1,53 @@ class FriendlyBikesandATV { tid = 536; + class MMT_Civ { + type = "trade_any_bicycle"; + buy[] = {4,"ItemSilverBar",1}; + sell[] = {2,"ItemSilverBar",1}; + }; + class Old_bike_TK_INS_EP1 { + type = "trade_any_bicycle"; + buy[] = {4,"ItemSilverBar",1}; + sell[] = {2,"ItemSilverBar",1}; + }; + class TT650_Civ { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class TT650_Ins { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class TT650_TK_CIV_EP1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class ATV_CZ_EP1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class ATV_US_EP1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class M1030_US_DES_EP1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Old_moto_TK_Civ_EP1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class tractor { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBuildingSupplies.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBuildingSupplies.hpp index b0f5a5d29..af28dcffa 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBuildingSupplies.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBuildingSupplies.hpp @@ -1,3 +1,63 @@ class FriendlyBuildingSupplies { tid = 530; + class ItemSandbag { + type = "trade_items"; + buy[] = {4,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; + class ItemTankTrap { + type = "trade_items"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; + class ItemTentOld { + type = "trade_items"; + buy[] = {4,"ItemSilverBar10oz",1}; + sell[] = {2,"ItemSilverBar10oz",1}; + }; + class ItemVault { + type = "trade_items"; + buy[] = {1,"ItemBriefcase100oz",1}; + sell[] = {1,"ItemBriefcase100oz",1}; + }; + class ItemWire { + type = "trade_items"; + buy[] = {6,"ItemSilverBar",1}; + sell[] = {3,"ItemSilverBar",1}; + }; + class 30m_plot_kit { + type = "trade_items"; + buy[] = {6,"ItemGoldBar10oz",1}; + sell[] = {6,"ItemGoldBar10oz",1}; + }; + class ItemCorrugated { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class ItemPole { + type = "trade_items"; + buy[] = {1,"ItemSilverBar10oz",1}; + sell[] = {5,"ItemSilverBar",1}; + }; + class ItemTentDomed { + type = "trade_items"; + buy[] = {6,"ItemSilverBar10oz",1}; + sell[] = {3,"ItemSilverBar10oz",1}; + }; + class ItemTentDomed2 { + type = "trade_items"; + buy[] = {6,"ItemSilverBar10oz",1}; + sell[] = {3,"ItemSilverBar10oz",1}; + }; + class ItemLightBulb { + type = "trade_items"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; + class ItemGenerator { + type = "trade_items"; + buy[] = {6,"ItemGoldBar",1}; + sell[] = {3,"ItemGoldBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBusesandVans.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBusesandVans.hpp index 84e03824e..cd6d49719 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBusesandVans.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBusesandVans.hpp @@ -1,3 +1,23 @@ class FriendlyBusesandVans { tid = 592; + class Ikarus { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class Ikarus_TK_CIV_EP1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class S1203_TK_CIV_EP1 { + type = "trade_any_vehicle"; + buy[] = {6,"ItemGoldBar",1}; + sell[] = {3,"ItemGoldBar",1}; + }; + class S1203_ambulance_EP1 { + type = "trade_any_vehicle"; + buy[] = {6,"ItemGoldBar",1}; + sell[] = {3,"ItemGoldBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyCargoTrucks.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyCargoTrucks.hpp index f536af4e9..9e5a86255 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyCargoTrucks.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyCargoTrucks.hpp @@ -1,3 +1,73 @@ class FriendlyCargoTrucks { tid = 570; + class Ural_CDF { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class Ural_TK_CIV_EP1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class Ural_UN_EP1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class V3S_Open_TK_CIV_EP1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class V3S_Open_TK_EP1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class Kamaz { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class MTVR_DES_EP1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class V3S_Civ { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class V3S_RA_TK_GUE_EP1_DZE { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class V3S_TK_EP1_DZE { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class UralCivil_DZE { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class UralCivil2_DZE { + type = "trade_any_vehicle"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class KamazOpen_DZE { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class MTVR { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyChemlitesFlares.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyChemlitesFlares.hpp index db5683d36..c0fa55da3 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyChemlitesFlares.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyChemlitesFlares.hpp @@ -1,3 +1,33 @@ class FriendlyChemlitesFlares { tid = 542; + class HandChemBlue { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class HandChemGreen { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class HandChemRed { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class FlareGreen_M203 { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class FlareWhite_M203 { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class HandRoadFlare { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyClothes.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyClothes.hpp index 205fb9fa9..3c76b6ceb 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyClothes.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyClothes.hpp @@ -1,3 +1,83 @@ class FriendlyClothes { tid = 628; + class Skin_Rocker2_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_SurvivorW2_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_Functionary1_EP1_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_Haris_Press_EP1_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_Priest_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_SurvivorWpink_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_SurvivorWurban_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_SurvivorWcombat_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_SurvivorWdesert_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_Survivor2_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_Rocker1_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_Rocker3_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_RU_Policeman_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_Pilot_EP1_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_Rocker4_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_SurvivorW3_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyCookedMeats.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyCookedMeats.hpp index 53c9e2f1d..67049da3b 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyCookedMeats.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyCookedMeats.hpp @@ -1,3 +1,43 @@ class FriendlyCookedMeats { tid = 630; + class FoodbaconCooked { + type = "trade_items"; + buy[] = {4,"ItemSilverBar",1}; + sell[] = {2,"ItemSilverBar",1}; + }; + class FoodbeefCooked { + type = "trade_items"; + buy[] = {4,"ItemSilverBar",1}; + sell[] = {2,"ItemSilverBar",1}; + }; + class FoodchickenCooked { + type = "trade_items"; + buy[] = {4,"ItemSilverBar",1}; + sell[] = {2,"ItemSilverBar",1}; + }; + class FoodmuttonCooked { + type = "trade_items"; + buy[] = {4,"ItemSilverBar",1}; + sell[] = {2,"ItemSilverBar",1}; + }; + class FoodrabbitCooked { + type = "trade_items"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; + class ItemTroutCooked { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; + class ItemSeaBassCooked { + type = "trade_items"; + buy[] = {3,"ItemGoldBar",1}; + sell[] = {2,"ItemSilverBar10oz",1}; + }; + class ItemTunaCooked { + type = "trade_items"; + buy[] = {4,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyDrinks.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyDrinks.hpp index 5cf6fd565..80a32b6b7 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyDrinks.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyDrinks.hpp @@ -1,3 +1,38 @@ class FriendlyDrinks { tid = 601; + class ItemSodaCoke { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class ItemSodaPepsi { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class ItemSodaMdew { + type = "trade_items"; + buy[] = {6,"ItemGoldBar",1}; + sell[] = {3,"ItemGoldBar",1}; + }; + class ItemSodaR4z0r { + type = "trade_items"; + buy[] = {6,"ItemGoldBar",1}; + sell[] = {3,"ItemGoldBar",1}; + }; + class ItemWaterbottleUnfilled { + type = "trade_items"; + buy[] = {3,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class ItemSodaRbull { + type = "trade_items"; + buy[] = {6,"ItemGoldBar",1}; + sell[] = {3,"ItemGoldBar",1}; + }; + class ItemSodaOrangeSherbet { + type = "trade_items"; + buy[] = {4,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyFuelTrucks.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyFuelTrucks.hpp index faeafbc22..f22ad4cab 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyFuelTrucks.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyFuelTrucks.hpp @@ -1,3 +1,28 @@ class FriendlyFuelTrucks { tid = 595; + class KamazRefuel_DZ { + type = "trade_any_vehicle"; + buy[] = {7,"ItemGoldBar10oz",1}; + sell[] = {3,"ItemGoldBar10oz",1}; + }; + class MtvrRefuel_DES_EP1_DZ { + type = "trade_any_vehicle"; + buy[] = {7,"ItemGoldBar10oz",1}; + sell[] = {3,"ItemGoldBar10oz",1}; + }; + class UralRefuel_TK_EP1_DZ { + type = "trade_any_vehicle"; + buy[] = {7,"ItemGoldBar10oz",1}; + sell[] = {3,"ItemGoldBar10oz",1}; + }; + class V3S_Refuel_TK_GUE_EP1_DZ { + type = "trade_any_vehicle"; + buy[] = {7,"ItemGoldBar10oz",1}; + sell[] = {3,"ItemGoldBar10oz",1}; + }; + class MtvrRefuel_DZ { + type = "trade_any_vehicle"; + buy[] = {7,"ItemGoldBar10oz",1}; + sell[] = {3,"ItemGoldBar10oz",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyLightMachineGun.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyLightMachineGun.hpp index 6daa90e96..7e227febe 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyLightMachineGun.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyLightMachineGun.hpp @@ -1,3 +1,23 @@ class FriendlyLightMachineGun { tid = 486; + class M249_EP1_DZ { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {6,"ItemGoldBar",1}; + }; + class M240_DZ { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class Mk_48_DZ { + type = "trade_weapons"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class Pecheneg_DZ { + type = "trade_weapons"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyLightMachineGunAmmo.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyLightMachineGunAmmo.hpp index 794821657..e61ab6c5d 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyLightMachineGunAmmo.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyLightMachineGunAmmo.hpp @@ -1,3 +1,18 @@ class FriendlyLightMachineGunAmmo { tid = 481; + class 100Rnd_762x51_M240 { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class 200Rnd_556x45_M249 { + type = "trade_items"; + buy[] = {4,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; + class 100Rnd_762x54_PK { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyMedicalSupplies.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyMedicalSupplies.hpp index 79661b954..efb63ac9e 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyMedicalSupplies.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyMedicalSupplies.hpp @@ -1,3 +1,38 @@ class FriendlyMedicalSupplies { tid = 541; + class ItemAntibiotic { + type = "trade_items"; + buy[] = {1,"ItemGoldBar",1}; + sell[] = {2,"ItemSilverBar10oz",1}; + }; + class ItemBandage { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class ItemBloodbag { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class ItemEpinephrine { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class ItemHeatPack { + type = "trade_items"; + buy[] = {1,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class ItemMorphine { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class ItemPainkiller { + type = "trade_items"; + buy[] = {1,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyMilitaryUnarmed.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyMilitaryUnarmed.hpp index 71a03e8e2..ad4428e69 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyMilitaryUnarmed.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyMilitaryUnarmed.hpp @@ -1,3 +1,43 @@ class FriendlyMilitaryUnarmed { tid = 599; + class HMMWV_M1035_DES_EP1 { + type = "trade_any_vehicle"; + buy[] = {4,"ItemGoldBar10oz",1}; + sell[] = {2,"ItemGoldBar10oz",1}; + }; + class HMMWV_Ambulance { + type = "trade_any_vehicle"; + buy[] = {4,"ItemGoldBar10oz",1}; + sell[] = {2,"ItemGoldBar10oz",1}; + }; + class HMMWV_Ambulance_CZ_DES_EP1 { + type = "trade_any_vehicle"; + buy[] = {4,"ItemGoldBar10oz",1}; + sell[] = {2,"ItemGoldBar10oz",1}; + }; + class HMMWV_DES_EP1 { + type = "trade_any_vehicle"; + buy[] = {4,"ItemGoldBar10oz",1}; + sell[] = {2,"ItemGoldBar10oz",1}; + }; + class GAZ_Vodnik_MedEvac { + type = "trade_any_vehicle"; + buy[] = {9,"ItemGoldBar10oz",1}; + sell[] = {6,"ItemGoldBar10oz",1}; + }; + class HMMWV_DZ { + type = "trade_any_vehicle"; + buy[] = {4,"ItemGoldBar10oz",1}; + sell[] = {2,"ItemGoldBar10oz",1}; + }; + class LandRover_CZ_EP1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class LandRover_TK_CIV_EP1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyPackagedFood.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyPackagedFood.hpp index d13784dc8..771788075 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyPackagedFood.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyPackagedFood.hpp @@ -1,3 +1,38 @@ class FriendlyPackagedFood { tid = 629; + class FoodCanBakedBeans { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class FoodCanFrankBeans { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class FoodCanPasta { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class FoodCanSardines { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class FoodMRE { + type = "trade_items"; + buy[] = {1,"ItemSilverBar10oz",1}; + sell[] = {5,"ItemSilverBar",1}; + }; + class FoodPistachio { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class FoodNutmix { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyPistolAmmo.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyPistolAmmo.hpp index 358939775..efdae7dde 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyPistolAmmo.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyPistolAmmo.hpp @@ -1,3 +1,38 @@ class FriendlyPistolAmmo { tid = 484; + class 15Rnd_9x19_M9 { + type = "trade_items"; + buy[] = {1,"ItemSilverBar10oz",1}; + sell[] = {5,"ItemSilverBar",1}; + }; + class 15Rnd_9x19_M9SD { + type = "trade_items"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; + class 17Rnd_9x19_glock17 { + type = "trade_items"; + buy[] = {1,"ItemSilverBar10oz",1}; + sell[] = {5,"ItemSilverBar",1}; + }; + class 6Rnd_45ACP { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class 7Rnd_45ACP_1911 { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class 8Rnd_9x18_Makarov { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class 8Rnd_9x18_MakarovSD { + type = "trade_items"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyPistols.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyPistols.hpp index ed19fedce..8abd28579 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyPistols.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyPistols.hpp @@ -1,3 +1,43 @@ class FriendlyPistols { tid = 489; + class M9SD { + type = "trade_weapons"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class glock17_EP1 { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar",1}; + sell[] = {5,"ItemSilverBar10oz",1}; + }; + class Colt1911 { + type = "trade_weapons"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; + class M9 { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar",1}; + sell[] = {2,"ItemSilverBar10oz",1}; + }; + class MakarovSD { + type = "trade_weapons"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class revolver_gold_EP1 { + type = "trade_weapons"; + buy[] = {3,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; + class Makarov { + type = "trade_weapons"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; + class revolver_EP1 { + type = "trade_weapons"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyShotgunsandSingleshot.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyShotgunsandSingleshot.hpp index 6c0cf9547..fb3e374d9 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyShotgunsandSingleshot.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyShotgunsandSingleshot.hpp @@ -1,3 +1,33 @@ class FriendlyShotgunsandSingleshot { tid = 574; + class Winchester1866 { + type = "trade_weapons"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; + class MR43 { + type = "trade_weapons"; + buy[] = {1,"ItemSilverBar10oz",1}; + sell[] = {8,"ItemSilverBar",1}; + }; + class Crossbow_DZ { + type = "trade_weapons"; + buy[] = {1,"ItemSilverBar10oz",1}; + sell[] = {5,"ItemSilverBar",1}; + }; + class M1014 { + type = "trade_weapons"; + buy[] = {3,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; + class Remington870_lamp { + type = "trade_weapons"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class LeeEnfield { + type = "trade_weapons"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyShotgunsandSingleshotAmmo.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyShotgunsandSingleshotAmmo.hpp index 2b4f6be97..3db1a4304 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyShotgunsandSingleshotAmmo.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyShotgunsandSingleshotAmmo.hpp @@ -1,3 +1,38 @@ class FriendlyShotgunsandSingleshotAmmo { tid = 573; + class 15Rnd_W1866_Slug { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class 2Rnd_shotgun_74Pellets { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class 2Rnd_shotgun_74Slug { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class 8Rnd_B_Beneli_74Slug { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class 8Rnd_B_Beneli_Pellets { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class Quiver { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class 10x_303 { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySmokeGrenades.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySmokeGrenades.hpp index d74b776f4..12b85f144 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySmokeGrenades.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySmokeGrenades.hpp @@ -1,3 +1,18 @@ class FriendlySmokeGrenades { tid = 543; + class SmokeShell { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class SmokeShellGreen { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class SmokeShellRed { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySniperRifle.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySniperRifle.hpp index 89a67189b..52d6777a9 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySniperRifle.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySniperRifle.hpp @@ -1,3 +1,48 @@ class FriendlySniperRifle { tid = 487; + class SVD_CAMO { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {6,"ItemGoldBar",1}; + }; + class M40A3 { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {6,"ItemGoldBar",1}; + }; + class M14_EP1 { + type = "trade_weapons"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class huntingrifle { + type = "trade_weapons"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class M4SPR { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {6,"ItemGoldBar",1}; + }; + class SVD { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {6,"ItemGoldBar",1}; + }; + class SVD_des_EP1 { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {6,"ItemGoldBar",1}; + }; + class M24 { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {6,"ItemGoldBar",1}; + }; + class M24_des_EP1 { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {6,"ItemGoldBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySniperRifleAmmo.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySniperRifleAmmo.hpp index 5dd293049..92d50270c 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySniperRifleAmmo.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySniperRifleAmmo.hpp @@ -1,3 +1,23 @@ class FriendlySniperRifleAmmo { tid = 482; + class 20Rnd_762x51_DMR { + type = "trade_items"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; + class 10Rnd_762x54_SVD { + type = "trade_items"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; + class 5Rnd_762x51_M24 { + type = "trade_items"; + buy[] = {1,"ItemSilverBar10oz",1}; + sell[] = {5,"ItemSilverBar",1}; + }; + class 5x_22_LR_17_HMR { + type = "trade_items"; + buy[] = {1,"ItemGoldBar",1}; + sell[] = {5,"ItemSilverBar10oz",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySubmachineGunAmmo.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySubmachineGunAmmo.hpp index 1b472cb07..28ee18f46 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySubmachineGunAmmo.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySubmachineGunAmmo.hpp @@ -1,3 +1,33 @@ class FriendlySubmachineGunAmmo { tid = 483; + class 30rnd_9x19_MP5 { + type = "trade_items"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; + class 30Rnd_9x19_MP5SD { + type = "trade_items"; + buy[] = {4,"ItemSilverBar10oz",1}; + sell[] = {2,"ItemSilverBar10oz",1}; + }; + class 30Rnd_9x19_UZI { + type = "trade_items"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; + class 64Rnd_9x19_SD_Bizon { + type = "trade_items"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; + class 30Rnd_9x19_UZI_SD { + type = "trade_items"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; + class 20Rnd_B_765x17_Ball { + type = "trade_items"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySubmachineGuns.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySubmachineGuns.hpp index 702f76f6d..6d1fc077b 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySubmachineGuns.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySubmachineGuns.hpp @@ -1,3 +1,33 @@ class FriendlySubmachineGuns { tid = 488; + class bizon_silenced { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class UZI_EP1 { + type = "trade_weapons"; + buy[] = {4,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; + class Sa61_EP1 { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar",1}; + sell[] = {5,"ItemSilverBar10oz",1}; + }; + class MP5A5 { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar",1}; + sell[] = {2,"ItemSilverBar10oz",1}; + }; + class UZI_SD_EP1 { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class MP5SD { + type = "trade_weapons"; + buy[] = {6,"ItemGoldBar",1}; + sell[] = {3,"ItemGoldBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyToolbeltItems.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyToolbeltItems.hpp index 6f5b58487..959c94b99 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyToolbeltItems.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyToolbeltItems.hpp @@ -1,3 +1,88 @@ class FriendlyToolbeltItems { tid = 532; + class ItemCompass { + type = "trade_weapons"; + buy[] = {6,"ItemSilverBar",1}; + sell[] = {3,"ItemSilverBar",1}; + }; + class Binocular { + type = "trade_weapons"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class Binocular_Vector { + type = "trade_weapons"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class ItemEtool { + type = "trade_weapons"; + buy[] = {9,"ItemSilverBar10oz",1}; + sell[] = {6,"ItemSilverBar10oz",1}; + }; + class ItemFlashlight { + type = "trade_weapons"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class ItemFlashlightRed { + type = "trade_weapons"; + buy[] = {1,"ItemSilverBar10oz",1}; + sell[] = {5,"ItemSilverBar",1}; + }; + class ItemGPS { + type = "trade_weapons"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class ItemHatchet_DZE { + type = "trade_weapons"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class ItemKnife { + type = "trade_weapons"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class ItemMap { + type = "trade_weapons"; + buy[] = {6,"ItemSilverBar",1}; + sell[] = {3,"ItemSilverBar",1}; + }; + class ItemMatchbox_DZE { + type = "trade_weapons"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class ItemToolbox { + type = "trade_weapons"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class ItemWatch { + type = "trade_weapons"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class NVGoggles { + type = "trade_weapons"; + buy[] = {4,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class ItemCrowbar { + type = "trade_weapons"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class ItemMachete { + type = "trade_weapons"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class ItemFishingPole { + type = "trade_weapons"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyTrucks.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyTrucks.hpp index 065cccb9c..bc38f4c9b 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyTrucks.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyTrucks.hpp @@ -1,3 +1,33 @@ class FriendlyTrucks { tid = 495; + class hilux1_civil_3_open_EP1 { + type = "trade_any_vehicle"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class datsun1_civil_3_open { + type = "trade_any_vehicle"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class hilux1_civil_1_open { + type = "trade_any_vehicle"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class datsun1_civil_2_covered { + type = "trade_any_vehicle"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class datsun1_civil_1_open { + type = "trade_any_vehicle"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class hilux1_civil_2_covered { + type = "trade_any_vehicle"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyTrucksUnarmed.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyTrucksUnarmed.hpp index d2604f601..2144aae54 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyTrucksUnarmed.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyTrucksUnarmed.hpp @@ -1,3 +1,33 @@ class FriendlyTrucksUnarmed { tid = 535; + class hilux1_civil_3_open_EP1 { + type = "trade_any_vehicle"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class datsun1_civil_3_open { + type = "trade_any_vehicle"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class hilux1_civil_1_open { + type = "trade_any_vehicle"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class datsun1_civil_2_covered { + type = "trade_any_vehicle"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class datsun1_civil_1_open { + type = "trade_any_vehicle"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class hilux1_civil_2_covered { + type = "trade_any_vehicle"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyUsedCars.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyUsedCars.hpp index 6bebeb5df..bf4e58bd7 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyUsedCars.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyUsedCars.hpp @@ -1,3 +1,88 @@ class FriendlyUsedCars { tid = 600; + class Skoda { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class SkodaBlue { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class SkodaGreen { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class SkodaRed { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class VolhaLimo_TK_CIV_EP1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Volha_1_TK_CIV_EP1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Volha_2_TK_CIV_EP1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class VWGolf { + type = "trade_any_vehicle"; + buy[] = {3,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; + class car_hatchback { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class car_sedan { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class GLT_M300_LT { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class GLT_M300_ST { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Lada1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Lada1_TK_CIV_EP1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Lada2 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Lada2_TK_CIV_EP1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class LadaLM { + type = "trade_any_vehicle"; + buy[] = {3,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyUtilityVehicles.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyUtilityVehicles.hpp index 26da6d0ae..b010eb49b 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyUtilityVehicles.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyUtilityVehicles.hpp @@ -1,3 +1,88 @@ class FriendlyUtilityVehicles { tid = 568; + class SUV_TK_CIV_EP1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class SUV_Blue { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class SUV_Charcoal { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class SUV_Green { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class SUV_Orange { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class SUV_Pink { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class SUV_Red { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class SUV_Silver { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class SUV_White { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class SUV_Yellow { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class SUV_Camo { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class UAZ_CDF { + type = "trade_any_vehicle"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class UAZ_INS { + type = "trade_any_vehicle"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class UAZ_RU { + type = "trade_any_vehicle"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class UAZ_Unarmed_TK_CIV_EP1 { + type = "trade_any_vehicle"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class UAZ_Unarmed_TK_EP1 { + type = "trade_any_vehicle"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class UAZ_Unarmed_UN_EP1 { + type = "trade_any_vehicle"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyVehicleParts.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyVehicleParts.hpp index b211fe666..13def8e3a 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyVehicleParts.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyVehicleParts.hpp @@ -1,3 +1,53 @@ class FriendlyVehicleParts { tid = 531; + class ItemJerrycan { + type = "trade_items"; + buy[] = {4,"ItemSilverBar",1}; + sell[] = {2,"ItemSilverBar",1}; + }; + class ItemJerrycanEmpty { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class PartEngine { + type = "trade_items"; + buy[] = {5,"ItemGoldBar",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; + class PartVRotor { + type = "trade_items"; + buy[] = {5,"ItemGoldBar",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; + class PartWheel { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {2,"ItemSilverBar",1}; + }; + class PartGlass { + type = "trade_items"; + buy[] = {1,"ItemGoldBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class PartGeneric { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {6,"ItemSilverBar",1}; + }; + class PartFueltank { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {5,"ItemSilverBar",1}; + }; + class ItemFuelBarrel { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class ItemFuelBarrelEmpty { + type = "trade_items"; + buy[] = {6,"ItemSilverBar10oz",1}; + sell[] = {3,"ItemSilverBar10oz",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroAmmunition.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroAmmunition.hpp index e18a70e71..0bd366ec7 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroAmmunition.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroAmmunition.hpp @@ -1,3 +1,28 @@ class HeroAmmunition { tid = 478; + class 30Rnd_556x45_StanagSD { + type = "trade_items"; + buy[] = {4,"ItemSilverBar10oz",1}; + sell[] = {2,"ItemSilverBar10oz",1}; + }; + class 5Rnd_86x70_L115A1 { + type = "trade_items"; + buy[] = {4,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; + class 100Rnd_762x51_M240 { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class 20Rnd_762x51_FNFAL { + type = "trade_items"; + buy[] = {4,"ItemSilverBar10oz",1}; + sell[] = {2,"ItemSilverBar10oz",1}; + }; + class 20Rnd_762x51_SB_SCAR { + type = "trade_items"; + buy[] = {1,"ItemGoldBar",1}; + sell[] = {5,"ItemSilverBar10oz",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroClothes.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroClothes.hpp index 43dc9b35a..1ac775096 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroClothes.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroClothes.hpp @@ -1,3 +1,68 @@ class HeroClothes { tid = 476; + class Skin_CZ_Special_Forces_GL_DES_EP1_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_Drake_Light_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_Soldier_Sniper_PMC_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_FR_OHara_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_FR_Rodriguez_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_CZ_Soldier_Sniper_EP1_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_Graves_Light_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_Soldier_Bodyguard_AA12_PMC_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_Camo1_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_Rocket_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_Sniper1_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_Soldier1_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_Soldier_TL_PMC_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroHelicopterArmed.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroHelicopterArmed.hpp index 7c3b4dd74..d36b4ae33 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroHelicopterArmed.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroHelicopterArmed.hpp @@ -1,3 +1,28 @@ class HeroHelicopterArmed { tid = 493; + class CH_47F_EP1_DZE { + type = "trade_any_vehicle"; + buy[] = {2,"ItemBriefcase100oz",1}; + sell[] = {1,"ItemBriefcase100oz",1}; + }; + class UH1H_DZE { + type = "trade_any_vehicle"; + buy[] = {2,"ItemBriefcase100oz",1}; + sell[] = {1,"ItemBriefcase100oz",1}; + }; + class Mi17_DZE { + type = "trade_any_vehicle"; + buy[] = {1,"ItemBriefcase100oz",1}; + sell[] = {5,"ItemGoldBar10oz",1}; + }; + class UH60M_EP1_DZE { + type = "trade_any_vehicle"; + buy[] = {2,"ItemBriefcase100oz",1}; + sell[] = {1,"ItemBriefcase100oz",1}; + }; + class UH1Y_DZE { + type = "trade_any_vehicle"; + buy[] = {2,"ItemBriefcase100oz",1}; + sell[] = {1,"ItemBriefcase100oz",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroMilitaryArmed.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroMilitaryArmed.hpp index 504e84cc9..16680fe83 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroMilitaryArmed.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroMilitaryArmed.hpp @@ -1,3 +1,33 @@ class HeroMilitaryArmed { tid = 562; + class HMMWV_M998A2_SOV_DES_EP1_DZE { + type = "trade_any_vehicle"; + buy[] = {4,"ItemGoldBar10oz",1}; + sell[] = {2,"ItemGoldBar10oz",1}; + }; + class HMMWV_M1151_M2_CZ_DES_EP1_DZE { + type = "trade_any_vehicle"; + buy[] = {1,"ItemBriefcase100oz",1}; + sell[] = {5,"ItemGoldBar10oz",1}; + }; + class LandRover_Special_CZ_EP1_DZE { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class LandRover_MG_TK_EP1_DZE { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class UAZ_MG_TK_EP1_DZE { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class GAZ_Vodnik_DZE { + type = "trade_any_vehicle"; + buy[] = {1,"ItemBriefcase100oz",1}; + sell[] = {5,"ItemGoldBar10oz",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroTrucksArmed.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroTrucksArmed.hpp index 454523268..dcba378d5 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroTrucksArmed.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroTrucksArmed.hpp @@ -1,3 +1,28 @@ class HeroTrucksArmed { tid = 479; + class ArmoredSUV_PMC_DZE { + type = "trade_any_vehicle"; + buy[] = {2,"ItemBriefcase100oz",1}; + sell[] = {1,"ItemBriefcase100oz",1}; + }; + class Pickup_PK_TK_GUE_EP1_DZE { + type = "trade_any_vehicle"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class Offroad_DSHKM_Gue_DZE { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class Pickup_PK_GUE_DZE { + type = "trade_any_vehicle"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class Pickup_PK_INS_DZE { + type = "trade_any_vehicle"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroWeapons.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroWeapons.hpp index a9b96120f..f1e64c6ab 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroWeapons.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroWeapons.hpp @@ -1,3 +1,43 @@ class HeroWeapons { tid = 477; + class G36_C_SD_camo { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class M4A1_AIM_SD_camo { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class FN_FAL_ANPVS4 { + type = "trade_weapons"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class SCAR_H_LNG_Sniper_SD { + type = "trade_weapons"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class BAF_LRR_scoped { + type = "trade_weapons"; + buy[] = {4,"ItemGoldBar10oz",1}; + sell[] = {2,"ItemGoldBar10oz",1}; + }; + class FN_FAL { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class Mk_48_DZ { + type = "trade_weapons"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class M240_DZ { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralAirplanes.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralAirplanes.hpp index 0c7eed902..3d2d21088 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralAirplanes.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralAirplanes.hpp @@ -1,3 +1,38 @@ class NeutralAirplanes { tid = 517; + class AN2_DZ { + type = "trade_any_vehicle"; + buy[] = {4,"ItemGoldBar10oz",1}; + sell[] = {2,"ItemGoldBar10oz",1}; + }; + class C130J_US_EP1 { + type = "trade_any_vehicle"; + buy[] = {4,"ItemBriefcase100oz",1}; + sell[] = {2,"ItemBriefcase100oz",1}; + }; + class MV22_DZ { + type = "trade_any_vehicle"; + buy[] = {5,"ItemBriefcase100oz",1}; + sell[] = {2,"ItemBriefcase100oz",1}; + }; + class GNT_C185U { + type = "trade_any_vehicle"; + buy[] = {4,"ItemGoldBar10oz",1}; + sell[] = {2,"ItemGoldBar10oz",1}; + }; + class GNT_C185 { + type = "trade_any_vehicle"; + buy[] = {4,"ItemGoldBar10oz",1}; + sell[] = {2,"ItemGoldBar10oz",1}; + }; + class GNT_C185R { + type = "trade_any_vehicle"; + buy[] = {4,"ItemGoldBar10oz",1}; + sell[] = {2,"ItemGoldBar10oz",1}; + }; + class GNT_C185C { + type = "trade_any_vehicle"; + buy[] = {4,"ItemGoldBar10oz",1}; + sell[] = {2,"ItemGoldBar10oz",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralAssaultRifle.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralAssaultRifle.hpp index 35280ac95..ad011d188 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralAssaultRifle.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralAssaultRifle.hpp @@ -1,3 +1,113 @@ class NeutralAssaultRifle { tid = 637; + class G36A_camo { + type = "trade_weapons"; + buy[] = {6,"ItemGoldBar",1}; + sell[] = {3,"ItemGoldBar",1}; + }; + class G36C { + type = "trade_weapons"; + buy[] = {4,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; + class G36C_camo { + type = "trade_weapons"; + buy[] = {6,"ItemGoldBar",1}; + sell[] = {3,"ItemGoldBar",1}; + }; + class G36K_camo { + type = "trade_weapons"; + buy[] = {6,"ItemGoldBar",1}; + sell[] = {3,"ItemGoldBar",1}; + }; + class M16A2 { + type = "trade_weapons"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class M16A2GL { + type = "trade_weapons"; + buy[] = {4,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; + class M16A4_ACG { + type = "trade_weapons"; + buy[] = {4,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; + class M4A1 { + type = "trade_weapons"; + buy[] = {4,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; + class M4A1_HWS_GL_camo { + type = "trade_weapons"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class M4A3_CCO_EP1 { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class M4A1_Aim { + type = "trade_weapons"; + buy[] = {6,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class Sa58P_EP1 { + type = "trade_weapons"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Sa58V_CCO_EP1 { + type = "trade_weapons"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class Sa58V_EP1 { + type = "trade_weapons"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Sa58V_RCO_EP1 { + type = "trade_weapons"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class AKS_74_kobra { + type = "trade_weapons"; + buy[] = {4,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; + class AKS_74_U { + type = "trade_weapons"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class AK_47_M { + type = "trade_weapons"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {6,"ItemGoldBar",1}; + }; + class AK_74 { + type = "trade_weapons"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class FN_FAL { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class BAF_L85A2_RIS_SUSAT { + type = "trade_weapons"; + buy[] = {6,"ItemGoldBar",1}; + sell[] = {3,"ItemGoldBar",1}; + }; + class BAF_L85A2_RIS_Holo { + type = "trade_weapons"; + buy[] = {9,"ItemGoldBar10oz",1}; + sell[] = {6,"ItemGoldBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralAssaultRifleAmmo.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralAssaultRifleAmmo.hpp index 6647e4966..cc8b5ed12 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralAssaultRifleAmmo.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralAssaultRifleAmmo.hpp @@ -1,3 +1,28 @@ class NeutralAssaultRifleAmmo { tid = 609; + class 30Rnd_556x45_Stanag { + type = "trade_items"; + buy[] = {4,"ItemSilverBar",1}; + sell[] = {2,"ItemSilverBar",1}; + }; + class 20Rnd_762x51_FNFAL { + type = "trade_items"; + buy[] = {4,"ItemSilverBar10oz",1}; + sell[] = {2,"ItemSilverBar10oz",1}; + }; + class 30Rnd_545x39_AK { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class 30Rnd_762x39_AK47 { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class 30Rnd_762x39_SA58 { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBackpacks.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBackpacks.hpp index e63cee9fc..5a3432744 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBackpacks.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBackpacks.hpp @@ -1,3 +1,58 @@ class NeutralBackpacks { tid = 632; + class DZ_Patrol_Pack_EP1 { + type = "trade_backpacks"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class CZ_VestPouch_EP1 { + type = "trade_backpacks"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class DZ_ALICE_Pack_EP1 { + type = "trade_backpacks"; + buy[] = {1,"ItemGoldBar",1}; + sell[] = {5,"ItemSilverBar10oz",1}; + }; + class DZ_Assault_Pack_EP1 { + type = "trade_backpacks"; + buy[] = {1,"ItemGoldBar",1}; + sell[] = {5,"ItemSilverBar10oz",1}; + }; + class DZ_Backpack_EP1 { + type = "trade_backpacks"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class DZ_British_ACU { + type = "trade_backpacks"; + buy[] = {4,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; + class DZ_CivilBackpack_EP1 { + type = "trade_backpacks"; + buy[] = {6,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class DZ_Czech_Vest_Puch { + type = "trade_backpacks"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class DZ_TK_Assault_Pack_EP1 { + type = "trade_backpacks"; + buy[] = {6,"ItemSilverBar10oz",1}; + sell[] = {3,"ItemSilverBar10oz",1}; + }; + class DZ_TerminalPack_EP1 { + type = "trade_backpacks"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; + class DZ_GunBag_EP1 { + type = "trade_backpacks"; + buy[] = {6,"ItemGoldBar",1}; + sell[] = {3,"ItemGoldBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBikesandATV.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBikesandATV.hpp index 1cb5350da..8570ab437 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBikesandATV.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBikesandATV.hpp @@ -1,3 +1,53 @@ class NeutralBikesandATV { tid = 650; + class MMT_Civ { + type = "trade_any_bicycle"; + buy[] = {4,"ItemSilverBar",1}; + sell[] = {2,"ItemSilverBar",1}; + }; + class Old_bike_TK_INS_EP1 { + type = "trade_any_bicycle"; + buy[] = {4,"ItemSilverBar",1}; + sell[] = {2,"ItemSilverBar",1}; + }; + class TT650_Civ { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class TT650_Ins { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class TT650_TK_CIV_EP1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class ATV_CZ_EP1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class ATV_US_EP1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class M1030_US_DES_EP1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Old_moto_TK_Civ_EP1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class tractor { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBlackMarketAmmo.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBlackMarketAmmo.hpp index 3ad106924..2bcc0c4d0 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBlackMarketAmmo.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBlackMarketAmmo.hpp @@ -1,3 +1,78 @@ class NeutralBlackMarketAmmo { tid = 527; + class 20Rnd_9x39_SP5_VSS { + type = "trade_items"; + buy[] = {3,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class 8Rnd_B_Beneli_74Slug { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class 20Rnd_762x51_SB_SCAR { + type = "trade_items"; + buy[] = {1,"ItemGoldBar",1}; + sell[] = {5,"ItemSilverBar10oz",1}; + }; + class 8Rnd_B_Beneli_Pellets { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class 8Rnd_B_Saiga12_74Slug { + type = "trade_items"; + buy[] = {5,"ItemSilverBar",1}; + sell[] = {3,"ItemSilverBar",1}; + }; + class 8Rnd_B_Saiga12_Pellets { + type = "trade_items"; + buy[] = {5,"ItemSilverBar",1}; + sell[] = {3,"ItemSilverBar",1}; + }; + class 20Rnd_B_765x17_Ball { + type = "trade_items"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; + class 10Rnd_762x54_SVD { + type = "trade_items"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; + class 5Rnd_762x51_M24 { + type = "trade_items"; + buy[] = {1,"ItemSilverBar10oz",1}; + sell[] = {5,"ItemSilverBar",1}; + }; + class 30Rnd_556x45_Stanag { + type = "trade_items"; + buy[] = {5,"ItemSilverBar",1}; + sell[] = {3,"ItemSilverBar",1}; + }; + class 20Rnd_762x51_FNFAL { + type = "trade_items"; + buy[] = {4,"ItemSilverBar10oz",1}; + sell[] = {2,"ItemSilverBar10oz",1}; + }; + class 100Rnd_556x45_BetaCMag { + type = "trade_items"; + buy[] = {6,"ItemSilverBar10oz",1}; + sell[] = {3,"ItemSilverBar10oz",1}; + }; + class 75Rnd_545x39_RPK { + type = "trade_items"; + buy[] = {3,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; + class 64Rnd_9x19_Bizon { + type = "trade_items"; + buy[] = {1,"ItemSilverBar10oz",1}; + sell[] = {5,"ItemSilverBar",1}; + }; + class 5Rnd_127x108_KSVK { + type = "trade_items"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBlackMarketWeapons.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBlackMarketWeapons.hpp index 150dcdb25..8af0ace72 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBlackMarketWeapons.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBlackMarketWeapons.hpp @@ -1,3 +1,98 @@ class NeutralBlackMarketWeapons { tid = 526; + class Saiga12K { + type = "trade_weapons"; + buy[] = {5,"ItemGoldBar",1}; + sell[] = {3,"ItemGoldBar",1}; + }; + class m8_compact { + type = "trade_weapons"; + buy[] = {4,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; + class m8_sharpshooter { + type = "trade_weapons"; + buy[] = {6,"ItemGoldBar",1}; + sell[] = {3,"ItemGoldBar",1}; + }; + class m8_holo_sd { + type = "trade_weapons"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class m8_carbine { + type = "trade_weapons"; + buy[] = {5,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; + class M24_des_EP1 { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {6,"ItemGoldBar",1}; + }; + class VSS_vintorez { + type = "trade_weapons"; + buy[] = {3,"ItemGoldBar10oz",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class SVD_des_EP1 { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {6,"ItemGoldBar",1}; + }; + class SVD { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {6,"ItemGoldBar",1}; + }; + class M8_SAW { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {6,"ItemGoldBar",1}; + }; + class MG36 { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {6,"ItemGoldBar",1}; + }; + class RPK_74 { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {6,"ItemGoldBar",1}; + }; + class M60A4_EP1_DZE { + type = "trade_weapons"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class m240_scoped_EP1_DZE { + type = "trade_weapons"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {6,"ItemGoldBar",1}; + }; + class M249_m145_EP1_DZE { + type = "trade_weapons"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {6,"ItemGoldBar",1}; + }; + class MG36_camo { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {6,"ItemGoldBar",1}; + }; + class bizon { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class M4A1_HWS_GL_SD_Camo { + type = "trade_weapons"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class KSVK_DZE { + type = "trade_weapons"; + buy[] = {3,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBoatsArmed.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBoatsArmed.hpp index 02ff20b1a..c0dd26e84 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBoatsArmed.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBoatsArmed.hpp @@ -1,3 +1,8 @@ class NeutralBoatsArmed { tid = 558; + class RHIB { + type = "trade_any_boat"; + buy[] = {4,"ItemGoldBar10oz",1}; + sell[] = {2,"ItemGoldBar10oz",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBoatsUnarmed.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBoatsUnarmed.hpp index 66014b331..9503acc87 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBoatsUnarmed.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBoatsUnarmed.hpp @@ -1,3 +1,48 @@ class NeutralBoatsUnarmed { tid = 557; + class Smallboat_1 { + type = "trade_any_boat"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class Smallboat_2 { + type = "trade_any_boat"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class Zodiac { + type = "trade_any_boat"; + buy[] = {6,"ItemGoldBar",1}; + sell[] = {3,"ItemGoldBar",1}; + }; + class Fishing_Boat { + type = "trade_any_boat"; + buy[] = {4,"ItemGoldBar10oz",1}; + sell[] = {2,"ItemGoldBar10oz",1}; + }; + class PBX { + type = "trade_any_boat"; + buy[] = {6,"ItemGoldBar",1}; + sell[] = {3,"ItemGoldBar",1}; + }; + class JetSkiYanahui_Case_Red { + type = "trade_any_boat"; + buy[] = {6,"ItemGoldBar",1}; + sell[] = {3,"ItemGoldBar",1}; + }; + class JetSkiYanahui_Case_Yellow { + type = "trade_any_boat"; + buy[] = {6,"ItemGoldBar",1}; + sell[] = {3,"ItemGoldBar",1}; + }; + class JetSkiYanahui_Case_Green { + type = "trade_any_boat"; + buy[] = {6,"ItemGoldBar",1}; + sell[] = {3,"ItemGoldBar",1}; + }; + class JetSkiYanahui_Case_Blue { + type = "trade_any_boat"; + buy[] = {6,"ItemGoldBar",1}; + sell[] = {3,"ItemGoldBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBuildingSupplies.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBuildingSupplies.hpp index 2f38cc8b2..878d0a9c8 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBuildingSupplies.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBuildingSupplies.hpp @@ -1,3 +1,53 @@ class NeutralBuildingSupplies { tid = 662; + class ItemSandbag { + type = "trade_items"; + buy[] = {4,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; + class ItemTankTrap { + type = "trade_items"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; + class ItemTentOld { + type = "trade_items"; + buy[] = {4,"ItemSilverBar10oz",1}; + sell[] = {2,"ItemSilverBar10oz",1}; + }; + class ItemWire { + type = "trade_items"; + buy[] = {6,"ItemSilverBar",1}; + sell[] = {3,"ItemSilverBar",1}; + }; + class 30m_plot_kit { + type = "trade_items"; + buy[] = {6,"ItemGoldBar10oz",1}; + sell[] = {6,"ItemGoldBar10oz",1}; + }; + class ItemVault { + type = "trade_items"; + buy[] = {1,"ItemBriefcase100oz",1}; + sell[] = {1,"ItemBriefcase100oz",1}; + }; + class ItemTentDomed { + type = "trade_items"; + buy[] = {6,"ItemSilverBar10oz",1}; + sell[] = {3,"ItemSilverBar10oz",1}; + }; + class ItemTentDomed2 { + type = "trade_items"; + buy[] = {6,"ItemSilverBar10oz",1}; + sell[] = {3,"ItemSilverBar10oz",1}; + }; + class ItemLightBulb { + type = "trade_items"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; + class ItemGenerator { + type = "trade_items"; + buy[] = {6,"ItemGoldBar",1}; + sell[] = {3,"ItemGoldBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBusesandVans.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBusesandVans.hpp index 17f790ad0..cb691bc87 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBusesandVans.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBusesandVans.hpp @@ -1,3 +1,23 @@ class NeutralBusesandVans { tid = 651; + class Ikarus { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class Ikarus_TK_CIV_EP1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class S1203_TK_CIV_EP1 { + type = "trade_any_vehicle"; + buy[] = {6,"ItemGoldBar",1}; + sell[] = {3,"ItemGoldBar",1}; + }; + class S1203_ambulance_EP1 { + type = "trade_any_vehicle"; + buy[] = {6,"ItemGoldBar",1}; + sell[] = {3,"ItemGoldBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralCargoTrucks.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralCargoTrucks.hpp index 9a2d8225f..5f821df8f 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralCargoTrucks.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralCargoTrucks.hpp @@ -1,3 +1,73 @@ class NeutralCargoTrucks { tid = 653; + class Ural_CDF { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class Ural_TK_CIV_EP1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class Ural_UN_EP1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class V3S_Open_TK_CIV_EP1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class V3S_Open_TK_EP1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class Kamaz { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class MTVR_DES_EP1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class V3S_Civ { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class V3S_RA_TK_GUE_EP1_DZE { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class V3S_TK_EP1_DZE { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class UralCivil_DZE { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class UralCivil2_DZE { + type = "trade_any_vehicle"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class KamazOpen_DZE { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class MTVR { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralChemlitesFlares.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralChemlitesFlares.hpp index 7442e8468..2fcc00bf7 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralChemlitesFlares.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralChemlitesFlares.hpp @@ -1,3 +1,33 @@ class NeutralChemlitesFlares { tid = 666; + class HandChemBlue { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class HandChemGreen { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class HandChemRed { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class FlareGreen_M203 { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class FlareWhite_M203 { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class HandRoadFlare { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralClothes.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralClothes.hpp index 2282829d8..9607d4916 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralClothes.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralClothes.hpp @@ -1,3 +1,83 @@ class NeutralClothes { tid = 631; + class Skin_Rocker2_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_SurvivorW2_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_Functionary1_EP1_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_Haris_Press_EP1_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_Priest_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_SurvivorWpink_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_SurvivorWurban_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_SurvivorWcombat_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_SurvivorWdesert_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_Survivor2_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_Rocker1_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_Rocker3_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_RU_Policeman_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_Pilot_EP1_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_Rocker4_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Skin_SurvivorW3_DZ { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralCookedMeats.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralCookedMeats.hpp index 9de84dc4e..00b3b2c5a 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralCookedMeats.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralCookedMeats.hpp @@ -1,3 +1,43 @@ class NeutralCookedMeats { tid = 634; + class FoodbaconCooked { + type = "trade_items"; + buy[] = {4,"ItemSilverBar",1}; + sell[] = {2,"ItemSilverBar",1}; + }; + class FoodbeefCooked { + type = "trade_items"; + buy[] = {4,"ItemSilverBar",1}; + sell[] = {2,"ItemSilverBar",1}; + }; + class FoodchickenCooked { + type = "trade_items"; + buy[] = {4,"ItemSilverBar",1}; + sell[] = {2,"ItemSilverBar",1}; + }; + class FoodmuttonCooked { + type = "trade_items"; + buy[] = {4,"ItemSilverBar",1}; + sell[] = {2,"ItemSilverBar",1}; + }; + class FoodrabbitCooked { + type = "trade_items"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; + class ItemTroutCooked { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; + class ItemSeaBassCooked { + type = "trade_items"; + buy[] = {3,"ItemGoldBar",1}; + sell[] = {2,"ItemSilverBar10oz",1}; + }; + class ItemTunaCooked { + type = "trade_items"; + buy[] = {4,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralDrinks.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralDrinks.hpp index a012eb73b..efa7d5b55 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralDrinks.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralDrinks.hpp @@ -1,3 +1,38 @@ class NeutralDrinks { tid = 633; + class ItemSodaCoke { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class ItemSodaPepsi { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class ItemSodaMdew { + type = "trade_items"; + buy[] = {6,"ItemGoldBar",1}; + sell[] = {3,"ItemGoldBar",1}; + }; + class ItemSodaR4z0r { + type = "trade_items"; + buy[] = {6,"ItemGoldBar",1}; + sell[] = {3,"ItemGoldBar",1}; + }; + class ItemWaterbottleUnfilled { + type = "trade_items"; + buy[] = {3,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class ItemSodaRbull { + type = "trade_items"; + buy[] = {6,"ItemGoldBar",1}; + sell[] = {3,"ItemGoldBar",1}; + }; + class ItemSodaOrangeSherbet { + type = "trade_items"; + buy[] = {4,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralExplosives.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralExplosives.hpp index 3dc869084..836ac50ec 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralExplosives.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralExplosives.hpp @@ -1,3 +1,23 @@ class NeutralExplosives { tid = 529; + class HandGrenade_west { + type = "trade_items"; + buy[] = {4,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; + class PipeBomb { + type = "trade_items"; + buy[] = {4,"ItemGoldBar10oz",1}; + sell[] = {2,"ItemGoldBar10oz",1}; + }; + class 1Rnd_HE_M203 { + type = "trade_items"; + buy[] = {4,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; + class HandGrenade_east { + type = "trade_items"; + buy[] = {4,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralFuelTrucks.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralFuelTrucks.hpp index 4de1b2f40..7702312a5 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralFuelTrucks.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralFuelTrucks.hpp @@ -1,3 +1,28 @@ class NeutralFuelTrucks { tid = 655; + class KamazRefuel_DZ { + type = "trade_any_vehicle"; + buy[] = {7,"ItemGoldBar10oz",1}; + sell[] = {3,"ItemGoldBar10oz",1}; + }; + class MtvrRefuel_DES_EP1_DZ { + type = "trade_any_vehicle"; + buy[] = {7,"ItemGoldBar10oz",1}; + sell[] = {3,"ItemGoldBar10oz",1}; + }; + class UralRefuel_TK_EP1_DZ { + type = "trade_any_vehicle"; + buy[] = {7,"ItemGoldBar10oz",1}; + sell[] = {3,"ItemGoldBar10oz",1}; + }; + class V3S_Refuel_TK_GUE_EP1_DZ { + type = "trade_any_vehicle"; + buy[] = {7,"ItemGoldBar10oz",1}; + sell[] = {3,"ItemGoldBar10oz",1}; + }; + class MtvrRefuel_DZ { + type = "trade_any_vehicle"; + buy[] = {7,"ItemGoldBar10oz",1}; + sell[] = {3,"ItemGoldBar10oz",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralHelicopterUnarmed.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralHelicopterUnarmed.hpp index 2bbb17c23..b0aaf2b5f 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralHelicopterUnarmed.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralHelicopterUnarmed.hpp @@ -1,3 +1,33 @@ class NeutralHelicopterUnarmed { tid = 519; + class Mi17_Civilian_DZ { + type = "trade_any_vehicle"; + buy[] = {4,"ItemGoldBar10oz",1}; + sell[] = {2,"ItemGoldBar10oz",1}; + }; + class AH6X_DZ { + type = "trade_any_vehicle"; + buy[] = {6,"ItemGoldBar10oz",1}; + sell[] = {3,"ItemGoldBar10oz",1}; + }; + class MH6J_DZ { + type = "trade_any_vehicle"; + buy[] = {8,"ItemGoldBar10oz",1}; + sell[] = {4,"ItemGoldBar10oz",1}; + }; + class CSJ_GyroC { + type = "trade_any_vehicle"; + buy[] = {4,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; + class CSJ_GyroCover { + type = "trade_any_vehicle"; + buy[] = {4,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; + class CSJ_GyroP { + type = "trade_any_vehicle"; + buy[] = {5,"ItemGoldBar",1}; + sell[] = {3,"ItemGoldBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralLightMachineGun.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralLightMachineGun.hpp index 677edaf81..b33ec5737 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralLightMachineGun.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralLightMachineGun.hpp @@ -1,3 +1,23 @@ class NeutralLightMachineGun { tid = 638; + class M249_EP1_DZ { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {6,"ItemGoldBar",1}; + }; + class M240_DZ { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class Mk_48_DZ { + type = "trade_weapons"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class Pecheneg_DZ { + type = "trade_weapons"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralLightMachineGunAmmo.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralLightMachineGunAmmo.hpp index 8da97fa47..2662e4ad7 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralLightMachineGunAmmo.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralLightMachineGunAmmo.hpp @@ -1,3 +1,18 @@ class NeutralLightMachineGunAmmo { tid = 610; + class 100Rnd_762x51_M240 { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class 200Rnd_556x45_M249 { + type = "trade_items"; + buy[] = {4,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; + class 100Rnd_762x54_PK { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralMedicalSupplies.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralMedicalSupplies.hpp index f2a82f79f..b54869510 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralMedicalSupplies.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralMedicalSupplies.hpp @@ -1,3 +1,38 @@ class NeutralMedicalSupplies { tid = 665; + class ItemAntibiotic { + type = "trade_items"; + buy[] = {1,"ItemGoldBar",1}; + sell[] = {2,"ItemSilverBar10oz",1}; + }; + class ItemBandage { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class ItemBloodbag { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class ItemEpinephrine { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class ItemHeatPack { + type = "trade_items"; + buy[] = {1,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class ItemMorphine { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class ItemPainkiller { + type = "trade_items"; + buy[] = {1,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralMilitaryUnarmed.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralMilitaryUnarmed.hpp index 7c70ab047..e115bd1a7 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralMilitaryUnarmed.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralMilitaryUnarmed.hpp @@ -1,3 +1,43 @@ class NeutralMilitaryUnarmed { tid = 658; + class HMMWV_M1035_DES_EP1 { + type = "trade_any_vehicle"; + buy[] = {4,"ItemGoldBar10oz",1}; + sell[] = {2,"ItemGoldBar10oz",1}; + }; + class HMMWV_Ambulance { + type = "trade_any_vehicle"; + buy[] = {4,"ItemGoldBar10oz",1}; + sell[] = {2,"ItemGoldBar10oz",1}; + }; + class HMMWV_Ambulance_CZ_DES_EP1 { + type = "trade_any_vehicle"; + buy[] = {4,"ItemGoldBar10oz",1}; + sell[] = {2,"ItemGoldBar10oz",1}; + }; + class HMMWV_DES_EP1 { + type = "trade_any_vehicle"; + buy[] = {4,"ItemGoldBar10oz",1}; + sell[] = {2,"ItemGoldBar10oz",1}; + }; + class GAZ_Vodnik_MedEvac { + type = "trade_any_vehicle"; + buy[] = {9,"ItemGoldBar10oz",1}; + sell[] = {6,"ItemGoldBar10oz",1}; + }; + class HMMWV_DZ { + type = "trade_any_vehicle"; + buy[] = {4,"ItemGoldBar10oz",1}; + sell[] = {2,"ItemGoldBar10oz",1}; + }; + class LandRover_CZ_EP1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class LandRover_TK_CIV_EP1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralPackagedFood.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralPackagedFood.hpp index 2f72ff429..086c096eb 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralPackagedFood.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralPackagedFood.hpp @@ -1,3 +1,38 @@ class NeutralPackagedFood { tid = 635; + class FoodCanBakedBeans { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class FoodCanFrankBeans { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class FoodCanPasta { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class FoodCanSardines { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class FoodMRE { + type = "trade_items"; + buy[] = {1,"ItemSilverBar10oz",1}; + sell[] = {5,"ItemSilverBar",1}; + }; + class FoodPistachio { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class FoodNutmix { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralPistolAmmo.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralPistolAmmo.hpp index 3a93cab87..bb3718d3b 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralPistolAmmo.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralPistolAmmo.hpp @@ -1,3 +1,38 @@ class NeutralPistolAmmo { tid = 611; + class 15Rnd_9x19_M9 { + type = "trade_items"; + buy[] = {1,"ItemSilverBar10oz",1}; + sell[] = {5,"ItemSilverBar",1}; + }; + class 15Rnd_9x19_M9SD { + type = "trade_items"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; + class 17Rnd_9x19_glock17 { + type = "trade_items"; + buy[] = {1,"ItemSilverBar10oz",1}; + sell[] = {5,"ItemSilverBar",1}; + }; + class 6Rnd_45ACP { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class 7Rnd_45ACP_1911 { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class 8Rnd_9x18_Makarov { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class 8Rnd_9x18_MakarovSD { + type = "trade_items"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralPistols.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralPistols.hpp index ebd77c662..e28c7b0d3 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralPistols.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralPistols.hpp @@ -1,3 +1,43 @@ class NeutralPistols { tid = 674; + class M9SD { + type = "trade_weapons"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class glock17_EP1 { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar",1}; + sell[] = {5,"ItemSilverBar10oz",1}; + }; + class Colt1911 { + type = "trade_weapons"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; + class M9 { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar",1}; + sell[] = {2,"ItemSilverBar10oz",1}; + }; + class MakarovSD { + type = "trade_weapons"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class revolver_gold_EP1 { + type = "trade_weapons"; + buy[] = {3,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; + class Makarov { + type = "trade_weapons"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; + class revolver_EP1 { + type = "trade_weapons"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralShotgunsandSingleshot.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralShotgunsandSingleshot.hpp index e77fb280b..44c54b76a 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralShotgunsandSingleshot.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralShotgunsandSingleshot.hpp @@ -1,3 +1,33 @@ class NeutralShotgunsandSingleshot { tid = 641; + class Winchester1866 { + type = "trade_weapons"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; + class MR43 { + type = "trade_weapons"; + buy[] = {1,"ItemSilverBar10oz",1}; + sell[] = {8,"ItemSilverBar",1}; + }; + class Crossbow_DZ { + type = "trade_weapons"; + buy[] = {1,"ItemSilverBar10oz",1}; + sell[] = {5,"ItemSilverBar",1}; + }; + class M1014 { + type = "trade_weapons"; + buy[] = {3,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; + class Remington870_lamp { + type = "trade_weapons"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class LeeEnfield { + type = "trade_weapons"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralShotgunsandSingleshotAmmo.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralShotgunsandSingleshotAmmo.hpp index f2723c7f1..1f0289f7f 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralShotgunsandSingleshotAmmo.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralShotgunsandSingleshotAmmo.hpp @@ -1,3 +1,43 @@ class NeutralShotgunsandSingleshotAmmo { tid = 613; + class 15Rnd_W1866_Slug { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class 2Rnd_shotgun_74Pellets { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class 2Rnd_shotgun_74Slug { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class 8Rnd_B_Beneli_74Slug { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class 8Rnd_B_Beneli_Pellets { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class WoodenArrow { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class Quiver { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class 10x_303 { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSmokeGrenades.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSmokeGrenades.hpp index f5ea28d54..78cd4d4b9 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSmokeGrenades.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSmokeGrenades.hpp @@ -1,3 +1,18 @@ class NeutralSmokeGrenades { tid = 668; + class SmokeShell { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class SmokeShellGreen { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class SmokeShellRed { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSniperRifle.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSniperRifle.hpp index 9d8e061de..9612009ad 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSniperRifle.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSniperRifle.hpp @@ -1,3 +1,48 @@ class NeutralSniperRifle { tid = 640; + class SVD_CAMO { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {6,"ItemGoldBar",1}; + }; + class M40A3 { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {6,"ItemGoldBar",1}; + }; + class M14_EP1 { + type = "trade_weapons"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class huntingrifle { + type = "trade_weapons"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class M4SPR { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {6,"ItemGoldBar",1}; + }; + class SVD { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {6,"ItemGoldBar",1}; + }; + class SVD_des_EP1 { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {6,"ItemGoldBar",1}; + }; + class M24 { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {6,"ItemGoldBar",1}; + }; + class M24_des_EP1 { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {6,"ItemGoldBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSniperRifleAmmo.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSniperRifleAmmo.hpp index 6108d907c..2ed01e777 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSniperRifleAmmo.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSniperRifleAmmo.hpp @@ -1,3 +1,23 @@ class NeutralSniperRifleAmmo { tid = 614; + class 20Rnd_762x51_DMR { + type = "trade_items"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; + class 10Rnd_762x54_SVD { + type = "trade_items"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; + class 5Rnd_762x51_M24 { + type = "trade_items"; + buy[] = {1,"ItemSilverBar10oz",1}; + sell[] = {5,"ItemSilverBar",1}; + }; + class 5x_22_LR_17_HMR { + type = "trade_items"; + buy[] = {1,"ItemGoldBar",1}; + sell[] = {5,"ItemSilverBar10oz",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSubmachineGunAmmo.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSubmachineGunAmmo.hpp index 3ab72d8a2..4f39c67a9 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSubmachineGunAmmo.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSubmachineGunAmmo.hpp @@ -1,3 +1,33 @@ class NeutralSubmachineGunAmmo { tid = 612; + class 30rnd_9x19_MP5 { + type = "trade_items"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; + class 30Rnd_9x19_MP5SD { + type = "trade_items"; + buy[] = {4,"ItemSilverBar10oz",1}; + sell[] = {2,"ItemSilverBar10oz",1}; + }; + class 30Rnd_9x19_UZI { + type = "trade_items"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; + class 64Rnd_9x19_SD_Bizon { + type = "trade_items"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; + class 30Rnd_9x19_UZI_SD { + type = "trade_items"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; + class 20Rnd_B_765x17_Ball { + type = "trade_items"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSubmachineGuns.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSubmachineGuns.hpp index 7eac15055..e5d64362a 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSubmachineGuns.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSubmachineGuns.hpp @@ -1,3 +1,33 @@ class NeutralSubmachineGuns { tid = 642; + class bizon_silenced { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class UZI_EP1 { + type = "trade_weapons"; + buy[] = {4,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; + class Sa61_EP1 { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar",1}; + sell[] = {5,"ItemSilverBar10oz",1}; + }; + class MP5A5 { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar",1}; + sell[] = {2,"ItemSilverBar10oz",1}; + }; + class UZI_SD_EP1 { + type = "trade_weapons"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class MP5SD { + type = "trade_weapons"; + buy[] = {6,"ItemGoldBar",1}; + sell[] = {3,"ItemGoldBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralToolbeltItems.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralToolbeltItems.hpp index d81cb4aba..437b3fcf7 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralToolbeltItems.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralToolbeltItems.hpp @@ -1,3 +1,88 @@ class NeutralToolbeltItems { tid = 663; + class ItemCompass { + type = "trade_weapons"; + buy[] = {6,"ItemSilverBar",1}; + sell[] = {3,"ItemSilverBar",1}; + }; + class Binocular { + type = "trade_weapons"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class Binocular_Vector { + type = "trade_weapons"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class ItemEtool { + type = "trade_weapons"; + buy[] = {9,"ItemSilverBar10oz",1}; + sell[] = {6,"ItemSilverBar10oz",1}; + }; + class ItemFlashlight { + type = "trade_weapons"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class ItemFlashlightRed { + type = "trade_weapons"; + buy[] = {1,"ItemSilverBar10oz",1}; + sell[] = {5,"ItemSilverBar",1}; + }; + class ItemGPS { + type = "trade_weapons"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class ItemHatchet_DZE { + type = "trade_weapons"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class ItemKnife { + type = "trade_weapons"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class ItemMap { + type = "trade_weapons"; + buy[] = {6,"ItemSilverBar",1}; + sell[] = {3,"ItemSilverBar",1}; + }; + class ItemMatchbox_DZE { + type = "trade_weapons"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class ItemToolbox { + type = "trade_weapons"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class ItemWatch { + type = "trade_weapons"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class NVGoggles { + type = "trade_weapons"; + buy[] = {4,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class ItemCrowbar { + type = "trade_weapons"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class ItemMachete { + type = "trade_weapons"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class ItemFishingPole { + type = "trade_weapons"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralTrucks.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralTrucks.hpp index 9e6bd9cde..65d502dcf 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralTrucks.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralTrucks.hpp @@ -1,3 +1,33 @@ class NeutralTrucks { tid = 659; + class hilux1_civil_3_open_EP1 { + type = "trade_any_vehicle"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class datsun1_civil_3_open { + type = "trade_any_vehicle"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class hilux1_civil_1_open { + type = "trade_any_vehicle"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class datsun1_civil_2_covered { + type = "trade_any_vehicle"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class datsun1_civil_1_open { + type = "trade_any_vehicle"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class hilux1_civil_2_covered { + type = "trade_any_vehicle"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralUsedCars.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralUsedCars.hpp index 09ac753e5..4904a20ea 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralUsedCars.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralUsedCars.hpp @@ -1,3 +1,88 @@ class NeutralUsedCars { tid = 660; + class Skoda { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class SkodaBlue { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class SkodaGreen { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class SkodaRed { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class VolhaLimo_TK_CIV_EP1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Volha_1_TK_CIV_EP1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Volha_2_TK_CIV_EP1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class VWGolf { + type = "trade_any_vehicle"; + buy[] = {3,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; + class car_hatchback { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class car_sedan { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class GLT_M300_LT { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class GLT_M300_ST { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Lada1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Lada1_TK_CIV_EP1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Lada2 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class Lada2_TK_CIV_EP1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class LadaLM { + type = "trade_any_vehicle"; + buy[] = {3,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralUtilityVehicles.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralUtilityVehicles.hpp index f117d30d8..b771dcc8f 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralUtilityVehicles.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralUtilityVehicles.hpp @@ -1,3 +1,88 @@ class NeutralUtilityVehicles { tid = 661; + class SUV_TK_CIV_EP1 { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class SUV_Blue { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class SUV_Charcoal { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class SUV_Green { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class SUV_Orange { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class SUV_Pink { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class SUV_Red { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class SUV_Silver { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class SUV_White { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class SUV_Yellow { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class SUV_Camo { + type = "trade_any_vehicle"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {1,"ItemGoldBar10oz",1}; + }; + class UAZ_CDF { + type = "trade_any_vehicle"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class UAZ_INS { + type = "trade_any_vehicle"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class UAZ_RU { + type = "trade_any_vehicle"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class UAZ_Unarmed_TK_CIV_EP1 { + type = "trade_any_vehicle"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class UAZ_Unarmed_TK_EP1 { + type = "trade_any_vehicle"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; + class UAZ_Unarmed_UN_EP1 { + type = "trade_any_vehicle"; + buy[] = {8,"ItemGoldBar",1}; + sell[] = {4,"ItemGoldBar",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralVehicleParts.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralVehicleParts.hpp index 6cf41f3ef..3899a0662 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralVehicleParts.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralVehicleParts.hpp @@ -1,3 +1,53 @@ class NeutralVehicleParts { tid = 664; + class ItemJerrycan { + type = "trade_items"; + buy[] = {4,"ItemSilverBar",1}; + sell[] = {2,"ItemSilverBar",1}; + }; + class ItemJerrycanEmpty { + type = "trade_items"; + buy[] = {2,"ItemSilverBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class PartEngine { + type = "trade_items"; + buy[] = {5,"ItemGoldBar",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; + class PartVRotor { + type = "trade_items"; + buy[] = {5,"ItemGoldBar",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; + class PartWheel { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {2,"ItemSilverBar",1}; + }; + class PartGlass { + type = "trade_items"; + buy[] = {1,"ItemGoldBar",1}; + sell[] = {1,"ItemSilverBar",1}; + }; + class PartGeneric { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {6,"ItemSilverBar",1}; + }; + class PartFueltank { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {5,"ItemSilverBar",1}; + }; + class ItemFuelBarrel { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class ItemFuelBarrelEmpty { + type = "trade_items"; + buy[] = {6,"ItemSilverBar10oz",1}; + sell[] = {3,"ItemSilverBar10oz",1}; + }; }; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralWholesale.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralWholesale.hpp index bf8c109da..078fae16c 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralWholesale.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralWholesale.hpp @@ -1,3 +1,63 @@ class NeutralWholesale { tid = 636; + class bulk_15Rnd_9x19_M9SD { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; + class bulk_17Rnd_9x19_glock17 { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; + class bulk_30Rnd_556x45_StanagSD { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; + class bulk_30Rnd_9x19_MP5SD { + type = "trade_items"; + buy[] = {2,"ItemGoldBar",1}; + sell[] = {2,"ItemGoldBar",1}; + }; + class bulk_ItemSandbag { + type = "trade_items"; + buy[] = {2,"ItemGoldBar10oz",1}; + sell[] = {2,"ItemGoldBar10oz",1}; + }; + class bulk_ItemTankTrap { + type = "trade_items"; + buy[] = {1,"ItemGoldBar",1}; + sell[] = {1,"ItemGoldBar",1}; + }; + class bulk_ItemWire { + type = "trade_items"; + buy[] = {3,"ItemSilverBar10oz",1}; + sell[] = {3,"ItemSilverBar10oz",1}; + }; + class bulk_PartGeneric { + type = "trade_items"; + buy[] = {6,"ItemSilverBar10oz",1}; + sell[] = {6,"ItemSilverBar10oz",1}; + }; + class CinderBlocks { + type = "trade_items"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class PartPlywoodPack { + type = "trade_items"; + buy[] = {2,"ItemSilverBar10oz",1}; + sell[] = {1,"ItemSilverBar10oz",1}; + }; + class MortarBucket { + type = "trade_items"; + buy[] = {1,"ItemGoldBar10oz",1}; + sell[] = {5,"ItemGoldBar",1}; + }; + class PartPlankPack { + type = "trade_items"; + buy[] = {1,"ItemSilverBar10oz",1}; + sell[] = {5,"ItemSilverBar",1}; + }; }; diff --git a/Tools/TraderMigration/serverTraders2cfg.pl b/Tools/TraderMigration/serverTraders2cfg.pl index b409483fe..5a238676d 100644 --- a/Tools/TraderMigration/serverTraders2cfg.pl +++ b/Tools/TraderMigration/serverTraders2cfg.pl @@ -102,6 +102,35 @@ foreach my $traderCategory (keys $traderCategories) { $cfg .= "class ".$traderCategory." {\n"; $cfg .= "\ttid = ".$traderCategories->{$traderCategory}.";\n"; + my $sth = $MySQL->prepare(q~ + SELECT + item AS Item + ,buy AS Buy + ,sell AS Sell + ,afile AS aFile + FROM + traders_data + WHERE + tid = ? + ~); + $sth->execute($traderCategories->{$traderCategory}); + while (my $row = $sth->fetchrow_hashref()) { + if ($row->{Item} =~ /^\["([^"]+)",\d+\]$/) { + $row->{Item} = $1; + } + else {next;} + if ($row->{Buy} =~ s/^\[(\d+),"([^"]+)",(\d+)\]$/{$1,"$2",$3}/) {} + else {next;} + if ($row->{Sell} =~ s/^\[(\d+),"([^"]+)",(\d+)\]$/{$1,"$2",$3}/) {} + else {next;} + + $cfg .= "\tclass ".$row->{Item}." {\n"; + $cfg .= "\t\ttype = \"".$row->{aFile}."\";\n"; + $cfg .= "\t\tbuy[] = ".$row->{Buy}.";\n"; + $cfg .= "\t\tsell[] = ".$row->{Sell}.";\n"; + $cfg .= "\t};\n"; + } + $sth->finish(); $cfg .= "};\n"; open(CFG, '>', $pathServerTraderCategoriesCfg.$traderCategory.'.hpp') or die $!; From 0f5667eb882b7550cd9e6bb63a95613b45a02f02 Mon Sep 17 00:00:00 2001 From: Florian Kinder Date: Tue, 4 Feb 2014 16:19:28 +0100 Subject: [PATCH 7/7] removed tid --- .../Configs/CfgServerTraderCategories/BanditAmmunition.hpp | 1 - .../Configs/CfgServerTraderCategories/BanditClothing.hpp | 1 - .../Configs/CfgServerTraderCategories/BanditHelicopterArmed.hpp | 1 - .../Configs/CfgServerTraderCategories/BanditMilitaryArmed.hpp | 1 - .../Configs/CfgServerTraderCategories/BanditTrucksArmed.hpp | 1 - .../Configs/CfgServerTraderCategories/BanditWeapons.hpp | 1 - .../Configs/CfgServerTraderCategories/FriendlyAssaultRifle.hpp | 1 - .../CfgServerTraderCategories/FriendlyAssaultRifleAmmo.hpp | 1 - .../Configs/CfgServerTraderCategories/FriendlyBackpacks.hpp | 1 - .../Configs/CfgServerTraderCategories/FriendlyBikesandATV.hpp | 1 - .../CfgServerTraderCategories/FriendlyBuildingSupplies.hpp | 1 - .../Configs/CfgServerTraderCategories/FriendlyBusesandVans.hpp | 1 - .../Configs/CfgServerTraderCategories/FriendlyCargoTrucks.hpp | 1 - .../CfgServerTraderCategories/FriendlyChemlitesFlares.hpp | 1 - .../Configs/CfgServerTraderCategories/FriendlyClothes.hpp | 1 - .../Configs/CfgServerTraderCategories/FriendlyCookedMeats.hpp | 1 - .../Configs/CfgServerTraderCategories/FriendlyDrinks.hpp | 1 - .../Configs/CfgServerTraderCategories/FriendlyFuelTrucks.hpp | 1 - .../CfgServerTraderCategories/FriendlyLightMachineGun.hpp | 1 - .../CfgServerTraderCategories/FriendlyLightMachineGunAmmo.hpp | 1 - .../CfgServerTraderCategories/FriendlyMedicalSupplies.hpp | 1 - .../CfgServerTraderCategories/FriendlyMilitaryUnarmed.hpp | 1 - .../Configs/CfgServerTraderCategories/FriendlyPackagedFood.hpp | 1 - .../Configs/CfgServerTraderCategories/FriendlyPistolAmmo.hpp | 1 - .../Configs/CfgServerTraderCategories/FriendlyPistols.hpp | 1 - .../CfgServerTraderCategories/FriendlyShotgunsandSingleshot.hpp | 1 - .../FriendlyShotgunsandSingleshotAmmo.hpp | 1 - .../Configs/CfgServerTraderCategories/FriendlySmokeGrenades.hpp | 1 - .../Configs/CfgServerTraderCategories/FriendlySniperRifle.hpp | 1 - .../CfgServerTraderCategories/FriendlySniperRifleAmmo.hpp | 1 - .../CfgServerTraderCategories/FriendlySubmachineGunAmmo.hpp | 1 - .../CfgServerTraderCategories/FriendlySubmachineGuns.hpp | 1 - .../Configs/CfgServerTraderCategories/FriendlyToolbeltItems.hpp | 1 - .../Configs/CfgServerTraderCategories/FriendlyTrucks.hpp | 1 - .../Configs/CfgServerTraderCategories/FriendlyTrucksUnarmed.hpp | 1 - .../Configs/CfgServerTraderCategories/FriendlyUsedCars.hpp | 1 - .../CfgServerTraderCategories/FriendlyUtilityVehicles.hpp | 1 - .../Configs/CfgServerTraderCategories/FriendlyVehicleParts.hpp | 1 - .../Configs/CfgServerTraderCategories/HeroAmmunition.hpp | 1 - SQF/dayz_code/Configs/CfgServerTraderCategories/HeroClothes.hpp | 1 - .../Configs/CfgServerTraderCategories/HeroHelicopterArmed.hpp | 1 - .../Configs/CfgServerTraderCategories/HeroMilitaryArmed.hpp | 1 - .../Configs/CfgServerTraderCategories/HeroTrucksArmed.hpp | 1 - SQF/dayz_code/Configs/CfgServerTraderCategories/HeroWeapons.hpp | 1 - .../Configs/CfgServerTraderCategories/NeutralAirplanes.hpp | 1 - .../Configs/CfgServerTraderCategories/NeutralAssaultRifle.hpp | 1 - .../CfgServerTraderCategories/NeutralAssaultRifleAmmo.hpp | 1 - .../Configs/CfgServerTraderCategories/NeutralBackpacks.hpp | 1 - .../Configs/CfgServerTraderCategories/NeutralBikesandATV.hpp | 1 - .../CfgServerTraderCategories/NeutralBlackMarketAmmo.hpp | 1 - .../CfgServerTraderCategories/NeutralBlackMarketWeapons.hpp | 1 - .../Configs/CfgServerTraderCategories/NeutralBoatsArmed.hpp | 1 - .../Configs/CfgServerTraderCategories/NeutralBoatsUnarmed.hpp | 1 - .../CfgServerTraderCategories/NeutralBuildingSupplies.hpp | 1 - .../Configs/CfgServerTraderCategories/NeutralBusesandVans.hpp | 1 - .../Configs/CfgServerTraderCategories/NeutralCargoTrucks.hpp | 1 - .../CfgServerTraderCategories/NeutralChemlitesFlares.hpp | 1 - .../Configs/CfgServerTraderCategories/NeutralClothes.hpp | 1 - .../Configs/CfgServerTraderCategories/NeutralCookedMeats.hpp | 1 - .../Configs/CfgServerTraderCategories/NeutralDrinks.hpp | 1 - .../Configs/CfgServerTraderCategories/NeutralExplosives.hpp | 1 - .../Configs/CfgServerTraderCategories/NeutralFuelTrucks.hpp | 1 - .../CfgServerTraderCategories/NeutralHelicopterUnarmed.hpp | 1 - .../CfgServerTraderCategories/NeutralLightMachineGun.hpp | 1 - .../CfgServerTraderCategories/NeutralLightMachineGunAmmo.hpp | 1 - .../CfgServerTraderCategories/NeutralMedicalSupplies.hpp | 1 - .../CfgServerTraderCategories/NeutralMilitaryUnarmed.hpp | 1 - .../Configs/CfgServerTraderCategories/NeutralPackagedFood.hpp | 1 - .../Configs/CfgServerTraderCategories/NeutralPistolAmmo.hpp | 1 - .../Configs/CfgServerTraderCategories/NeutralPistols.hpp | 1 - .../CfgServerTraderCategories/NeutralShotgunsandSingleshot.hpp | 1 - .../NeutralShotgunsandSingleshotAmmo.hpp | 1 - .../Configs/CfgServerTraderCategories/NeutralSmokeGrenades.hpp | 1 - .../Configs/CfgServerTraderCategories/NeutralSniperRifle.hpp | 1 - .../CfgServerTraderCategories/NeutralSniperRifleAmmo.hpp | 1 - .../CfgServerTraderCategories/NeutralSubmachineGunAmmo.hpp | 1 - .../Configs/CfgServerTraderCategories/NeutralSubmachineGuns.hpp | 1 - .../Configs/CfgServerTraderCategories/NeutralToolbeltItems.hpp | 1 - .../Configs/CfgServerTraderCategories/NeutralTrucks.hpp | 1 - .../Configs/CfgServerTraderCategories/NeutralUsedCars.hpp | 1 - .../CfgServerTraderCategories/NeutralUtilityVehicles.hpp | 1 - .../Configs/CfgServerTraderCategories/NeutralVehicleParts.hpp | 1 - .../Configs/CfgServerTraderCategories/NeutralWholesale.hpp | 1 - Tools/TraderMigration/serverTraders2cfg.pl | 2 +- 84 files changed, 1 insertion(+), 84 deletions(-) diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditAmmunition.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditAmmunition.hpp index abbad8734..d7a2ff489 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditAmmunition.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditAmmunition.hpp @@ -1,5 +1,4 @@ class BanditAmmunition { - tid = 577; class 30Rnd_556x45_StanagSD { type = "trade_items"; buy[] = {4,"ItemSilverBar10oz",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditClothing.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditClothing.hpp index 61d19ec98..b51616356 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditClothing.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditClothing.hpp @@ -1,5 +1,4 @@ class BanditClothing { - tid = 575; class Skin_Bandit1_DZ { type = "trade_items"; buy[] = {2,"ItemGoldBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditHelicopterArmed.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditHelicopterArmed.hpp index b34fe16e6..a2b6aaa9b 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditHelicopterArmed.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditHelicopterArmed.hpp @@ -1,5 +1,4 @@ class BanditHelicopterArmed { - tid = 512; class CH_47F_EP1_DZE { type = "trade_any_vehicle"; buy[] = {2,"ItemBriefcase100oz",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditMilitaryArmed.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditMilitaryArmed.hpp index 3522e874e..194dc58f7 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditMilitaryArmed.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditMilitaryArmed.hpp @@ -1,5 +1,4 @@ class BanditMilitaryArmed { - tid = 569; class HMMWV_M998A2_SOV_DES_EP1_DZE { type = "trade_any_vehicle"; buy[] = {4,"ItemGoldBar10oz",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditTrucksArmed.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditTrucksArmed.hpp index fdd0363f9..6663d16e1 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditTrucksArmed.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditTrucksArmed.hpp @@ -1,5 +1,4 @@ class BanditTrucksArmed { - tid = 534; class Pickup_PK_GUE_DZE { type = "trade_any_vehicle"; buy[] = {1,"ItemGoldBar10oz",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditWeapons.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditWeapons.hpp index 66ae8eed4..df5096689 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditWeapons.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/BanditWeapons.hpp @@ -1,5 +1,4 @@ class BanditWeapons { - tid = 627; class G36_C_SD_camo { type = "trade_weapons"; buy[] = {1,"ItemGoldBar10oz",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyAssaultRifle.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyAssaultRifle.hpp index 25e07b7cd..e3fca1e38 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyAssaultRifle.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyAssaultRifle.hpp @@ -1,5 +1,4 @@ class FriendlyAssaultRifle { - tid = 485; class G36A_camo { type = "trade_weapons"; buy[] = {6,"ItemGoldBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyAssaultRifleAmmo.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyAssaultRifleAmmo.hpp index a3468c058..1bf545248 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyAssaultRifleAmmo.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyAssaultRifleAmmo.hpp @@ -1,5 +1,4 @@ class FriendlyAssaultRifleAmmo { - tid = 480; class 30Rnd_556x45_Stanag { type = "trade_items"; buy[] = {4,"ItemSilverBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBackpacks.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBackpacks.hpp index c3d9ee6f1..de24e6202 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBackpacks.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBackpacks.hpp @@ -1,5 +1,4 @@ class FriendlyBackpacks { - tid = 538; class DZ_Patrol_Pack_EP1 { type = "trade_backpacks"; buy[] = {2,"ItemSilverBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBikesandATV.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBikesandATV.hpp index cf76c0559..a0af75342 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBikesandATV.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBikesandATV.hpp @@ -1,5 +1,4 @@ class FriendlyBikesandATV { - tid = 536; class MMT_Civ { type = "trade_any_bicycle"; buy[] = {4,"ItemSilverBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBuildingSupplies.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBuildingSupplies.hpp index af28dcffa..0fd851fc3 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBuildingSupplies.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBuildingSupplies.hpp @@ -1,5 +1,4 @@ class FriendlyBuildingSupplies { - tid = 530; class ItemSandbag { type = "trade_items"; buy[] = {4,"ItemGoldBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBusesandVans.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBusesandVans.hpp index cd6d49719..237acfa35 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBusesandVans.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyBusesandVans.hpp @@ -1,5 +1,4 @@ class FriendlyBusesandVans { - tid = 592; class Ikarus { type = "trade_any_vehicle"; buy[] = {2,"ItemGoldBar10oz",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyCargoTrucks.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyCargoTrucks.hpp index 9e5a86255..301b6d332 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyCargoTrucks.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyCargoTrucks.hpp @@ -1,5 +1,4 @@ class FriendlyCargoTrucks { - tid = 570; class Ural_CDF { type = "trade_any_vehicle"; buy[] = {2,"ItemGoldBar10oz",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyChemlitesFlares.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyChemlitesFlares.hpp index c0fa55da3..edb79a536 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyChemlitesFlares.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyChemlitesFlares.hpp @@ -1,5 +1,4 @@ class FriendlyChemlitesFlares { - tid = 542; class HandChemBlue { type = "trade_items"; buy[] = {2,"ItemSilverBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyClothes.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyClothes.hpp index 3c76b6ceb..1040ea524 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyClothes.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyClothes.hpp @@ -1,5 +1,4 @@ class FriendlyClothes { - tid = 628; class Skin_Rocker2_DZ { type = "trade_items"; buy[] = {2,"ItemGoldBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyCookedMeats.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyCookedMeats.hpp index 67049da3b..ad222c0dc 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyCookedMeats.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyCookedMeats.hpp @@ -1,5 +1,4 @@ class FriendlyCookedMeats { - tid = 630; class FoodbaconCooked { type = "trade_items"; buy[] = {4,"ItemSilverBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyDrinks.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyDrinks.hpp index 80a32b6b7..67970ec27 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyDrinks.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyDrinks.hpp @@ -1,5 +1,4 @@ class FriendlyDrinks { - tid = 601; class ItemSodaCoke { type = "trade_items"; buy[] = {2,"ItemSilverBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyFuelTrucks.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyFuelTrucks.hpp index f22ad4cab..77d21428c 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyFuelTrucks.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyFuelTrucks.hpp @@ -1,5 +1,4 @@ class FriendlyFuelTrucks { - tid = 595; class KamazRefuel_DZ { type = "trade_any_vehicle"; buy[] = {7,"ItemGoldBar10oz",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyLightMachineGun.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyLightMachineGun.hpp index 7e227febe..ad0d839ea 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyLightMachineGun.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyLightMachineGun.hpp @@ -1,5 +1,4 @@ class FriendlyLightMachineGun { - tid = 486; class M249_EP1_DZ { type = "trade_weapons"; buy[] = {1,"ItemGoldBar10oz",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyLightMachineGunAmmo.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyLightMachineGunAmmo.hpp index e61ab6c5d..fb85bbf52 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyLightMachineGunAmmo.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyLightMachineGunAmmo.hpp @@ -1,5 +1,4 @@ class FriendlyLightMachineGunAmmo { - tid = 481; class 100Rnd_762x51_M240 { type = "trade_items"; buy[] = {2,"ItemGoldBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyMedicalSupplies.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyMedicalSupplies.hpp index efb63ac9e..867882263 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyMedicalSupplies.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyMedicalSupplies.hpp @@ -1,5 +1,4 @@ class FriendlyMedicalSupplies { - tid = 541; class ItemAntibiotic { type = "trade_items"; buy[] = {1,"ItemGoldBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyMilitaryUnarmed.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyMilitaryUnarmed.hpp index ad4428e69..5ea7a1224 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyMilitaryUnarmed.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyMilitaryUnarmed.hpp @@ -1,5 +1,4 @@ class FriendlyMilitaryUnarmed { - tid = 599; class HMMWV_M1035_DES_EP1 { type = "trade_any_vehicle"; buy[] = {4,"ItemGoldBar10oz",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyPackagedFood.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyPackagedFood.hpp index 771788075..47d29e141 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyPackagedFood.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyPackagedFood.hpp @@ -1,5 +1,4 @@ class FriendlyPackagedFood { - tid = 629; class FoodCanBakedBeans { type = "trade_items"; buy[] = {2,"ItemSilverBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyPistolAmmo.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyPistolAmmo.hpp index efdae7dde..e00f4daa7 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyPistolAmmo.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyPistolAmmo.hpp @@ -1,5 +1,4 @@ class FriendlyPistolAmmo { - tid = 484; class 15Rnd_9x19_M9 { type = "trade_items"; buy[] = {1,"ItemSilverBar10oz",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyPistols.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyPistols.hpp index 8abd28579..d6cf5ac0d 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyPistols.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyPistols.hpp @@ -1,5 +1,4 @@ class FriendlyPistols { - tid = 489; class M9SD { type = "trade_weapons"; buy[] = {2,"ItemGoldBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyShotgunsandSingleshot.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyShotgunsandSingleshot.hpp index fb3e374d9..a8aba54c1 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyShotgunsandSingleshot.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyShotgunsandSingleshot.hpp @@ -1,5 +1,4 @@ class FriendlyShotgunsandSingleshot { - tid = 574; class Winchester1866 { type = "trade_weapons"; buy[] = {2,"ItemSilverBar10oz",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyShotgunsandSingleshotAmmo.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyShotgunsandSingleshotAmmo.hpp index 3db1a4304..d1f5a3981 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyShotgunsandSingleshotAmmo.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyShotgunsandSingleshotAmmo.hpp @@ -1,5 +1,4 @@ class FriendlyShotgunsandSingleshotAmmo { - tid = 573; class 15Rnd_W1866_Slug { type = "trade_items"; buy[] = {2,"ItemSilverBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySmokeGrenades.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySmokeGrenades.hpp index 12b85f144..f64713b39 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySmokeGrenades.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySmokeGrenades.hpp @@ -1,5 +1,4 @@ class FriendlySmokeGrenades { - tid = 543; class SmokeShell { type = "trade_items"; buy[] = {2,"ItemSilverBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySniperRifle.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySniperRifle.hpp index 52d6777a9..1b6189750 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySniperRifle.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySniperRifle.hpp @@ -1,5 +1,4 @@ class FriendlySniperRifle { - tid = 487; class SVD_CAMO { type = "trade_weapons"; buy[] = {1,"ItemGoldBar10oz",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySniperRifleAmmo.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySniperRifleAmmo.hpp index 92d50270c..c70f8bc13 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySniperRifleAmmo.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySniperRifleAmmo.hpp @@ -1,5 +1,4 @@ class FriendlySniperRifleAmmo { - tid = 482; class 20Rnd_762x51_DMR { type = "trade_items"; buy[] = {2,"ItemSilverBar10oz",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySubmachineGunAmmo.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySubmachineGunAmmo.hpp index 28ee18f46..5c52a7556 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySubmachineGunAmmo.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySubmachineGunAmmo.hpp @@ -1,5 +1,4 @@ class FriendlySubmachineGunAmmo { - tid = 483; class 30rnd_9x19_MP5 { type = "trade_items"; buy[] = {2,"ItemSilverBar10oz",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySubmachineGuns.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySubmachineGuns.hpp index 6d1fc077b..4a9467437 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySubmachineGuns.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlySubmachineGuns.hpp @@ -1,5 +1,4 @@ class FriendlySubmachineGuns { - tid = 488; class bizon_silenced { type = "trade_weapons"; buy[] = {1,"ItemGoldBar10oz",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyToolbeltItems.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyToolbeltItems.hpp index 959c94b99..fd5e7057e 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyToolbeltItems.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyToolbeltItems.hpp @@ -1,5 +1,4 @@ class FriendlyToolbeltItems { - tid = 532; class ItemCompass { type = "trade_weapons"; buy[] = {6,"ItemSilverBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyTrucks.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyTrucks.hpp index bc38f4c9b..941e74717 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyTrucks.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyTrucks.hpp @@ -1,5 +1,4 @@ class FriendlyTrucks { - tid = 495; class hilux1_civil_3_open_EP1 { type = "trade_any_vehicle"; buy[] = {8,"ItemGoldBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyTrucksUnarmed.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyTrucksUnarmed.hpp index 2144aae54..098fd000f 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyTrucksUnarmed.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyTrucksUnarmed.hpp @@ -1,5 +1,4 @@ class FriendlyTrucksUnarmed { - tid = 535; class hilux1_civil_3_open_EP1 { type = "trade_any_vehicle"; buy[] = {8,"ItemGoldBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyUsedCars.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyUsedCars.hpp index bf4e58bd7..b8b287932 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyUsedCars.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyUsedCars.hpp @@ -1,5 +1,4 @@ class FriendlyUsedCars { - tid = 600; class Skoda { type = "trade_any_vehicle"; buy[] = {2,"ItemGoldBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyUtilityVehicles.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyUtilityVehicles.hpp index b010eb49b..05f8931dd 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyUtilityVehicles.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyUtilityVehicles.hpp @@ -1,5 +1,4 @@ class FriendlyUtilityVehicles { - tid = 568; class SUV_TK_CIV_EP1 { type = "trade_any_vehicle"; buy[] = {2,"ItemGoldBar10oz",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyVehicleParts.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyVehicleParts.hpp index 13def8e3a..ffa022519 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyVehicleParts.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/FriendlyVehicleParts.hpp @@ -1,5 +1,4 @@ class FriendlyVehicleParts { - tid = 531; class ItemJerrycan { type = "trade_items"; buy[] = {4,"ItemSilverBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroAmmunition.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroAmmunition.hpp index 0bd366ec7..a078780e0 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroAmmunition.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroAmmunition.hpp @@ -1,5 +1,4 @@ class HeroAmmunition { - tid = 478; class 30Rnd_556x45_StanagSD { type = "trade_items"; buy[] = {4,"ItemSilverBar10oz",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroClothes.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroClothes.hpp index 1ac775096..33a1bed64 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroClothes.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroClothes.hpp @@ -1,5 +1,4 @@ class HeroClothes { - tid = 476; class Skin_CZ_Special_Forces_GL_DES_EP1_DZ { type = "trade_items"; buy[] = {2,"ItemGoldBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroHelicopterArmed.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroHelicopterArmed.hpp index d36b4ae33..8f160ac07 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroHelicopterArmed.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroHelicopterArmed.hpp @@ -1,5 +1,4 @@ class HeroHelicopterArmed { - tid = 493; class CH_47F_EP1_DZE { type = "trade_any_vehicle"; buy[] = {2,"ItemBriefcase100oz",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroMilitaryArmed.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroMilitaryArmed.hpp index 16680fe83..c793ef76c 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroMilitaryArmed.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroMilitaryArmed.hpp @@ -1,5 +1,4 @@ class HeroMilitaryArmed { - tid = 562; class HMMWV_M998A2_SOV_DES_EP1_DZE { type = "trade_any_vehicle"; buy[] = {4,"ItemGoldBar10oz",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroTrucksArmed.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroTrucksArmed.hpp index dcba378d5..4770ec999 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroTrucksArmed.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroTrucksArmed.hpp @@ -1,5 +1,4 @@ class HeroTrucksArmed { - tid = 479; class ArmoredSUV_PMC_DZE { type = "trade_any_vehicle"; buy[] = {2,"ItemBriefcase100oz",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroWeapons.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroWeapons.hpp index f1e64c6ab..b01c66a5b 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroWeapons.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/HeroWeapons.hpp @@ -1,5 +1,4 @@ class HeroWeapons { - tid = 477; class G36_C_SD_camo { type = "trade_weapons"; buy[] = {1,"ItemGoldBar10oz",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralAirplanes.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralAirplanes.hpp index 3d2d21088..49939dcac 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralAirplanes.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralAirplanes.hpp @@ -1,5 +1,4 @@ class NeutralAirplanes { - tid = 517; class AN2_DZ { type = "trade_any_vehicle"; buy[] = {4,"ItemGoldBar10oz",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralAssaultRifle.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralAssaultRifle.hpp index ad011d188..240c4222f 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralAssaultRifle.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralAssaultRifle.hpp @@ -1,5 +1,4 @@ class NeutralAssaultRifle { - tid = 637; class G36A_camo { type = "trade_weapons"; buy[] = {6,"ItemGoldBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralAssaultRifleAmmo.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralAssaultRifleAmmo.hpp index cc8b5ed12..ab1e826ea 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralAssaultRifleAmmo.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralAssaultRifleAmmo.hpp @@ -1,5 +1,4 @@ class NeutralAssaultRifleAmmo { - tid = 609; class 30Rnd_556x45_Stanag { type = "trade_items"; buy[] = {4,"ItemSilverBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBackpacks.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBackpacks.hpp index 5a3432744..71fe22e07 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBackpacks.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBackpacks.hpp @@ -1,5 +1,4 @@ class NeutralBackpacks { - tid = 632; class DZ_Patrol_Pack_EP1 { type = "trade_backpacks"; buy[] = {2,"ItemSilverBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBikesandATV.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBikesandATV.hpp index 8570ab437..715ef37b0 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBikesandATV.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBikesandATV.hpp @@ -1,5 +1,4 @@ class NeutralBikesandATV { - tid = 650; class MMT_Civ { type = "trade_any_bicycle"; buy[] = {4,"ItemSilverBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBlackMarketAmmo.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBlackMarketAmmo.hpp index 2bcc0c4d0..643732650 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBlackMarketAmmo.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBlackMarketAmmo.hpp @@ -1,5 +1,4 @@ class NeutralBlackMarketAmmo { - tid = 527; class 20Rnd_9x39_SP5_VSS { type = "trade_items"; buy[] = {3,"ItemGoldBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBlackMarketWeapons.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBlackMarketWeapons.hpp index 8af0ace72..ada587d21 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBlackMarketWeapons.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBlackMarketWeapons.hpp @@ -1,5 +1,4 @@ class NeutralBlackMarketWeapons { - tid = 526; class Saiga12K { type = "trade_weapons"; buy[] = {5,"ItemGoldBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBoatsArmed.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBoatsArmed.hpp index c0dd26e84..625595243 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBoatsArmed.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBoatsArmed.hpp @@ -1,5 +1,4 @@ class NeutralBoatsArmed { - tid = 558; class RHIB { type = "trade_any_boat"; buy[] = {4,"ItemGoldBar10oz",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBoatsUnarmed.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBoatsUnarmed.hpp index 9503acc87..0960df57c 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBoatsUnarmed.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBoatsUnarmed.hpp @@ -1,5 +1,4 @@ class NeutralBoatsUnarmed { - tid = 557; class Smallboat_1 { type = "trade_any_boat"; buy[] = {2,"ItemGoldBar10oz",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBuildingSupplies.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBuildingSupplies.hpp index 878d0a9c8..e3f8eb25d 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBuildingSupplies.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBuildingSupplies.hpp @@ -1,5 +1,4 @@ class NeutralBuildingSupplies { - tid = 662; class ItemSandbag { type = "trade_items"; buy[] = {4,"ItemGoldBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBusesandVans.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBusesandVans.hpp index cb691bc87..7086df830 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBusesandVans.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralBusesandVans.hpp @@ -1,5 +1,4 @@ class NeutralBusesandVans { - tid = 651; class Ikarus { type = "trade_any_vehicle"; buy[] = {2,"ItemGoldBar10oz",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralCargoTrucks.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralCargoTrucks.hpp index 5f821df8f..6790f03a6 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralCargoTrucks.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralCargoTrucks.hpp @@ -1,5 +1,4 @@ class NeutralCargoTrucks { - tid = 653; class Ural_CDF { type = "trade_any_vehicle"; buy[] = {2,"ItemGoldBar10oz",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralChemlitesFlares.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralChemlitesFlares.hpp index 2fcc00bf7..ce283b4e0 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralChemlitesFlares.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralChemlitesFlares.hpp @@ -1,5 +1,4 @@ class NeutralChemlitesFlares { - tid = 666; class HandChemBlue { type = "trade_items"; buy[] = {2,"ItemSilverBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralClothes.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralClothes.hpp index 9607d4916..0398d1671 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralClothes.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralClothes.hpp @@ -1,5 +1,4 @@ class NeutralClothes { - tid = 631; class Skin_Rocker2_DZ { type = "trade_items"; buy[] = {2,"ItemGoldBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralCookedMeats.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralCookedMeats.hpp index 00b3b2c5a..ce9104b6e 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralCookedMeats.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralCookedMeats.hpp @@ -1,5 +1,4 @@ class NeutralCookedMeats { - tid = 634; class FoodbaconCooked { type = "trade_items"; buy[] = {4,"ItemSilverBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralDrinks.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralDrinks.hpp index efa7d5b55..56094f204 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralDrinks.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralDrinks.hpp @@ -1,5 +1,4 @@ class NeutralDrinks { - tid = 633; class ItemSodaCoke { type = "trade_items"; buy[] = {2,"ItemSilverBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralExplosives.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralExplosives.hpp index 836ac50ec..6f0ad6acc 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralExplosives.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralExplosives.hpp @@ -1,5 +1,4 @@ class NeutralExplosives { - tid = 529; class HandGrenade_west { type = "trade_items"; buy[] = {4,"ItemGoldBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralFuelTrucks.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralFuelTrucks.hpp index 7702312a5..665bded68 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralFuelTrucks.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralFuelTrucks.hpp @@ -1,5 +1,4 @@ class NeutralFuelTrucks { - tid = 655; class KamazRefuel_DZ { type = "trade_any_vehicle"; buy[] = {7,"ItemGoldBar10oz",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralHelicopterUnarmed.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralHelicopterUnarmed.hpp index b0aaf2b5f..256398bf1 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralHelicopterUnarmed.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralHelicopterUnarmed.hpp @@ -1,5 +1,4 @@ class NeutralHelicopterUnarmed { - tid = 519; class Mi17_Civilian_DZ { type = "trade_any_vehicle"; buy[] = {4,"ItemGoldBar10oz",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralLightMachineGun.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralLightMachineGun.hpp index b33ec5737..6e4aae66f 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralLightMachineGun.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralLightMachineGun.hpp @@ -1,5 +1,4 @@ class NeutralLightMachineGun { - tid = 638; class M249_EP1_DZ { type = "trade_weapons"; buy[] = {1,"ItemGoldBar10oz",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralLightMachineGunAmmo.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralLightMachineGunAmmo.hpp index 2662e4ad7..2346c1824 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralLightMachineGunAmmo.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralLightMachineGunAmmo.hpp @@ -1,5 +1,4 @@ class NeutralLightMachineGunAmmo { - tid = 610; class 100Rnd_762x51_M240 { type = "trade_items"; buy[] = {2,"ItemGoldBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralMedicalSupplies.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralMedicalSupplies.hpp index b54869510..a6335cc58 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralMedicalSupplies.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralMedicalSupplies.hpp @@ -1,5 +1,4 @@ class NeutralMedicalSupplies { - tid = 665; class ItemAntibiotic { type = "trade_items"; buy[] = {1,"ItemGoldBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralMilitaryUnarmed.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralMilitaryUnarmed.hpp index e115bd1a7..8d57f0cf8 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralMilitaryUnarmed.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralMilitaryUnarmed.hpp @@ -1,5 +1,4 @@ class NeutralMilitaryUnarmed { - tid = 658; class HMMWV_M1035_DES_EP1 { type = "trade_any_vehicle"; buy[] = {4,"ItemGoldBar10oz",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralPackagedFood.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralPackagedFood.hpp index 086c096eb..9a5f402c5 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralPackagedFood.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralPackagedFood.hpp @@ -1,5 +1,4 @@ class NeutralPackagedFood { - tid = 635; class FoodCanBakedBeans { type = "trade_items"; buy[] = {2,"ItemSilverBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralPistolAmmo.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralPistolAmmo.hpp index bb3718d3b..9458d52e1 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralPistolAmmo.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralPistolAmmo.hpp @@ -1,5 +1,4 @@ class NeutralPistolAmmo { - tid = 611; class 15Rnd_9x19_M9 { type = "trade_items"; buy[] = {1,"ItemSilverBar10oz",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralPistols.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralPistols.hpp index e28c7b0d3..9c601e572 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralPistols.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralPistols.hpp @@ -1,5 +1,4 @@ class NeutralPistols { - tid = 674; class M9SD { type = "trade_weapons"; buy[] = {2,"ItemGoldBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralShotgunsandSingleshot.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralShotgunsandSingleshot.hpp index 44c54b76a..6e4552c0d 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralShotgunsandSingleshot.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralShotgunsandSingleshot.hpp @@ -1,5 +1,4 @@ class NeutralShotgunsandSingleshot { - tid = 641; class Winchester1866 { type = "trade_weapons"; buy[] = {2,"ItemSilverBar10oz",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralShotgunsandSingleshotAmmo.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralShotgunsandSingleshotAmmo.hpp index 1f0289f7f..47efd7b8b 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralShotgunsandSingleshotAmmo.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralShotgunsandSingleshotAmmo.hpp @@ -1,5 +1,4 @@ class NeutralShotgunsandSingleshotAmmo { - tid = 613; class 15Rnd_W1866_Slug { type = "trade_items"; buy[] = {2,"ItemSilverBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSmokeGrenades.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSmokeGrenades.hpp index 78cd4d4b9..4842e76ed 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSmokeGrenades.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSmokeGrenades.hpp @@ -1,5 +1,4 @@ class NeutralSmokeGrenades { - tid = 668; class SmokeShell { type = "trade_items"; buy[] = {2,"ItemSilverBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSniperRifle.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSniperRifle.hpp index 9612009ad..933b67ab8 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSniperRifle.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSniperRifle.hpp @@ -1,5 +1,4 @@ class NeutralSniperRifle { - tid = 640; class SVD_CAMO { type = "trade_weapons"; buy[] = {1,"ItemGoldBar10oz",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSniperRifleAmmo.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSniperRifleAmmo.hpp index 2ed01e777..7c40a8ddb 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSniperRifleAmmo.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSniperRifleAmmo.hpp @@ -1,5 +1,4 @@ class NeutralSniperRifleAmmo { - tid = 614; class 20Rnd_762x51_DMR { type = "trade_items"; buy[] = {2,"ItemSilverBar10oz",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSubmachineGunAmmo.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSubmachineGunAmmo.hpp index 4f39c67a9..a48ea7430 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSubmachineGunAmmo.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSubmachineGunAmmo.hpp @@ -1,5 +1,4 @@ class NeutralSubmachineGunAmmo { - tid = 612; class 30rnd_9x19_MP5 { type = "trade_items"; buy[] = {2,"ItemSilverBar10oz",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSubmachineGuns.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSubmachineGuns.hpp index e5d64362a..542c647db 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSubmachineGuns.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralSubmachineGuns.hpp @@ -1,5 +1,4 @@ class NeutralSubmachineGuns { - tid = 642; class bizon_silenced { type = "trade_weapons"; buy[] = {1,"ItemGoldBar10oz",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralToolbeltItems.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralToolbeltItems.hpp index 437b3fcf7..c2226f968 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralToolbeltItems.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralToolbeltItems.hpp @@ -1,5 +1,4 @@ class NeutralToolbeltItems { - tid = 663; class ItemCompass { type = "trade_weapons"; buy[] = {6,"ItemSilverBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralTrucks.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralTrucks.hpp index 65d502dcf..cafb39c35 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralTrucks.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralTrucks.hpp @@ -1,5 +1,4 @@ class NeutralTrucks { - tid = 659; class hilux1_civil_3_open_EP1 { type = "trade_any_vehicle"; buy[] = {8,"ItemGoldBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralUsedCars.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralUsedCars.hpp index 4904a20ea..337b8dc87 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralUsedCars.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralUsedCars.hpp @@ -1,5 +1,4 @@ class NeutralUsedCars { - tid = 660; class Skoda { type = "trade_any_vehicle"; buy[] = {2,"ItemGoldBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralUtilityVehicles.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralUtilityVehicles.hpp index b771dcc8f..75b2728f3 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralUtilityVehicles.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralUtilityVehicles.hpp @@ -1,5 +1,4 @@ class NeutralUtilityVehicles { - tid = 661; class SUV_TK_CIV_EP1 { type = "trade_any_vehicle"; buy[] = {2,"ItemGoldBar10oz",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralVehicleParts.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralVehicleParts.hpp index 3899a0662..a75bf8a99 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralVehicleParts.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralVehicleParts.hpp @@ -1,5 +1,4 @@ class NeutralVehicleParts { - tid = 664; class ItemJerrycan { type = "trade_items"; buy[] = {4,"ItemSilverBar",1}; diff --git a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralWholesale.hpp b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralWholesale.hpp index 078fae16c..19a6f9309 100644 --- a/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralWholesale.hpp +++ b/SQF/dayz_code/Configs/CfgServerTraderCategories/NeutralWholesale.hpp @@ -1,5 +1,4 @@ class NeutralWholesale { - tid = 636; class bulk_15Rnd_9x19_M9SD { type = "trade_items"; buy[] = {2,"ItemGoldBar",1}; diff --git a/Tools/TraderMigration/serverTraders2cfg.pl b/Tools/TraderMigration/serverTraders2cfg.pl index 5a238676d..c7306843a 100644 --- a/Tools/TraderMigration/serverTraders2cfg.pl +++ b/Tools/TraderMigration/serverTraders2cfg.pl @@ -101,7 +101,7 @@ foreach my $traderCategory (keys $traderCategories) { my $cfg = ''; $cfg .= "class ".$traderCategory." {\n"; - $cfg .= "\ttid = ".$traderCategories->{$traderCategory}.";\n"; + #$cfg .= "\ttid = ".$traderCategories->{$traderCategory}.";\n"; my $sth = $MySQL->prepare(q~ SELECT item AS Item