Arma 3
719 人が評価
dbo_horses
2
   
アワード
お気に入り
お気に入り
お気に入りから削除
Data Type: Mod
Mod Type: Character
ファイルサイズ
投稿日
更新日
67.393 MB
2018年8月8日 8時27分
2018年10月7日 7時07分
16 項目の変更履歴 ( 表示 )

サブスクライブしてダウンロード
dbo_horses

解説
************* Important Notice This addon is for Arma 3 only any seperate uploads or usage in other games including BIS games such as DayZ will set in motion a compensation Process ************


Public Release 0.3A (Alpha)

Arma Public License No Derivatives (APL-ND)

****** ***DO NOT REUPLOAD WITHOUT SPECIFIC PERMISSION *******
*************I am Watching you ******
https://beta.workshopcrawler.com/scan/JS14AKAJX49HNXQRPFUR

DB

Animations By Macser

Cheers

**************Use in DayZ or any other game or re upload on steam or anywehere else will set in motion a compensation process please be aware ***************

Johnnyboy has Arma 3 1 Mar @ 11:00pm
I found a solution to the problem where if you accidentally choose "Release UAV Controls" action, player can no longer control his unit, and he must exit the mission. Put this code in the init.sqf, and it will sense the stuck condition, and player will regain control of unit (and it exits the horse).
_n = [] spawn
{
sleep 5;
while {true} do
{
sleep 2;
if ((cameraOn == player) and (animationState player == "horse_rider") and !(isNull attachedTo player)) then
{
sleep 1;
// We check same condition twice because these conditions are true for a split second when player
// chooses "Get Off" action. By waiting a bit, we know player is truly stuck.
if ((cameraOn == player) and (animationState player == "horse_rider") and !(isNull attachedTo player)) then
{
sleep .5;
_horse = attachedTo player;
player switchMove "";
detach player;
player setVelocityModelSpace [-2,0,-2];
removeAllActions _horse; // remove get off action then add get on action
_hossmount = _horse addaction ["GetOn","\dbo\dbo_horses\scripts\horse_mount.sqf",nil,1.5,true,true,"","true",4,false,""];
_horse setobjecttexture [0,"\dbo\dbo_horses\data\tack_co.paa"];
_horse setobjecttexture [1,""];
};
};
};
};