Jump to content

Search the Community

Showing results for tags 'supply'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • BOHEMIA INTERACTIVE
    • BOHEMIA INTERACTIVE - NEWS
    • BOHEMIA INTERACTIVE - JOBS
    • BOHEMIA INTERACTIVE - GENERAL
  • FEATURED GAMES
    • Arma Reforger
    • Vigor
    • DAYZ
    • ARMA 3
    • ARMA 2
    • YLANDS
  • MOBILE GAMES
    • ARMA MOBILE OPS
    • MINIDAYZ
    • ARMA TACTICS
    • ARMA 2 FIRING RANGE
  • BI MILITARY GAMES FORUMS
  • BOHEMIA INCUBATOR
    • PROJECT LUCIE
  • OTHER BOHEMIA GAMES
    • ARGO
    • TAKE ON MARS
    • TAKE ON HELICOPTERS
    • CARRIER COMMAND: GAEA MISSION
    • ARMA: ARMED ASSAULT / COMBAT OPERATIONS
    • ARMA: COLD WAR ASSAULT / OPERATION FLASHPOINT
    • IRON FRONT: LIBERATION 1944
    • BACK CATALOGUE
  • OFFTOPIC
    • OFFTOPIC
  • Die Hard OFP Lovers' Club's Topics
  • ArmA Toolmakers's Releases
  • ArmA Toolmakers's General
  • Japan in Arma's Topics
  • Arma 3 Photography Club's Discussions
  • The Order Of the Wolfs- Unit's Topics
  • 4th Infantry Brigade's Recruitment
  • 11th Marine Expeditionary Unit OFFICIAL | 11th MEU(SOC)'s 11th MEU(SOC) Recruitment Status - OPEN
  • Legion latina semper fi's New Server Legion latina next wick
  • Legion latina semper fi's https://www.facebook.com/groups/legionlatinasemperfidelis/
  • Legion latina semper fi's Server VPN LEGION LATINA SEMPER FI
  • Team Nederland's Welkom bij ons club
  • Team Nederland's Facebook
  • [H.S.O.] Hellenic Special Operations's Infos
  • BI Forum Ravage Club's Forum Topics
  • Exilemod (Unofficial)'s General Discussion
  • Exilemod (Unofficial)'s Scripts
  • Exilemod (Unofficial)'s Addons
  • Exilemod (Unofficial)'s Problems & Bugs
  • Exilemod (Unofficial)'s Exilemod Tweaks
  • Exilemod (Unofficial)'s Promotion
  • Exilemod (Unofficial)'s Maps - Mission Files
  • TKO's Weferlingen
  • TKO's Green Sea
  • TKO's Rules
  • TKO's Changelog
  • TKO's Help
  • TKO's What we Need
  • TKO's Cam Lao Nam
  • MSOF A3 Wasteland's Server Game Play Features
  • MSOF A3 Wasteland's Problems & Bugs
  • MSOF A3 Wasteland's Maps in Rotation
  • SOS GAMING's Server
  • SOS GAMING's News on Server
  • SOS GAMING's Regeln / Rules
  • SOS GAMING's Ghost-Town-Team
  • SOS GAMING's Steuerung / Keys
  • SOS GAMING's Div. Infos
  • SOS GAMING's Small Talk
  • NAMC's Topics
  • NTC's New Members
  • NTC's Enlisted Members
  • The STATE's Topics
  • CREATEANDGENERATION's Intoduction
  • CREATEANDGENERATION's HAVEN EMPIRE (NEW CREATORS COMMUNITY)
  • HavenEmpire Gaming community's HavenEmpire Gaming community
  • Polska_Rodzina's Polska_Rodzina-ARGO
  • Carrier command tips and tricks's Tips and tricks
  • Carrier command tips and tricks's Talk about carrier command
  • ItzChaos's Community's Socials
  • Photography club of Arma 3's Epic photos
  • Photography club of Arma 3's Team pics
  • Photography club of Arma 3's Vehicle pics
  • Photography club of Arma 3's Other
  • Spartan Gamers DayZ's Baneados del Servidor
  • Warriors Waging War's Vigor
  • Tales of the Republic's Republic News
  • Operazioni Arma Italia's CHI SIAMO
  • [GER] HUSKY-GAMING.CC / Roleplay at its best!'s Starte deine Reise noch heute!
  • empire brotherhood occult +2349082603448's empire money +2349082603448
  • NET88's Twitter
  • DayZ Italia's Lista Server
  • DayZ Italia's Forum Generale

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Yahoo


Jabber (xmpp)


Skype


Biography


Twitter


Google+


Youtube


Vimeo


Xfire


Steam url id


Raptr


MySpace


Linkedin


Tumblr


Flickr


