Wo genau finde ich diese Datei? ich suche und finde nichts...
Config Wepaons
Schön, dass du den Weg zu NodeZone.net gefunden hast! Aktuell bist du nicht angemeldet und kannst deshalb nur eingeschränkt auf unsere Community zugreifen. Um alle Funktionen freizuschalten, spannende Inhalte zu entdecken und dich aktiv einzubringen, registriere dich jetzt kostenlos oder melde dich mit deinem Account an.
Wo genau finde ich diese Datei? ich suche und finde nichts...
Config Wepaons
Kannst du einmal das extDBMenü zum mitnehmen fertig machen?Bitte als .txt bin am Handy
kenn ich zu gut
Guckt mal bitte bei Github da stehen fixes
Kann Closed#
Hab was vergessen
...wenn du User das Modpaket über ArmaSync laden können sie es auch klauen - oder es gibt einen Schutz der mir nicht bekannt ist
this enableSimulation false; this allowDamage false; this addAction[localize"STR_Process_W_Weinrebe",life_fnc_processAction,"Weinrebe",0,false,false,"",' life_inv_Wweinrebe > 0 && !life_is_processing && !life_action_inUse']; this addAction[format ["%1 ($%2)",localize (getText(missionConfigFile >> "Licenses" >> "landwirt" >> "displayName")), [(getNumber(missionConfigFile >> "Licenses" >> "landwirt" >> "price"))] call life_fnc_numberText],life_fnc_buyLicense,"landwirt",0,false,false,"",' !license_civ_landwirt && playerSide isEqualTo civilian '];
Hab nur schnell mit dem Handy geschaut, sollte das nicht so heißen?
localize"STR_Process_W_Weinrebe",life_fnc_processAction,"Wweinrebe"
Da deine ProcessClass so heißt und nicht nur Weinrebe?
es muss genauso heißen wie deine Class weil die Processaction wird über die class gezogen
Moin,
Wir sind soweit auf Reihe nur ein Thema beschäftigt uns noch
Wir haben einen Taser eingebaut er tasert zwar auch aber er macht keinen Schaden...
entweder ich bin blind und blöd oder ich raff es nicht.
Die Handlerdamage von Tonic habe ich auskommentiert damit die Handlerdamage von ACE in Kraft tritt.
Hier ist die Handlerdamage von ACE :
/*
* Author: KoffeinFlummi, Glowbal, commy2
* Main HandleDamage EH function.
*
* Arguments:
* 0: Unit That Was Hit <OBJECT>
* 1: Name Of Hit Selection <STRING>
* 2: Amount Of Damage <NUMBER>
* 3: Shooter <OBJECT>
* 4: Projectile <OBJECT/STRING>
* 5: HitPointIndex (-1 for structural) <NUMBER>
* 6: Shooter <OBJECT>
*
* Return Value:
* Damage To Be Inflicted <NUMBER>
*
* Public: No
*/
#include "script_component.hpp"
_this = _this select [0, 7];
params ["_unit", "_selection", "_damage", "_shooter", "_projectile", "_hitPointIndex"];
TRACE_5("ACE_DEBUG: HandleDamage Called",_unit, _selection, _damage, _shooter, _projectile);
//Handle the tazer first (Top-Priority).
/// ACE 3 TASER Script ///
_exit = false;
if(_shooter != _unit) then {
_curWep = currentWeapon _shooter;
if(_projectile in ["FxCartridge_65_caseless","B_556x45_dual"] && _curWep in ["CSW_M26C","arifle_SDAR_F"]) then {
//Temp fix for super tasers on cops.
if(side _shooter == west && (playerSide == west OR playerSide == independent OR playerSide == east)) exitWith {
_exit = true;
};
if(side _shooter == west && playerSide == civilian) then {
private["_distance"];
_distance = if(_projectile == "FxCartridge_65_caseless") then {100} else {35};
_exit = true;
if((_unit distance _shooter) < _distance) then {
if(!life_istazed && !life_isknocked && (!(_unit getVariable ["restrained",false]))) then {
if (vehicle _unit != _unit) then {
if (typeOf (vehicle _unit) == "B_Quadbike_01_F") then {
_unit action ["Eject",vehicle _unit];
[_unit,_shooter] spawn life_fnc_tazed;
};
} else {
[_unit,_shooter] spawn life_fnc_tazed;
};
};
};
};
};
};
if(_exit) exitWith {0};
/// ACE 3 TASER Script ///
// bug, apparently can fire for remote units in special cases
if !(local _unit) exitWith {
TRACE_2("ACE_DEBUG: HandleDamage on remote unit!",_unit, isServer);
nil
};
// bug, assumed fixed, @todo excessive testing, if nothing happens remove
if (_projectile isEqualType objNull) then {
_projectile = typeOf _projectile;
_this set [4, _projectile];
};
TRACE_3("ACE_DEBUG: HandleDamage",_selection,_damage,_unit);
// If damage is in dummy hitpoints, "hands" and "legs", don't change anything
if (_selection == "hands") exitWith {_unit getHit "hands"};
if (_selection == "legs") exitWith {_unit getHit "legs"};
if (_selection == "arms") exitWith {_unit getHit "arms"};
// Deal with the new hitpoint and selection names introduced with Arma v1.50 and later.
// This will convert new selection names into selection names that the medical system understands
// TODO This should be cleaned up when we revisit the medical system at a later stage
// and instead we should deal with the new hitpoints directly
_selection = [_unit, _selection, _hitPointIndex] call FUNC(translateSelections);
_this set [1, _selection]; // ensure that the parameters are set correctly
// If the damage is being weird, we just tell it to off. Ignore: "hands", "legs", "arms"
if (_selection != "" && {!(_selection in GVAR(SELECTIONS))}) exitWith {0};
// Exit if we disable damage temporarily
if !(_unit getVariable [QGVAR(allowDamage), true]) exitWith {
TRACE_3("ACE_DEBUG: HandleDamage damage disabled.",_selection,damage _unit,_unit);
if (_selection == "") then {
damage _unit
} else {
_unit getHit _selection
};
};
// Get return damage
private _damageReturn = _damage;
private _newDamage = _this call FUNC(handleDamage_caching);
// handleDamage_caching may have modified the projectile string
private _typeOfDamage = [_projectile] call FUNC(getTypeOfDamage);
TRACE_3("ACE_DEBUG: HandleDamage caching new damage",_selection,_newDamage,_unit);
private _typeIndex = (GVAR(allAvailableDamageTypes) find _typeOfDamage);
private _minLethalDamage = if (_typeIndex >= 0) then {
GVAR(minLethalDamages) select _typeIndex
} else {
0.01
};
if (!isNull _shooter) then {
_unit setvariable [QGVAR(lastDamageSource), _shooter, false];
};
private _vehicle = vehicle _unit;
private _effectiveSelectionName = _selection;
if ((_vehicle != _unit) && {!(_vehicle isKindOf "StaticWeapon")} && {_shooter in [objNull, driver _vehicle, _vehicle]} && {_projectile == ""} && {_selection == ""}) then {
if (GVAR(enableVehicleCrashes)) then {
_effectiveSelectionName = _this select 1; //pull random selection from HDC
};
};
if ((_minLethalDamage <= _newDamage) && {[_unit, [_effectiveSelectionName] call FUNC(selectionNameToNumber), _newDamage] call FUNC(determineIfFatal)}) then {
if ((_unit getVariable [QGVAR(preventInstaDeath), GVAR(preventInstaDeath)])) exitwith {
_damageReturn = 0.9;
};
if ([_unit, false, true] call FUNC(setDead)) then {
_damageReturn = 1;
} else {
_damageReturn = _damageReturn min 0.89;
};
} else {
_damageReturn = _damageReturn min 0.89;
};
// Start the loop that tracks the unit vitals
[_unit] call FUNC(addVitalLoop);
if (_unit getVariable [QGVAR(preventInstaDeath), GVAR(preventInstaDeath)]) exitWith {
private _delayedUnconsicous = false;
if (_vehicle != _unit and {damage _vehicle >= 1}) then {
[_unit] call EFUNC(common,unloadPerson);
_delayedUnconsicous = true;
};
if (_damageReturn >= 0.9 && {_selection in ["", "head", "body"]}) exitWith {
if (_unit getVariable ["ACE_isUnconscious", false]) exitwith {
[_unit, false, true] call FUNC(setDead);
0.89;
};
if (_delayedUnconsicous) then {
[{
[_this select 0, true] call FUNC(setUnconscious);
}, [_unit], 0.7] call CBA_fnc_waitAndExecute;
} else {
[{
[_this select 0, true] call FUNC(setUnconscious);
}, [_unit]] call CBA_fnc_execNextFrame;
};
0.89;
};
_damageReturn min 0.89;
};
if (((_unit getVariable [QGVAR(enableRevive), GVAR(enableRevive)]) > 0) && {_damageReturn >= 0.9} && {_selection in ["", "head", "body"]}) exitWith {
if (vehicle _unit != _unit and {damage (vehicle _unit) >= 1}) then {
[_unit] call EFUNC(common,unloadPerson);
};
[_unit, false, true] call FUNC(setDead);
0.89;
};
TRACE_3("ACE_DEBUG: HandleDamage damage return",_selection,_damageReturn,_unit);
_damageReturn
Alles anzeigen
Wie gesagt wir erhalten keinen Schaden...
und auch so wenn man sich mit Scharfen Waffen abschießt verliert man nichts...der Healthbalken will sich zwar minimieren aber er lädt sich strikt auf 100 sekündlich auf.
Weiß jemand Rat?
Vielen Dank im Vorraus.
LG Kuchenplatte
Such doch bitte einfach mal in deinem Framework nach housing dann sticht es schon ins Auge
Äh...Classname in die Housing Config hinzufügen ?!
Geht es um Epoch oder Exile ? Sehe es mobil nicht
Ich weiß nicht wie Epoch aktuell aufgebaut ist - also entweder in der config in der epoch .pbo
ganz weit unten kannst du alles einstellen . Falls du es nicht gefunden hast melde dich nochmal dann guck ich wo genau
meine life_server ist als pbo da
Ja und deine Mission?
Also :
Du hast ja Ordner - diese nennen sich :
du gehst auf die Ordner mit "rechtsklick" und dort steht dann "PBO Manager" dann kannst du "diesen" Ordner in eine .pbo packen ( in dem Fall beide Ordner )
Dann hast du in deiner Server Config diesen Abschnitt:
// Missions Cycle (See Below)
class Missions
{
class Mission_1
{
template = "altis_life.altis";
difficulty = "regular";
};
};
Alles anzeigen
und da werden deine Missions eingetragen.
Ach so du hast LINUX . das hättest du aber mal früher sagen können : ) . . .
Da kann ich dir leider nicht mehr weiter helfen weil mit LINUX Kenne ich mich nicht aus . Und LINUX ist auch nicht so gut für ArmA 3 .
das ist der größte Irrsinn...habe damals selbst 2 Projekte auf einem Linux gehabt....
hast du den PBO Manager? Und deinen Life_Server sowie deine Mission zu einer Pbo gepackt und diese auch in der server.cfg niedergeschrieben?