1.7.7.1 - No vehicles load?

I just built a clean build of 1.7.7.1, and when I load in there are no vehicles. These are some of the errors that I see within the rpt:

if (_ownerID == "0") then {_entity setVariab>
22:42:22 Error position: <_ownerID == "0") then {_entity setVariab>
22:42:22 Error Undefined variable in expression: _ownerid
22:42:22 File z\addons\dayz_server\system\server_monitor.sqf, line 129
22:42:22 "Deleting object UAZ_Unarmed_TK_CIV_EP1 with invalid ID at pos [6559.92,2632.42,0]"
22:42:22 "z\addons\dayz_code\compile\veh_handleDam.sqf _this:[15e13040# 1055191: uaz.p3d,"wheel_2_4_steering",0.065] vehicle:UAZ_Unarmed_TK_CIV_EP1# part:"wheel_2_4_steering" current_part_damage:0. setH!t[wheel_2_4_steering,0.065]. Writing to hive. Returned damage:0.065"
22:42:22 "Deleting object UAZ_Unarmed_TK_CIV_EP1 with invalid ID at pos [6559.92,2632.42,0]"
22:42:22 "z\addons\dayz_code\compile\veh_handleDam.sqf _this:[15e13040# 1055191: uaz.p3d,"wheel_1_3_steering",0.015] vehicle:UAZ_Unarmed_TK_CIV_EP1# part:"wheel_1_3_steering" current_part_damage:0. setH!t[wheel_1_3_steering,0.015]. Writing to hive. Returned damage:0.015"
22:42:22 Error in expression <n {"NONE"} else {"CAN_COLLIDE"}

Thoughts?

This was posted on an earlier thread:

Ok I found a temp fix that works for the disappearing vehicles courtesy of drmagnumwolf:

Download your dayz_server.pbo from your server(I'm using dayz.st). And unpack it.
Then, go to the folder compile and open server_updateobject.sqf (use notepad 64 or ++ to help you)
And look for
Code:
//if (!_parachuteWest) then {
if (_objectID == "0" && _uid == "0") then
{
_object_position = getPosATL _object;
diag_log(format["Deleting object %1 with invalid ID at pos [%2,%3,%4]",
typeOf _object,
_object_position select 0,
_object_position select 1,
_object_position select 2]);
_isNotOk = true;
};
};
if (_isNotOk) exitWith { deleteVehicle _object; };
And comment it out by adding // . It should be at the top of the file if you are having problems finding it
make it look like this
Code:
//if (!_parachuteWest) then {
//if (_objectID == "0" && _uid == "0") then
//{
// _object_position = getPosATL _object;
// diag_log(format["Deleting object %1 with invalid ID at pos [%2,%3,%4]",
// typeOf _object,
// _object_position select 0,
// _object_position select 1,
// _object_position select 2]);
// _isNotOk = true;
//};
//};
//if (_isNotOk) exitWith { deleteVehicle _object; };
annnndddddddd then just pack it and upload to your server and you are good to go!(Don't forget to fix the explosion problem beforehand!)
This may decrease the security of the playing environment, but really, hackers will spawn whatever they feel or wish for with or without this code being enabled.




Any thoughts? :-/
 
Bah, dang it that's an error with the new changed that has been made. I will add it to the to do list.
 
I just pushed some corrections for this that should resolve this issue for you. Please verify and let me know if you are still having issues.
 
I also noticed just a bit ago that some of the vehicles are getting inventory, but not amounts. For example, one of the little birds had smoke grenades and other loot, but no actual numbers.

I edited the database to fix that, will dig out more info when I get back home tonight if you want.
 
Sorry this is a double post I originally posted it this morning on another thread but in case it was missed:

I tried the new files for 1.7.7.1 a couple of times including a fresh install I have no issues loging in but all my vehicles are detected as hacked vehicles they spawn ok but then fail to write to the database:

.RPT log:
12:40:45 "HIVE: Starting"
12:40:45 "HIVE: Local Time set to [2012,6,6,13,0]"
12:40:45 "HIVE: trying to get objects"
12:40:45 "HIVE: found 382 objects"
12:40:45 "HIVE: Commence Object Streaming..."
12:40:45 "HIVE: got 382 objects"
12:40:45 Unrecognized CfgVehicles simulation in bin\config.bin/CfgVehicles/TK_Soldier_EP1/
12:40:46 "DEBUG FPS : 0.67906"
12:41:41 Error in expression <n {_entity setVariable ["ObjectID", str(_idKey), true];} else {_entity setVariab>
12:41:41 Error position: <_idKey), true];} else {_entity setVariab>
12:41:41 Error Undefined variable in expression: _idkey
12:41:41 File z\addons\dayz_server\system\server_monitor.sqf, line 129
12:41:41 "VEHICLE OBJ Hacked vehicle owned by PID#0(UAZ) at airstrip [121:27], original damage=0, effective damage=0, fuel=1"
12:41:41 Unrecognized CfgVehicles simulation in bin\config.bin/CfgVehicles/UN_CDF_Soldier_EP1/
12:41:41 Error in expression <n {_entity setVariable ["ObjectID", str(_idKey), true];} else {_entity setVariab>
12:41:41 Error position: <_idKey), true];} else {_entity setVariab>
12:41:41 Error Undefined variable in expression: _idkey
12:41:41 File z\addons\dayz_server\system\server_monitor.sqf, line 129
12:41:41 "VEHICLE OBJ Hacked vehicle owned by PID#0(UAZ) at Chernogorsk [69:129], original damage=0, effective damage=0, fuel=1"
12:41:41 Error in expression <n {_entity setVariable ["ObjectID", str(_idKey), true];} else {_entity setVariab>
12:41:41 Error position: <_idKey), true];} else {_entity setVariab>
12:41:41 Error Undefined variable in expression: _idkey
12:41:41 File z\addons\dayz_server\system\server_monitor.sqf, line 129
12:41:41 "VEHICLE OBJ Hacked vehicle owned by PID#0(UAZ) at airstrip [48:128], original damage=0, effective damage=0, fuel=1"

Also if I try and use a vehicle I get lots of these in my HiveExt.log:

2013-06-19 12:42:06 HiveExt: [Error] Error executing |CHILD:305::[0,[12168.2,3132.89,0.00664735]]:1:|
 
I just updated the code for the vehicles and tents about 10 minutes ago. We made some serious changes to that section. We just tested tents and they are saving properly with all data in them. We also verified that the vehicles are saving properly as well.
 
so when all is saved properly... is it then possible to remove the save command from the scrollmenu? ^^
 
Code:
2013-06-23 00:09:27 HiveExt: [Error] Error executing |CHILD:305::[239,[1169.25,2400.14,-0.0165582]]:1:|
2013-06-23 00:09:33 HiveExt: [Information] Method: 201 Params: 9683:[99,[6856.33,2504.49,0.755]]:[]:[]:[false,false,false,false,false,false,true,11316.9,[],[0,0],0,[97.063,438.94]]:false:false:0:0:3:1:[huntingrifle,amovpercmstpslowwrfldnon_gear,42]:0:0::0:
2013-06-23 00:09:33 HiveExt: [Information] Result: ["PASS"]
2013-06-23 00:09:35 HiveExt: [Information] Method: 201 Params: 9727:[317,[6861.88,2498.51,0.755]]:[]:[]:[false,false,false,false,false,false,false,12000,[],[0,0],0,[405.899,351.397]]:false:false:0:0:9:1:[DMR,aidlpercmstpsraswrfldnon_idlesteady03,42]:0:0::0:
2013-06-23 00:09:35 HiveExt: [Information] Result: ["PASS"]
2013-06-23 00:09:38 HiveExt: [Information] Method: 201 Params: 9375:[55,[6375.73,2795.17,4.779]]:[]:[]:[false,false,false,false,false,false,false,12000,[],[0,0],0,[390.989,454.671]]:false:false:0:0:0:1:[M4A1,amovppnemstpsraswrfldnon,42]:0:0::0:
2013-06-23 00:09:38 HiveExt: [Information] Result: ["PASS"]
2013-06-23 00:09:42 HiveExt: [Information] Method: 201 Params: 9683:[99,[6856.33,2504.49,0.755]]:[[ItemWatch,ItemFlashlight,ItemToolbox,Binocular,huntingrifle,ItemMap,ItemCompass,ItemKnife,ItemMatchbox],[[5x_22_LR_17_HMR,3],[5x_22_LR_17_HMR,4],[5x_22_LR_17_HMR,4],5x_22_LR_17_HMR,5x_22_LR_17_HMR,5x_22_LR_17_HMR,5x_22_LR_17_HMR,5x_22_LR_17_HMR,5x_22_LR_17_HMR,5x_22_LR_17_HMR,5x_22_LR_17_HMR,5x_22_LR_17_HMR,ItemBandage]]:[DZ_Patrol_Pack_EP1,[[],[]],[[FoodCanSardines,ItemWaterbottleUnfilled],[1,1]]]:[false,false,false,false,false,false,true,11316.9,[],[0,0],0,[97.063,438.94]]:false:false:0:0:0:0:[huntingrifle,amovpercmstpslowwrfldnon_gear,42]:0:0::0:
2013-06-23 00:09:42 HiveExt: [Information] Result: ["PASS"]
2013-06-23 00:09:46 HiveExt: [Information] Method: 201 Params: 9566:[157,[4787.74,2571.74,0.058]]:[]:[]:[false,false,false,false,false,false,true,8173.79,[],[0.213,0],0,[501.193,672.241]]:false:false:0:0:24:1:[MeleeFlashlight,amovpercmwlksraswpstdfl,42]:0:0::0:
2013-06-23 00:09:46 HiveExt: [Information] Result: ["PASS"]
2013-06-23 00:09:50 HiveExt: [Information] Method: 201 Params: 9727:[297,[6860.47,2500.03,0.755]]:[[ItemFlashlight,DMR,Binocular,ItemMatchbox,ItemCrowbar,ItemKnife,ItemMap,ItemToolbox,ItemWatch],[[20Rnd_762x51_DMR,18],[20Rnd_762x51_DMR,18],ItemTent,FoodCanFrankBeans,ItemSodaCoke,ItemSodaCoke,ItemWaterbottle,ItemBandage,6Rnd_45ACP,6Rnd_45ACP]]:[DZ_ALICE_Pack_EP1,[[],[]],[[FoodCanFrankBeans,FoodCanSardines],[3,1]]]:[false,false,false,false,false,false,false,12000,[],[0,0],0,[405.899,351.397]]:false:false:0:0:2:0:[DMR,amovpercmstpsraswrfldnon_gear,42]:0:0::0:
2013-06-23 00:09:50 HiveExt: [Information] Result: ["PASS"]

i uploaded the DB updates but still get this, every time you get in a vehicle ---> 2013-06-23 00:09:27 HiveExt: [Error] Error executing |CHILD:305::[239,[1169.25,2400.14,-0.0165582]]:1:|


Vehicles will go back where they had been before the player got them and tents won't save items
 
Back
Top