XBOX Live


PlayStation PSN


Origin


PlayFire


SoundCloud


Pinterest


Reddit


Twitch.Tv


Ustream.Tv


Duxter


Instagram


Location


Interests


Interests


Occupation

Found 3 results

  1. Hi there. If you want to create missions without ACE dependencies but still want to use ACE Medical and Food stuff when ACE is available on the server, you might use this code in your initServer.sqf, for example. initServer.sqf // If ACE Medical is activated on the server, do it: if ( isClass(configfile >> "CfgPatches" >> "ace_medical") ) then { supply_crate1 = createVehicle ["CargoNet_01_box_F", [1876.54,9278.19,200], [], 0, "NONE"]; chute1 = createVehicle ["B_Parachute_02_F", [0,0,0], [], 0, "FLY"]; chute1 setPos (getPos supply_crate1); // getPos was designed to take the altitude pos obj from the surface below it. supply_crate1 attachTo [chute1, [0,0,-0.6]]; // attach the chute to the crate // Supply items > Medical: supply_crate1 addItemCargo ["ACE_fieldDressing", 36]; supply_crate1 addItemCargo ["ACE_elasticBandage", 18]; supply_crate1 addItemCargo ["ACE_splint", 9]; supply_crate1 addItemCargo ["ACE_quikclot", 18]; supply_crate1 addItemCargo ["ACE_tourniquet", 18]; supply_crate1 addItemCargo ["ACE_packingBandage", 9]; supply_crate1 addItemCargo ["ACE_bloodIV", 9]; supply_crate1 addItemCargo ["ACE_plasmaIV_500", 5]; supply_crate1 addItemCargo ["ACE_salineIV", 5]; supply_crate1 addItemCargo ["ACE_bodyBag", 5]; supply_crate1 addItemCargo ["ACE_morphine", 18]; supply_crate1 addItemCargo ["ACE_epinephrine", 18]; supply_crate1 addItemCargo ["ACE_adenosine", 18]; supply_crate1 addItemCargo ["ACE_painkillers", 18]; supply_crate1 addItemCargo ["ACE_surgicalKit", 3]; supply_crate1 addItemCargo ["ACE_suture", 3]; supply_crate1 addItemCargo ["ACE_personalAidKit", 3]; supply_crate1 addItemCargo ["Medikit", 1]; // Supply items > Food: supply_crate1 addItemCargo ["ACE_Banana", 18]; supply_crate1 addItemCargo ["ACE_MRE_SteakVegetables", 9]; // Supply items > Water: supply_crate1 addItemCargo ["ACE_WaterBottle", 18]; supply_crate1 addItemCargo ["ACE_Canteen", 9]; // Supply items > Extra: supply_crate1 addItemCargo ["ACE_EarPlugs", 9]; // Waiting the crate get closer to the ground: waitUntil { sleep 0.1; ((getPosATL supply_crate1) # 2) < 2 || !alive supply_crate1 }; // Adjust to crate velocity after the parachute detachment: _velocity = velocity supply_crate1; // [x,y,z] detach supply_crate1; supply_crate1 setVelocity _velocity; // Detachment of parachute from the crate: playSound3D ["a3\sounds_f\weapons\Flare_Gun\flaregun_1_shoot.wss", supply_crate1]; detach chute1; chute1 disableCollisionWith supply_crate1; // Animation breather: sleep 5; // Delete the parachute: if ( !isNull chute1 ) then { deleteVehicle chute1 } }; Pay attention to this line down below. You should set the classname of the asset of your taste. You MUST replace "[XXX, YYY, 200]" for other X and Y positions on the map. supply_crate1 = createVehicle ["CargoNet_01_box_F", [1876.54,9278.19,200], [], 0, "NONE"]; Enjoy.
  2. Hey all Does anyone know of a script the player can call in to do an ammo drop? I'm making a mission with VTE and the AI burn through their ammunition before the player's squad reaches the first objective.
  3. Hello, I've got a problem, opening and testing my mission (tested in V1.54, editor 2D, several hundred of subscribers with no problem), downloadable here: http://steamcommunity.com/sharedfiles/filedetails/?id=607086669 I remarked it's now impossible to have all supports. Artillery still works, supply drop and CAS (non virtual) lead to grayed assets when called. This occur in all modes: preview SP, MP from Eden. I must precise, these supports are synchronized when player(s) grab a backpack radio. Anyway, this worked well in 2D editor. I backup my mission.sqm in order to re-open it in 2D editor, everything works fine... ARMA3 V 1.56 seems OK but not Eden (problem with sqm for recognition of linked items or something like that). Please, don't remove 2D editor prior to consolidate Eden. This editor is really a great work with youth lacks. Thanks Pierre MGI
×