Hallo,
und zwar benötige ich Hilfe und zwar möchte ich dieses Script
//Restraining (Shift + R) and Radio (R)
case 19: {
if(_shift) then {_handled = true;};
if(_shift && playerSide == west && {!isNull cursorTarget} && {cursorTarget isKindOf "Man"} && {(isPlayer cursorTarget)} && {(side cursorTarget in [civilian,independent])} && {alive cursorTarget} && {cursorTarget distance player < 3.5} && {!(cursorTarget GVAR "Escorting")} && {!(cursorTarget GVAR "restrained")} && {speed cursorTarget < 1}) then {
[] call life_fnc_restrainAction;
}
else
{
if !(license_civ_rebel) exitWith { hint "Du musst zuerst das Rebellentraining absolvieren um jemanden zu fesseln!"};
if(_shift && playerSide == civilian && {!isNull cursorTarget} && {cursorTarget isKindOf "Man"} && {(currentWeapon player == primaryWeapon player OR currentWeapon player == handgunWeapon player)} && {currentWeapon player != ""} && {(isPlayer cursorTarget)} && {alive cursorTarget} && {cursorTarget distance player < 3.5} && {animationState cursorTarget == "Incapacitated"} && {!(cursorTarget GVAR "Escorting")} && {!(cursorTarget GVAR "restrained")} && {speed cursorTarget < 1}) then
{
if([false,"zipties",2] call life_fnc_handleInv) then
{
[] call life_fnc_restrainAction;
[player,"uncuff"] call life_fnc_globalSound;
hint "Benutze die Action, um weitere Aktionen anzuzeigen";
}
else
{
hint "Du hast keine Kabelbinder dabei!";
};
};
};
};
auf meinem Server einfügen. nun bin ich aber zu dumm das richtig bei notepad ++ einzufügen könnte mir jemand das umwandel ?