Jump to content

Search the Community

Showing results for tags 'squadleader'.



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 1 result

  1. 1# What happens is when you die one of the Ai in your squad assumes command, usually this happens until Player has repawned and you hear a VO for PC saying assuming command again. However in my new MP mission i was testing i died along with my squad in a chopper crash, and when i respawned with them i lost the Squad Leader role to the Ai. This also happened today when i was playing Zeus with a friend, he died and the Ai took command of the squad, as the Game Master in Zeus mode i tried to regroup everyone back to him, but wasn't able to. I haven't really noticed this being a big problem with past MP coop missions ive made. Revive is on and Respawn custom is used. Is there a reason this happens? or is it a bug? 2# Also similarly related..in another mission i am making, as a subordinate to an Ai Squad Leader, if you die you can choose your spawn positions, i placed some Ai with scripts that will add them to the player. In that group i defined a new group for Player and then used the join player command for the Ai which the Addaction was attached to, these guys would run off towards the Ai squad leader which i was a member of his team. I know i can use the other command 'selectleader player' but that would make me the squad leader of my current squad, which if you had spawned kms away from, i want the Player to be able to form up a new squad by recruiting some Ai who are idle in those spawn areas. So how do i leave the previous group? as it seems grp1 = group player in the script doesnt seem to form a new group. I dont know unit the player will take over so i cant use grp1 group this; in the units init. *Update* Half Solved this one; i need to use [player] join GrpNull; However is there a way i can make the groupid in the script unique for each new player? who might do this? This is new latest version of the basic script _X = cursorTarget; if (NewG==0) then { [player] join grpNull; Grp1 = group player; NewG=1; }; [_X] join player; _X removeAction Adder; This works fine for one player. One way it could work is giving the default units all a variable name and use a switch code method to and paste in this script for each one- but with a different groupId assigned to those that do recruit new Ai into a separate squad. This this the only way to do it or an easier way? This is what i ended up with _X = cursorTarget; if (player == VietC1 && NewG1==0) then { [player] join grpNull; Grp1 = group player; NewG1=1; }; if (player == VietC2 && NewG2==0) then { [player] join grpNull; Grp2 = group player; NewG2=1; }; if (player == VietC3 && NewG3==0) then { [player] join grpNull; Grp3 = group player; NewG3=1; }; if (player == VietC4 && NewG4==0) then { [player] join grpNull; Grp4 = group player; NewG4=1; }; if (player == VietC5 && NewG5==0) then { [player] join grpNull; Grp5 = group player; NewG5=1; }; if (player == VietC6 && NewG6==0) then { [player] join grpNull; Grp6 = group player; NewG6=1; }; if (player == VietC7 && NewG7==0) then { [player] join grpNull; Grp7 = group player; NewG7=1; }; [_X] join player; _X removeAction Adder; It seems to work, just need to test it out with a friend but should work.
×