fixes plus, binarized models, added more fish

This commit is contained in:
vbawol
2013-05-22 17:46:09 -05:00
parent 099ea73f6e
commit e1247fad22
47 changed files with 131 additions and 55 deletions

View File

@@ -165,7 +165,7 @@ class CfgMagazines {
displayName = "H-barrier cube";
model = "\dayz_equip\models\sandbags.p3d";
picture = "\dayz_equip\textures\equip_sandbag_ca.paa";
descriptionShort = "Sacks made of hessian and wire that can be filled with sand or soil and used for military fortification.";
descriptionShort = "Hesco berrier: A buildable object that is used for fortification purposes.";
class ItemActions {
class Build {
@@ -811,24 +811,6 @@ class CfgMagazines {
picture = "\z\addons\dayz_communityassets\pictures\equip_toiletpaper_CA.paa";
type = 256;
};
class ItemTrout : CA_Magazine {
scope = public;
count = 1;
displayName = "Rainbow Trout";
descriptionShort = "Rainbow Trout";
model = "\dayz_equip\models\trout.p3d";
picture = "\dayz_equip\textures\equip_rainbowtrout_CA.paa";
type = 256;
};
class ItemTuna : CA_Magazine {
scope = public;
count = 1;
displayName = "Blue Fin Tuna";
descriptionShort = "Blue Fin Tuna";
model = "\dayz_equip\models\tuna.p3d";
picture = "\dayz_equip\textures\equip_tuna_CA.paa";
type = 256;
};
class ItemTrashRazor : CA_Magazine {
scope = public;
count = 1;

View File

@@ -168,7 +168,7 @@ class CfgWeapons {
{
libTextDesc="";
};
descriptionShort="Fishing Pole and with lure.";
descriptionShort="Fishing Pole: This carbon fiber rod may be old but, she still works like a charm.";
};
class ItemFishingPole: ItemCore
{
@@ -176,7 +176,7 @@ class CfgWeapons {
displayName="Fishing Pole";
model="\dayz_equip\models\fishing_rod_loot_item.p3d";
picture="\dayz_equip\textures\equip_fishingpole_CA.paa";
descriptionShort="Fishing Pole and with lure.";
descriptionShort="Fishing Pole: This carbon fiber rod may be old but, she still works like a charm.";
class ItemActions
{
class Toolbelt

View File

@@ -42,7 +42,7 @@ while {_isOk} do {
// 1% chance to catch anything
if((random 100) <= 1) then {
// Just the one fish for now
_itemOut = ["ItemTrout","ItemTrout","ItemTrout","ItemTrout","ItemTrout","ItemTrout","ItemTrout","ItemTrout","ItemTrout","ItemTuna"] call BIS_fnc_selectRandom;
_itemOut = ["ItemTrout","ItemTrout","ItemTrout","ItemTrout","ItemTrout","ItemTrout","ItemTrout","ItemSeaBass","ItemSeaBass","ItemTuna"] call BIS_fnc_selectRandom;
player addMagazine _itemOut;
cutText ["You caught a fish.", "PLAIN DOWN"];
_isOk = false;
@@ -51,6 +51,8 @@ while {_isOk} do {
_counter = _counter + 1;
if(_counter == 5) then {
_isOk = false;
sleep 2;
cutText ["You didn't catch anything.", "PLAIN DOWN"];
};
};
};

View File

@@ -40,7 +40,7 @@ class CfgMods
hidePicture = 0;
hideName = 0;
action = "http://www.dayzepoch.com";
version = "1.0.0.9";
version = "1.0.1RC1";
hiveVersion = 0.96; //0.93
};
};

View File

@@ -25,7 +25,10 @@ meatraw = [
"FoodmuttonRaw",
"FoodchickenRaw",
"FoodrabbitRaw",
"FoodbaconRaw"
"FoodbaconRaw",
"ItemTrout",
"ItemSeaBass",
"ItemTuna"
];
meatcooked = [
"FoodSteakCooked",
@@ -34,7 +37,10 @@ meatcooked = [
"FoodmuttonCooked",
"FoodchickenCooked",
"FoodrabbitCooked",
"FoodbaconCooked"
"FoodbaconCooked",
"ItemTroutCooked",
"ItemSeaBassCooked",
"ItemTunaCooked"
];
//Eating
no_output_food = ["FoodMRE", "FoodPistachio", "FoodNutmix","FoodBioMeat"]+meatcooked+meatraw;

View File

@@ -145,7 +145,7 @@ class RscDisplayMain : RscStandardDisplay
class DAYZ_Version : CA_Version
{
idc = -1;
text = "DayZ Epoch 1.0.0.9 dev (1.7.6.1)";
text = "DayZ Epoch 1.0.1 RC1 (1.7.6.1)";
y = "(SafeZoneH + SafeZoneY) - (1 - 0.95)";
};
delete CA_TitleMainMenu;