+ removed ACR requirement from missions and removed Octavia_ACR from
vehicle spawn config.
This commit is contained in:
vbawol
2013-02-27 10:32:35 -06:00
parent 3c9df28ead
commit 1be1707895
12 changed files with 769 additions and 212 deletions

View File

@@ -662,7 +662,7 @@ class CfgMagazines {
ammo = "TinCan";
};
class ItemWaterbottle;
class ItemWaterbottle;
class ItemWaterbottleBoiled : ItemWaterbottle {
displayName = $STR_ITEMWATERBOTTLEBOILED_CODE_NAME;
descriptionShort = $STR_ITEMWATERBOTTLEBOILED_CODE_DESC;
@@ -674,6 +674,13 @@ class ItemWaterbottle;
shortNameMagazine = "Machete";
ammo = "Machete_Swing_Ammo";
};
// Inventory Placeholder
class DummyItem : Hatchet_Swing {
displayName = "Dummy";
displayNameMagazine = "Dummy";
shortNameMagazine = "Dummy";
ammo = "Dummy_Swing_Ammo";
};
class ItemTrashToiletpaper : CA_Magazine {
scope = public;

View File

@@ -10,4 +10,8 @@ class CfgAmmo {
hit = 9;
simulation = "shotBullet";
};
class Dummy_Swing_Ammo : Melee {
hit = 0;
simulation = "shotBullet";
};
};

View File

@@ -43,13 +43,6 @@ class CfgMods
version = "0.981";
hiveVersion = 0.96; //0.93
};
class DZ_InitWorld
{
units[] = {};
weapons[] = {};
requiredVersion = 0.1;
requiredAddons[] = {"Chernarus"};
};
};

View File

@@ -591,7 +591,9 @@ class FSM
"dayzGearSave = false;" \n
"_inventory call player_gearSet;" \n
"" \n
"//player addMagazine ""7Rnd_45ACP_1911"";" \n
"player removeMagazine ""DummyItem"";" \n
"" \n
"player addMagazine ""DummyItem"";" \n
"" \n
"//Assess in backpack" \n
"if (count _backpack > 0) then {" \n

View File

@@ -12,7 +12,7 @@ player setVariable ["temperature",dayz_temperatur,true];
dayz_myLoad = (((count dayz_myBackpackMags) * 0.2) + (count dayz_myBackpackWpns)) + (((count dayz_myMagazines) * 0.1) + (count dayz_myWeapons * 0.5));
//player addMagazine "Hatchet_swing";
//player addMagazine "Hatchet_Swing";
//player addWeapon "MeleeHatchet";
while {true} do {