Temporarily Disabled Cars

Until Rope system is fixed to work with larger objects
This commit is contained in:
mrpvtdagger 2021-02-22 22:51:29 -04:00
parent f436866e13
commit 38e208513c
2 changed files with 5 additions and 5 deletions

View File

@ -21,7 +21,7 @@ _ccargo = [
]; ];
// ====================== Don't Touch Anything Below this line ====================== // ====================== Don't Touch Anything Below this line ======================
_acargo = entities [[], ["Air","Man","Tank","Logic"], true];; // Maybe Better way of Doing This???? _acargo = entities [[], ["Air","Man","Tank","Logic","Cars"], true];; // Maybe Better way of Doing This????
_acargo append _ccargo; _acargo append _ccargo;
{ {
_action = [ _action = [

View File

@ -37,10 +37,10 @@
_frontCorner = [(_centerOfMass select 0) + _widthOffset, (_centerOfMass select 1) + _lengthOffset, (_centerOfMass select 2)+_heightOffset]; _frontCorner = [(_centerOfMass select 0) + _widthOffset, (_centerOfMass select 1) + _lengthOffset, (_centerOfMass select 2)+_heightOffset];
_frontCorner2 = [(_centerOfMass select 0) - _widthOffset, (_centerOfMass select 1) + _lengthOffset, (_centerOfMass select 2)+_heightOffset]; _frontCorner2 = [(_centerOfMass select 0) - _widthOffset, (_centerOfMass select 1) + _lengthOffset, (_centerOfMass select 2)+_heightOffset];
_Rope1 = ropeCreate [_nObject, [0,1.1,-2], _heightOffset + (_cargo distance _nObject)]; _Rope1 = ropeCreate [_nObject, [0,1.1,-2], 5];
_Rope2 = ropeCreate [_nObject, [0,1.1,-2], _heightOffset + (_cargo distance _nObject)]; _Rope2 = ropeCreate [_nObject, [0,1.1,-2], 5];
_Rope3 = ropeCreate [_nObject, [0,1.1,-2], _heightOffset + (_cargo distance _nObject)]; _Rope3 = ropeCreate [_nObject, [0,1.1,-2], 5];
_Rope4 = ropeCreate [_nObject, [0,1.1,-2], _heightOffset + (_cargo distance _nObject)]; _Rope4 = ropeCreate [_nObject, [0,1.1,-2], 5];
[_cargo , _rearCorner, [0,0,-1]] ropeAttachTo (_Rope1); [_cargo , _rearCorner, [0,0,-1]] ropeAttachTo (_Rope1);
[_cargo , _rearCorner2, [0,0,-1]] ropeAttachTo (_Rope2); [_cargo , _rearCorner2, [0,0,-1]] ropeAttachTo (_Rope2);