NeverAgain

Donator
  • Content count

    1168
  • Donations

    0.00 EUR 
  • Joined

  • Last visited

Everything posted by NeverAgain

  1. NeverAgain

    [Solved]Marxet

    After updating my config.cpp rpt say : "MarXet: [!!!WARNING!!!] : WE HAD AN ISSUE STARTING MARXET, MARXET WILL NOT START. ERROR: MarXet's CfgNetworkMessages don't exist in config.cpp!" A have this on description: class CfgNetworkMessages { #include "MarXet\CfgMarXetNetworkMessages.hpp" #include "ExAdClient\CfgNetworkMessages.cpp" #include "ExAdClient\CfgNetworkMessages.cpp" #include "Custom\Humanity\cfg\CfgNetworkMessages.hpp" // Humanity #include "Custom\meds\CfgNetworkMessages.hpp" }; And if i try to add this to config.cpp class CfgNetworkMessages { #include "MarXet\CfgMarXetNetworkMessages.hpp" }; Still same warning in rpt..please help and thanks.
  2. NeverAgain

    [Solved]Humanity System

    Hello please how to add https://github.com/josemaripl/ExileMod-HumanitySystem I need help with DB....Thanks
  3. NeverAgain

    What about a DayZ Standalone Mod ?

    Try this server on A3Launcher Mod Edit: Don't advertise servers..
  4. NeverAgain

    Dynamic multi convoy for EXILE

    AI in chernarus go way from ride AI wont exit car and defend himself
  5. NeverAgain

    [SOLVED]Cup Weapons Attachment List

    Hi please how to fix attachement from CUP weapons? Big THANKS!!
  6. NeverAgain

    Revive system

    Hello community is somewhere good revive system with unconscious?
  7. Thank you but i need two AI side for my server... there is only one side...how to add another side ?
  8. NeverAgain

    A3 Wounding System - AIS Revive (HELP)

    Well i really need this :-)
  9. Is way to change AI side ? West and east ?
  10. NeverAgain

    YOU WERE KICKED OFF THE GAME!

    Try A3 Launcher for connect to servers. https://a3launcher.com/
  11. NeverAgain

    [Solved] Spawn zone icon problem

    I have problem with this,please how to fix? Thanks
  12. NeverAgain

    [Solved] Spawn zone icon problem

    Thank you !!
  13. NeverAgain

    [Solved] Spawn zone icon problem

    Thank you..its solved :-) But now i change in server.cfg and description player slots for 12 but i have this error. 22:11:30 Mission Exile.Chernarus_2035: Number of roles (100) is different from 'description.ext::Header::maxPlayer' (12) Ahh i forgot in @ExileServer in config: maxPlayers = 12; Here
  14. NeverAgain

    Happy New Year 2019

    Thanks... And for ALL Happy new year from Czech Republic :-)
  15. NeverAgain

    Ama 1.88 Bugs MEGATHREAD

    Hi i have problem with this..please help
  16. NeverAgain

    Dynamic multi convoy for EXILE

    Its way to add west and east side ?
  17. Ghostrider-DBD Hello is change update this mission system to more AI side like East and West ? Thank you for answer...
  18. NeverAgain

    Players can

    Please have and using someone this ? Players can be knocked out when shot Players can bleed to death with proper credit given to the killer Players can apply aid to other players via scroll wheel actions
  19. NeverAgain

    Players can

    No help with this ?
  20. NeverAgain

    Players can

    I found this: JohnO_fnc_applyBandageToPlayer.sqf private ["_addRespect"]; _patient = _this select 0; call ExileClient_gui_interactionMenu_unhook; player playActionNow "Medic"; player removeItem "Exile_Item_Bandage"; sleep 4; _patient setVariable ["ExileReborn_clientBandaged",true,true]; if (time - ExileReborn_healingCoolDown >= ExileReborn_lastHealingReward) then { ExileReborn_lastHealingReward = time; _addRespect = 120; [_addRespect,0,true] call JohnO_fnc_updateRespectAndTabs; }; ["InfoTitleAndText", [ "Bandage applied", format ["I have applied a bandage to their wounds - %1 respect", _addRespect] ] ] call ExileClient_gui_toaster_addTemplateToast; JohnO_fnc_maintainKnockOut.sqf private ["_duration","_soundArray","_soundDelay","_lastSound"]; _duration = _this select 0; _soundArray = ["sounds\hit1.ogg","sounds\hit2.ogg","sounds\hit3.ogg","sounds\hit4.ogg","sounds\hit5.ogg","sounds\hit6.ogg","sounds\hit7.ogg","sounds\hit8.ogg","sounds\hit9.ogg"]; _soundDelay = 10; _lastSound = time; sleep 2; player switchMove "AcinPercMrunSnonWnonDf_agony"; ExileReborn_playerIsKnockedOut = true; disableUserInput true; cutText ["","BLACK OUT",5]; while {_duration > 0} do { _duration = _duration - 1; if (time - _soundDelay >= _lastSound) then { _soundPath = [(str missionConfigFile), 0, -15] call BIS_fnc_trimString; _soundToPlay = _soundPath + (selectRandom _soundArray); playSound3D [_soundToPlay, player, false, getPos player, 10, 1, 35]; _lastSound = time; }; titleText [format["Unconcious - %1",_duration],"PLAIN"]; if !(alive player) exitWith {}; uiSleep 1; }; cutText ["","BLACK IN",5]; ExileReborn_playerIsKnockedOut = false; disableUserInput false; JohnO_fnc_playCustomHitSound.sqf private ["_soundArray"]; _soundArray = ["sounds\hit1.ogg","sounds\hit2.ogg","sounds\hit3.ogg","sounds\hit4.ogg","sounds\hit5.ogg","sounds\hit6.ogg","sounds\hit7.ogg","sounds\hit8.ogg","sounds\hit9.ogg"]; _soundPath = [(str missionConfigFile), 0, -15] call BIS_fnc_trimString; _soundToPlay = _soundPath + (selectRandom _soundArray); playSound3D [_soundToPlay, player, false, getPos player, 10, 1, 35]; uiSleep 3; ExileRebornClient_CustomHit_soundIsPlaying = false; Here is ineraction menu for apply Bandage,instadog and pressure class Pressure: ExileAbstractAction { title = "Apply Pressure"; condition = "((alive ExileClientInteractionObject) && (isBleeding ExileClientInteractionObject) && (ExileClientInteractionObject distance player < 3))"; action = "_this call JohnO_fnc_applyPressureToWound"; }; class Bandage: ExileAbstractAction { title = "Apply Bandage"; condition = "((alive ExileClientInteractionObject) && (isBleeding ExileClientInteractionObject) && ('Exile_Item_Bandage' in (magazines player)) && (ExileClientInteractionObject distance player < 3))"; action = "_this call JohnO_fnc_applyBandageToPlayer"; }; class InstaDoc: ExileAbstractAction { title = "Apply InstaDoc"; condition = "((alive ExileClientInteractionObject) && ('Exile_Item_InstaDoc' in (magazines player)) && (ExileClientInteractionObject distance player < 3))"; action = "_this call JohnO_fnc_applyInstaDocToPlayer"; }; Hmmm how to add to Exile?
  21. NeverAgain

    Players can

    If you look here John this use on this addon An in depth medical system - Players can be knocked out when shot Players can bleed to death with proper credit given to the killer Players can apply aid to other players via scroll wheel actions
  22. NeverAgain

    RangeFinder

    Ok this in description enable or disable rangefinder But how to disable Vehicle info ? true, // Vehicle + soldier info
  23. NeverAgain

    RangeFinder

    Hello i have problem with rangefinder...he wont show distance after i use key T... controls > weapon > laser distance > T Please help..thanks
  24. Hello i have problem with spawn items... some food and another items...please how to fix? Before arma update all works fine...
  25. NeverAgain

    Patrol AI

    Hi please how to have AI patrol in specific military location..Thanks