Jump to content

Search the Community

Showing results for tags 'MULTIPLAYER'.



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

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 482 results

  1. So, i'm pretty new in the Arma 3 Mission edeting and scripting, or at least for Multiplayer. My problem is, that in my Singleplayer Missions i could just use BIS_fnc_typeText2 and everything worked just fine, but now I'm trying to do this and other Stuff like Hints etc. in a Multiplayer Mission, but it only is Shown to Host or when i put it on my Linux Root Server, to no one. All the triggers Work just how I want them to, New Tasks get Assigned and everything that has to be done by Server (like let NPC eject via script and stuff like this) work also. Only Issue I have is that Hint's and BIS_fnc_typeText2 etc. are not shown to the Players except host if launched local. What i did is Adding eventhandlers that get active if you kill the Guy you have to Start the Actual Mission. this addEventHandler ["killed", {[] exec "Missionflow.sqs"}]; The Code below is executed, but hints and Stuff is only shown to host. <Missionflow.sqs> [[["Bluefor", "align = 'center' size = '0.7'", "#0000FF"], ["", "<br/>"], ["Im Anflug für ''Para-Drop''", "align = 'center' size = '1.0'"]]] spawn BIS_fnc_typeText2; ~30 [[["OPFOR", "align = 'center' size = '0.7'", "#FF0000"], ["", "<br/>"], ["Im Gebiet", "align = 'center' size = '1.0'"]]] spawn BIS_fnc_typeText2; ~110 [[["WARNUNG", "align = 'center' size = '0.7'", "#FF0000"], ["", "<br/>"], ["Jets im Anflug", "align = 'center' size = '1.0'"]]] spawn BIS_fnc_typeText2; ~120 [[["EVAC", "align = 'center' size = '0.7'", "#FF0000"], ["", "<br/>"], ["Ist unterwegs", "align = 'center' size = '1.0'"]]] spawn BIS_fnc_typeText2; hintSilent "Achten sie auf Feinde"; And all this is only shown to Host, i dont know what to do about this, how am I getting this to work in Multiplayer so all are seeing this. What I also tried is giving the Playable Characters Variable Names (a to d) and then did this: this addEventHandler ["killed", {[a] exec "Missionflow.sqs"}]; this addEventHandler ["killed", {[b] exec "Missionflow.sqs"}]; this addEventHandler ["killed", {[c] exec "Missionflow.sqs"}]; this addEventHandler ["killed", {[d] exec "Missionflow.sqs"}]; I also tried adding a trigger and set Trigger owner to the Guy you have to kill, and set Activation on not Present, which works for ingame modules to become active very good for me. And in "On Activation" i put: [] exec "Missionflow.sqs"; // and also again with the Player Variables [a] exec "Missionflow.sqs"; [b] exec "Missionflow.sqs"; [c] exec "Missionflow.sqs"; [d] exec "Missionflow.sqs"; Hope someone can Help me, didn't found anything that seems to work for me so I'm asking here now.
  2. Hey Everyone, So I just got a new Arma 3 server up and running, and I wanted to invite the community to come check it out. Please feel free to join, hang out and get tactically nerdy. As we stop the Insurgency! Now to make everything easy for everyone with trying to locate the mods. I created a Steam Collection for the mods being used on the Black Team One: RHS/CUPS BMR Insurgency server. If you have any issues make sure you have all the correct mods installed and loaded first. A lot of issues I've seen is people are missing RHS or SMA. Please feel free to hit me up on steam Unknown Gambit but I go by Hoyt Carrie in game. Server info: Server Name: Black Team One: RHS/CUPS BMR InsurgencyIP: 63.141.249.146Port: 2342Slots: 50Game Mode: Modded version of BMR's Insurgency on X-cam Taunus: https://forums.bistudio.com/forums/topic/171050-bmr-insurgency/ Mod Collection: http://steamcommunity.com/sharedfiles/filedetails/?id=906947908 Required Mods: @CBA @Cup Terrians Core @Cup Terrains Maps @Cup Weapons @Cup Units @Cup Vehicles @TRTK [TRYK's Multi-play Uniforms] @RHSAFRF @RHSUSAF @RHSGREF @RHSSAF @Specialist Military Arms (SMA) v2.7.1 @X-Cam Taunus Ver 1.1 @ASR AI3 @Enhanced Movement @Clafghan Optional Mods: @JSRS @BLASTCORE @Enhanced Soundscape @DynaSound 2 @Advance Rappelling @Advance Sling Loading @Advance Towing @Advance Urban Rappelling Removed: @Jonzie Mega Mod Pack (Due to issues with Workshop. Might come back) Updated: I added Clafghan and Insurgency for that Map into the Rotation as well. Coming Soon: Task Force RadioNew Ranking System Alive (TBD)New Maps (TBD)New Missions to play
  3. Hello Everyone! I'm making a mission, and i want the player use the face/skin texture i selected in the editor. But it uses the custom player face instead. Is there any way to fix this? Draoth
  4. Hello, I am working on a PVP scenario where only OPFOR is allowed to respawn. The synopsis of the scenario is that a team of 18 OPFOR soldiers with basic gear has to track down and kill two BLUFOR spec ops soldiers with advanced gear. Once the BLUFOR is killed, the mission is over for both sides. I've managed to set up everything correctly apart from the respawns. I've tested it out; BLUFOR has no respawn point, but instead just respawns on OPFOR's respawn point. How should I script it so that BLUFOR is refused to respawn? Keep in mind that both sides consist only of real players.
  5. Hello everyone. I am trying to make a Multiplayer mission where people have to get teleported into a vehicle. I got a Blackfish called "unit1" flying, and I want every player in the server to be teleported into that vehicle. I have tried many different command but nothing seems to work. I thought "moveInCargo" should work, but that only works on local units, not remote units. Things that I tried: {_x action ["getInCargo", unit1]} foreach allPlayers Player1 moveInCargo [unit1, 1]; Player2 moveInCargo [unit1, 2]; Player3 moveInCargo [unit1, 3]; Player4 moveInCargo [unit1, 4]; Player5 moveInCargo [unit1, 5]; Player6 moveInCargo [unit1, 6]; Whatever I try, only me (The host) gets teleported into the vehicle. Other players don't. Does someone know how to make this work?
  6. I'm building a multiplayer mission using ALiVE, ACE, and some other mods, which is intended to be a big 3 way factional battle, with BLU_F and OPF_F to be playable while leaving IND_F unplayable as the initial occupying force to be conquered. So far so good, still tweaking some of the objective modules and taors for balance, but I already have the support and logistics all functioning well thanks to lots of reading and studying of wikis. I can call in artillery and airstrikes just fine, and so on. I must admit, however, that I'm not a very good scripter and I often have to look up how others have done things in order to figure out something. My understanding of it, in regards to everything from syntax to eventhandlers is very very limited, so thanks in advance to this great, very knowledgeable community. So here's my question: I currently have players spawn in solo, ungrouped to any AI, but I want the player to have the option, with a radio command, to spawn a group of their choosing (one of the presets from the cfgGroups list I suppose), and have it join them under their command. As a second feature, when the unit the character is playing dies I would like the player to have the ability to respawn in the group, taking control of one of the other AI in his squad, which I generally already know how to set up IF the units are already set to be "playable" (respawn = 4; in description.ext), but have no idea how to set up if we spawn them ingame as initially unplayable AI. I have no idea how to do this. I have tried other options, such as just linking an unplayable group to the player in the editor, or even making all the units in the group playable for selection, but I ran into various issues, such as not being able to command the group if I selected a unit other than the leader to play from the lobby (obviously) or just having too many units spawning all over waiting for another player to join in order to command them all, or if I want to play ungrouped I'd have all these hangers on. All these issues I felt severely limited my options and I was getting rather frustrated. I finally decided, that for what I want to do, giving an initially solo player the chance to choose a group to command or none at all would be a fun option for the player and lead to a great range of diverse outcomes for how they want to experience the mission. Please bear with me and my lack of knowledge in this, and any help that leads to a solution is greatly appreciated.
  7. allnamesaretakendammit

    [PVP] Manhunt (4 vs 40 (!))

    Hi everyone! I'm pleased to announce that my very first MP mission is complete. I'm uploading it exclusively here on the forums so I (hopefully) can get some feedback from more seasoned players and mission makers. Before I begin describing it, here are the dependencies: CBA CUP Core CUP Weapons CUP Units CUP Terrains (takes place on Altis, but uses Arma 2 objects) NIArms Core NIArms MP5 pack TRYK's Uniform Pack About "Manhunt" takes place during the nighttime (the daytime pictures in this post is just to better illustrate what the units look like). A team of up to 4 BLUFOR equipped with silenced weapons and NVGs are dispatched to battle up to 40 OPFOR units with mere flashlights. BLUFOR can choose to either survive for 60 minutes "gathering intel about the area", or complete a side quest involving the destruction of an asset to end the mission. OPFOR squads must decide whether they shall defend the asset or go manhunting. If all BLUFOR units are killed, OPFOR wins. If time (60 minutes) runs out or the asset is destroyed, BLUFOR wins. > BLUFOR's side quest is to destroy this anti-air radar. OPFOR's side quest is to (unsurprisingly) protect it. BLUFOR: BLUFOR consists of 4 player slots, each with different attributes: The UAV Operator is the team leader, and has access to unlimited UAVs to help the team avoid incoming soldiers hunting for them. The Marksman is in charge of taking out units from a distance before they get too close to spot any members of the team. The Recon Scout (AT)'s role is to scout enemy vehicles and destroy them. NOTE: he does not get unlimited rockets. The Missile Specialist (AA)'s role is to defend the team against the enemy's search helicopter. He does get unlimited rockets. > The BLUFOR team. BLUFOR's Hunter acts as their arsenal and is used for transportation and rearming. > The BLUFOR units are equipped with HK MP5-PDWs and silenced M9. > ... apart from the Marksman, who is equipped with an MXM with a Nightstalker scope. OPFOR: OPFOR consists of up to 40 players and 7 squads. Squad 1 to 4 consist of 8 men each. Equipped with Katibas, Optic Reflex scopes and flashlights Team Leader, 6 Riflemen and 1 Combat Life Saver Squad 5 consists of 2 pilots, who's role is to fly the search helicopter Equipped with Sting 9mm with flashlights The helicopter is unarmed. Squad 6 is the mechanized infantry, and consists of 4 men. Equipped with Sting 9mm, ACO scopes and flashlights. One engineer, three crewmen 1x Vodnik with 2xRPKs Squad 7 is the mortar squad Equipped with dismantled tripods, Katiba Carbines with ACO scopes and flashlights. The team also has access to 2 unarmed UAZ, 4 Quad bikes, 2 Zamak transports, an ammo truck and a fuel truck. > This is what most of the OPFOR units look like. > The search helicopter > Vodnik > The vehicles OPFOR can use. Balance To balance a game mode where one team is this much larger than the other was definitely the hardest part, and it may be subject to change based on your feedback. Here are a few notes regarding balance: Vehicles do not respawn. It is extremely hard to spot the BLUFOR soldiers when they've found a good hiding spot. This is the reason I added a search helicopter to help ground units track them down. To counter it, I made one of the BLUFOR units an AA missile specialist. The missile specialist can only carry one missile at the time, so I made them infinite (as long as the Hunter is still alive). OPFOR gets a chopper – BLUFOR gets UAVs. BLUFOR gets a RHIB boat to allow for an alternative route onto the island where the side quest is located. To counter this, the OPFOR also gets RHIB boats to intercept them. OPFOR spends longer time getting out of base than BLUFOR. This gives BLUFOR the chance to quickly lay down a tactic before OPFOR are ready on the battlefield. To prevent BLUFOR from rushing the island, OPFOR has been given a Vodnik 2xRPK. Adding a Vodnik was the reason I made one of the BLUFOR units a Recon Scout (AT). All BLUFOR units originally had high powered weapons, and/or access to them in the Hunter. Now, only the marksman has a high powered rifle; the rest have MP5-PDWs. This gives OPFOR a greater chance at coming close to BLUFOR. To prevent BLUFOR from feeling safe on rooftops, an M252 mortar was added. The mortar team spawns with only the tripod; the tube itself is located further away. This is to prevent OPFOR from mortaring the BLUFOR spawn location at the start of the game. The mortar is not replenishable, so OPFOR must use it wisely. Can also be used to light up the battlefield. OPFOR currently has unlimited respawns. I may remove the ability in future version. Some teasers: > A typical scene in this game mode > Danger close > CSAT search helicopter patrolling the anti-air radar > BLUFOR using their RHIB _________________________________________________________________________________________________________________________________ Looking forward to see your feedback. Don't hesitate to let me know if something doesn't work properly when you play it. I also want feedback regarding balance issues. Thanks for reading my post! For those of you who choose to download and play the mission: I hope you enjoy it! DOWNLOAD LINK: https://ufile.io/01obm
  8. Hello guys! I would like to show You my latest creation. Feels best when played with 8-19 players. About mission: It's March 2017. USA can't simply stand aside and watch how Russia is being called 'Hero' in mass media because they're the only one to support Takistan's government in their fight. We will strike today to show everyone that USA is still monitoring the situation. Your main objective will be to kill the regional ISIS leader Abdul Ak-Sahrim who is hiding inside a big town in far east. Feels easy huh? Well it is not because enemy has a lot of outposts between our forces and their leader. Not even counting armored support. Their vehicles and weaponry are mostly outdated but still deadly, you should know that best. We need to regain respect on the world and when you succeed we will commence another operation, this time on a big scale. Don't dissapoint us son. Requirements: RHS CUP ACE3 (if you do not want to use ACE, just install it and disable all its functionality) ACE3 compatibility plugins (optional but you should have them anyway) Task Force Radio now Download: Steam - http://steamcommunity.com/sharedfiles/filedetails/?id=886207077 Github - https://github.com/GodlikeRU/GoDlike-ARMA-3-missions Screenshots: Best viewed on steam workshop page. Feedback/Bug Reports: Please tell me if you enjoyed my mission (or not). You can contact me here or on steam. I tested this mission with my friends and I can't find any bugs now. Tell me about any bugs you may encounter. I'll try to fix them ASAP. I did my best to correct any mistakes in text but im not a native english speaker, please tell me if you find any. If I see that You enjoyed my mission I will make next parts in future. Regards
  9. Hello everyone. I am trying to make a small minigames to play with my friends. The gamemode is pretty much the same as battle royal. A FFA arena where you have to kill everyone, and stay in the zone that is shrinking constantly. I got everything working now except for the triggers. My script is creating 2 triggers at the same place. The first trigger is getting activated when "ANY PLAYER" is "NOT PRESENT". It will then give you a hint that you should return to the zone in 10 seconds. The second trigger is getting activated when "ANY PLAYER" is "NOT PRESENT". It will then kill the player if he is out the zone and the "TIMEOUT" has reached 10 seconds. When testing this with my friend I found out that it is working correctly for me, but not for my friend. The triggers doesn't affect him. Could anyone please help me out? trg1 = createTrigger ["EmptyDetector", getMarkerPos "Marker1"]; trg1 setTriggerArea [500, 500, 0, false]; trg1 setTriggerActivation ["ANYPLAYER", "NOT PRESENT", true]; trg1 setTriggerStatements ["this", "hint 'You have 10 seconds to get back in the zone!'", "hint ''"]; trg1kill = createTrigger ["EmptyDetector", getMarkerPos "Marker1"]; trg1kill setTriggerArea [500, 500, 0, false]; trg1kill setTriggerTimeout [10, 10, 10, true]; trg1kill setTriggerActivation ["ANYPLAYER", "NOT PRESENT", true]; trg1kill setTriggerStatements ["this", "player setDamage 1", ""];
  10. Gents, New version (1.63) of "Night Tigers", a multiplayer cooperative mission centered on night operations in Vietnam has been worked up. You can find it here: http://steamcommunity.com/sharedfiles/filedetails/?id=907850156 I'll be posting it up on the Armaholic website as well. (For anyone new to Arma, Armaholic is a wonderful repository of all things Arma related; missions, scripts, tutorials, ad infinitum. By all means check it out. http://www.armaholic.com/ Mission info can be found below: Coop: recommended 2-4 players (will allow 9) (single player not tested) Requirements: ArmA 3 Unsung Vietnam War mod, CBA_A3, Apex DLC April, 1967. You are part of a MACV SOG team which has been ordered to locate and destroy several NVA AA guns in the "Muah Quah" area of operations located on Doung Island of the Rung Sat Special Zone, Vietnam. Mission features: (1) the ability to respawn at one of three points in the event the player(s) suffer any misfortunes in the field. ( Make sure you spawn at HQ initially.) (2) Highly immersive soundtrack which lends itself well to the eerie movement through the waterways and jungle. (3) Numerous sound effects add to the atmosphere. (4)Full arsenal availlable to kit out with; both at Headquarters and Outpost Kable and scattered throughout the map. (Look for U.S. ammo crates in and around enemy installations and emplacements.) ( Bring LOTS of flares; you're gonna need 'em) (5) On call artillery fire support. (Accessed via the "0" (ZERO) key at the top of your keyboard. Scroll wheel options availlable after that. (6) Option to insert/remove earplugs at any point in the mission. Make certain you take one of the PBRs parked at the "River Rat Boathouse" once you've seen the general and kitted up. (7) Random enemy patrol script ensures replayability. (8) And thanks to Sergeant Dennenboom, an "official" end to the mission. Mission Notes: It is VERY important to ensure before beginning that your sliders for "Effects" and "Music" are set to at least 50 percent. (Mission sounds/music based on those levels.) It is recommended to set the "Radio" slider to zero to reduce/eliminate annoying AI chatter. It is also very important to the flow and immersion of the mission to begin at Headquarters, see the general to get your orders and then take one of the PBRs located at the "River Rats Boathouse" to begin the mission. Read the briefing and check the map out to get a feel for what you need to do and how you want to go about it. It is suggested also to disable all AI in the slots not taken up by a human player Known Bugs: (1) "image: cluster.jpg" not found sometimes appears at mission selection screen. (I've apparently not the intellect to make this "go away".) (2) "no entry cfg weapons. NAM_M16'" (problem with the Unsung Delta mod Requirements: ArmA 3 Unsung 3.1d Vietnam War mod, CBA_A3. and the Apex Arma 3 DLC Credits: My thanks to Kronsky, Nemesis, and Grumpy Old Man and Sushi for their scripting genius. Without their tools, this mission would have been MUCH the lesser. And to Kegety for his PBO/De-PBO tool. And special thanks to Sergeant Dennenboom of "Elite Warriors" for sharing his knowledge and time with me. And lastly, but not leastly (is that even a word?) big thanks to the entire crew behind the "Unsung Vietnam" mod. They have rekindled my enthusiasm for Arma 3 ! Urban Patrol Script Version: 2.2.0 Author: Kronzky NRE_earplugs.sqf Author: Nemesis GOM - Ambient AA :Author:Grumpy Old Man sush_pow_script.sqf Author: Sushi VVS Virtual Vehicle Spawner script by: Tonic Regards, Oddball
  11. Hello all, I am working on a multiplayer scenario I've called "Hide and Seek": Opfor has to find and kill the Blufor units within x minutes, while Blufor has to stay alive until then to win. If Opfor manages to kill Blufor, it's a win for them but a loss for Blufor. If Blufor manages to stay alive throughout the countdown, Blufor wins and Opfor loses. To avoid stalemates and extreme "camping" on Blufor's end, I've added a little side quest where Blufor shall be able to trigger a "mission complete" ending by blowing up a specific Opfor vehicle. This dhall, of course, trigger a "mission failed" for Opfor as well. I struggle to find a way to script/trigger this, as I can only achieve one mission ending at a time. Can anyone with more experience please help me script this properly? Thank you!
  12. Hallo, i had an idea for a Multiplayer Editor because i want to Male Missionsziel Witz my Friends, i think Mandy other people want ist top.
  13. So I've been away from Arma for a bit now and just getting back into editing however I'm having a bit of a problem with a addaction working in multiplayer. What I want to do is have an addaction on a player (h1), and have it so another player (s1) when using it, changes a variable which will then enable simulation on that player (h1) from a trigger (hide and seek gamemode :D ). I have it working when I'm s1 but whenever another player is s1 the addaction doesn't work. This is what I have on the addaction unit (h1) nul = [this] execVM "test.sqf"; and this is what in the test.sqf h1 addAction ["<t color='#FF0000'>Catch!</t>",{varhh1 = 1},nil,1,true,false,"","_this == s1",2,false] call BIS_fnc_MP; s1 is the player who uses the addaction. and varhh1 is the variable then I have a trigger set so when varhh1 == 1;. h1 enableSimulationGlobal true;. Any help would be appreciated!
  14. OPERACIÓN ARDILLA Creada por Darius _______________________________________________________________________ STRATIS 09 de Septiembre de 2032 a las 18:54 horas Misión en Español El General Akhanteros de la FAA perdió su helicóptero que le iba a llevar a Altis, gracias al bombardeo de esta tarde la OTAN ha destruido casi todas las aeronaves de la FAA. Ahora él se ha escondido en su base militar al este de Agia Marina, vamos a asaltar esa base militar, acabar con los refuerzos y volver al campamento. Objetivos Destruir los refuerzos Matar el general de la FAA (Objetivo principal) Escapar de la zona Ejecución La operación se basa en una táctica de "golpe de mano" (entrar, cumplir objetivo y salir muy rápido). Alfa, se encarga de colocar cargas explosivas y emboscar los refuerzos que vienen por la carretera de la base aérea, la carretera que viene del Campamento Rogain y la otra carretera que viene desde Mike-26. ¡Destruyan todo lo que pase por esas carreteras! Los equipos Bravo y Charlie asaltarán la base militar. Salir de ahí e ir a un lugar seguro. _______________________________________________________________________ Co32_Op_Ardilla_v25.Stratis.pbo mega.nz Steam: Operación Ardilla en Steam
  15. Hi, This is my first MP script attempt and I'm having a little trouble coming up with a gameplan for coding. I'm creating a Land Nav script...works SP and now trying to convert to MP. Here is the summary: 1. Player initiates Land Nav course via addAction() scrollwheel 2. Server generates a unique land nav course by choosing random from pre-set points in an array (must be initialized somewhere) 3. Player receives grid coords which are added as a task 4. Player runs off and finds a point...logs it via addAction()...possibly unlogs it also if they change their mind 5. After finding all points player returns to start and finishes course via AddAction() option 6. Point names are compared to the answer key and player receives a score 7. Multiple people can be doing this at the same time...all with unique courses I am having trouble coming up with the MP logic/gameplan for the coding. Here are my questions: 1. What is the best way to pass the grid coord data from the server to the client (and back to server at the end)? Grid coords and logged points will be stored in an array. 2. Where should I initialize my master list grid coords (contains the coord and the alpanumeric designator)...it's the answer key 3. How can I ensure the answer key from #2 is hidden from the client and not in plain text in a client-side script file? I think this is simple but w/o experience in MP scripting I'm still lost. Short example code would be great! Thanks.
  16. So, i'm making a mission in which i used the Unit Capture and Unit Play functions so a pair of helicopters could land on a clearing in a dense forest, but i want it so that when they get off the chopper they head to an officer and the briefing starts, but i'm trying to setup a trigger that detects alive players but if i set it up to detect all 10 slots, then if mission is not full it wont start, so i want to know if you guys could help me, i remember it was something like: if !alive UnitName or _____ Any ideas? Thanks a lot! :)
  17. Hey there! I've recently formed a new group, AB-12, designed for semi-casual Arma 3 players looking for a group to play with in Wasteland. I'm hoping to create a group dedicated to intense teamplay, and playing Blufor how it's meant to be played, working towards objectives as one. I'm looking for english speaking players who are team-focused, any ages and any experience levels - whether you've clocked 300+ hours or just cracked the game open, it doesn't matter, you're welcome. If you're interested, please search AB-12 on the Arma Units tab, or follow this link directly - https://units.arma3.com/unit/ab-12. Thanks for reading, Elliott AB-12
  18. The 64-bit mode included in the update fixed the 3fps issue for me and improved performance a bit but it broke my multiplayer. Whenever I start in 64-bit mode, there are no servers showing for me in the multiplayer server browser. If I alt-tab and use the launcher to look for servers, it gets stuck in the "Arma 3 Apex" loadscreen as I try to join a game. It is completely fine if I start the game in 32-bit mode however, except for the sluggish performance. Is anyone else experiencing this? Any ideas on how to fix it? I disabled my antivirus just in case it was messing with something, but It did not fix the problem.
  19. Hi ! For some reason, when a player disconnects, gets kicked, crash, he is replaced by an AI... I found this in the Init, would it be related to it ? OnPlayerConnected {If (_uid In ID_Players) Then {} Else {ID_Players = ID_Players + [_uid];};}; Is there a way of not getting an AI everytime a player disconnects ? Thx !
  20. I want to create a task that is not bugged on a dedicated multiplayer server. Is it enough to place a trigger make it blufor present and put isServer && this in the condition bar, then synching that trigger to task modules? Or do i HAVE to use scripts to create tasks?
  21. Hi, I've created some MP maps, 21 so far, using the RHS MOD on Tanoa and Stratis with Eden Editor. When I play the maps, I don't see my player on the "map" or friendly bases. Can this be fixed? Also, how can I add player ICONS so I can see my teammates during play? I have many more questions but I wont overwhelm this post. But one more is...I've created Red/Blue bases with a neutral base in the center. I set the trigger so the neutral can be taken by either side and go back and forth as may happen. After the neutral is captured, is it possible to make the next base, that belongs to the opposing side, appear on the "map" as the next target? Thanks for any assistance.
  22. I have made a sector control mission. It worked previously, but I made minor changes and now it doesn't work.It only really started once I added in the system where the re spawn on the sectors changes owners depended on who owns the sector. What I mean is when I load up the game on localhost, it loads, asks me to re spawn, and then goes back to the loading screen, displaying unnamed mission, and I am stuck forever. Any ideas? I will post the mods it needs and you can see for yourself. Mods used- CUP_AirVehicles_CH53E CUP_AirVehciles_AW159 A3_Missions_F_Curator CUP_TrackedVehicles_M113 CUP_Creatures_Military_USArmy CUP_TrackedVehicles_ChallengerII sab_CU CUP_WheeledVehicles_LR CUP_WheeledVehicles_Coyote CUP_WheeledVehicles_Ridgeback CUP_AirVehicles_AH64 CUP_WheeledVehicles_Wolfhound CUP_TrackedVehicles_FV510 CUP_Creatures_Military_BAF CUP_AirVehicles_Mi8 CUP_TrackedVehicles_2S6M CUP_Creatures_StaticWeapons A3_Air_F_Heli CUP_AirVehicles_Ka52 CUP_Creatures_Military_Russia CUP_TrackedVehicles_T90 A3_Soft_F_Exp CUP_WheeledVehicles_UAZ CUP_WheeledVehicles_BRDM2 CUP_WheeledVehicles_BTR90 A3_Weapons_F A3_Structures_F_Households A3_Modules_F CUP_CAStructures_E_Misc_Misc_Market CUP_CAMisc CUP_Misc3_Config CUP_Weapons_AmmoBoxes A3_Characters_F A3_Structures_F_EPC A3_Supplies_F_Heli A3_Static_F A3_Structures_F_EPB A3_Soft_F A3_Structures_F_Ind A3_Structures_F_Heli A3_Structures_F_EPA A3_Structures_F_Mil A3_Structures_F
  23. Scenario Description Atmospheric infantry coop combat patrol. NATO forces clear up lingering counterrevolutionary guerrillas after the Altian civil war. Check the Scenario Info diary-tab for specific information on how to use any additional features in the mission. Features Intelligent randomization of the play area: possible enemy locations and various area features are randomized for every playthrough, keeping you on your toes every time you play Enemy amount scaling: the number of enemies scales based on player amount, allowing for a wide range of possible player amounts with little change in difficulty Join in Progress, with no respawns Headless Client support Mod support without dependencies: supported mods are automatically detected, with configuration and loadouts applied whenever appropriate. The mission stays entirely dependency-free Downloads Steam Workshop Github Supported mods ACE 3: includes configuration and additional gear if you are running applicable ACE Modules, as well as disabling BI Revive in favour of ACE Medical Task Force Arrowhead Radio: includes automatic radio setup, with squad-specific primary channels and an alternate channel for leaders, and an extended events system that makes AI hear you speaking Killoch's Multinational Pack: play as a finnish jaeger team if you have this pack! Recommended mods if playing finnish jaegers: NIArms AK pack RHS USAF RHS AFRF Bug Reporting and suggestions Please report any bugs, comments, or suggestions you have either here or on my Arma Github so I can keep making it better! Please specify which mission the issue is about if you go on Github. Updates v1.0.8 Tweaked ACE settings v1.0.7 Fix for BI disconnect bug: https://feedback.bistudio.com/F53499 Altered transport helicopter waypoints to maybe influence the AI pilot not to be a complete idiot Added task popups for getting in the transport helicopter Modified ACE options v1.0.3 Fixed error in gear switching logic Fixed Assistant Autorifleman ammo for optional AR selection Fixed error in extra TFAR AI hearing logic
  24. I got this to work (at least partially): in the init: if (isServer) then { addMissionEventHandler["PlayerConnected",{_this execVM "playerInit.sqf"}]; }; in playerInit.sqf: thisPlayer = objNull; playerId = (_this select 4); for "_x" from 0 to (count allPlayers) -1 step 1 do { if (owner _x == playerId) then { thisplayer = (allPlayers select _x); }; }; thisPlayer = _this publicVariable "thisplayer"; publicVariable "playerId"; the Id is correctly transfered the problem is thisPlayer returns nothing the if never returns true so either the player is not in the list allPlayers at the time or i have no clue I tested everything seperately and everything works so Ihave nu f*king idea why it doesn't work Please help thanks in advance
  25. I'm making a guerilla style coop mission the code works well in single player but as soon as i go on a Server not verry much happens I plan on having a persistent server witch initializes with the start so i only have JIPs I have been trying to just execute code on new Players either by 1. writing them in a list and updating it every 0.1 sec. or (and looping thrue them later) 2. by (Player) execVM ... i tried playing with waitUntil it doesnt seem to have any effect (apart from delying the script) i failed with both attempts there must be something im missing maybe locality? here is my code (you can also Just answer my question im shure its a simple one for some of you) : 1. : while {true} do { for "_thisPlayerNum" from 0 to (count allPlayers) do { _thisPlayer = (allPlayers select _thisPlayerNum); if (!isNil "_thisPlayer") then { if (alive _thisPlayer) then { if (!(_thisPlayer in myLivePlayers)) then { // executed on Player spawn //waitUntil {alive _thisPlayer}; myLivePlayers = (myLivePlayers + [_thisPlayer]); _thisPlayer setCaptive true; } else { if (!(alive _thisPlayer)) then { // executed on Player death myLivePlayers = (myLivePlayers - [_thisPlayer]); if (_thisPlayer in HostilePlayers) then { TimeLastShot = TimeLastShot - [(TimeLastShot select (HostilePlayers find _thisPlayer))]; HostilePlayers = HostilePlayers - [_thisPlayer]; }; }; }; if ((_checkNewPlayer != (count allPlayers)) and (_thisPlayer in myLivePlayers)) then { _thisPlayer execVM "GW_3_0_PlayerConnected.sqf"; }; _checkNewPlayer = (count allPlayers); }; }; }; sleep 0.1; }; 2. : while {true} do { if ((count allPlayers) > 0) then { if (_checkNewPlayer < (count allPlayers)) then { waitUntil{isNull (allPlayers select ((count allPlayers)-1))} (allPlayers select ((count allPlayers)-1)) execVM "GW_3_1_Main.sqf"; } _checkNewPlayer = (count allPlayers); }; sleep 0.1; }; I would verry much appreciate your help this holds me back for a week now THX in advance
×