Hi, ich habe jetzt eingefügt das man als Zivi andere ausknocken und festnehmen kann.
Allerdings kann man jetzt nicht das Interaktionsmenü bekomme. Also Windows macht nichts ich kann andere Spieler nicht eskotieren oder die Waffen abnehmen.
Wie kriege ich das den gefixt?
Code
//Restraining (Shift + R) Cops = Instantrestrain // Civs = Knockout to restrain
case 19: {
//Cops -> Civs
if(_shift) then {_handled = true;};
if(_shift && playerSide == west && !isNull cursorTarget && cursorTarget isKindOf "Man" && (isPlayer cursorTarget) && (side cursorTarget == civilian) && alive cursorTarget && cursorTarget distance player < 3.5 && !(cursorTarget getVariable "Escorting") && !(cursorTarget getVariable "restrained") && speed cursorTarget < 1) then
{
[] call life_fnc_restrainAction;
};
// Civs - > Civs
if(_shift) then {_handled = true;};
if(_shift && playerSide == civilian && !isNull cursorTarget && cursorTarget isKindOf "Man" && (isPlayer cursorTarget) && alive cursorTarget && cursorTarget distance player < 3.5 && isPlayer cursorTarget && animationState cursorTarget == "Incapacitated" && !(cursorTarget getVariable "Escorting") && !(cursorTarget getVariable "restrained") && speed cursorTarget < 1) then
{
[] call life_fnc_restrainAction;
};
};
Alles anzeigen
MfG