dazza
Member-
Content Count
22 -
Joined
-
Last visited
-
Medals
Everything posted by dazza
-
Adding ForceWalk to Player Group AI
dazza replied to dazza's topic in ARMA 3 - MISSION EDITING & SCRIPTING
{ _x forceWalk true; } forEach units player; player forceWalk false; Not elegant, but worked like a charm. -
Hi, I'm very new at coding, and struggling with this command. Trying to addaction a SLOW and NORMAL speed for my AI whenever I want they to proceed slowly to a waypoint. Originally I had it working with Setspeed "Limited", but I was playing with the idea of forcing them to walk slow while in DANGER mode too. I discovered ForceWalk might be my solution, but whenever I try it, I get "...Type Group expected Object File myspeed\SLOW/sqf..., line1" as an error. Can I please get someone's eyes to look at it and figure out where I'm going wrong please? Much appreciated! I've currently got (bold are folder names): config.cpp class CfgPatches { class Myspeed { units[] = {}; weapons[] = {}; requiredVersion = 1.0; requiredAddons[] = {"Extended_EventHandlers"}; }; }; class Extended_PostInit_EventHandlers { Myspeed_Post_Init = "TAG_myAddon_Post_Init_Var = [] execVM ""Myspeed\init.sqf"""; }; init.sqf player addaction ["SLOW","myspeed\SLOW.sqf"]; player addaction ["NORMAL","myspeed\NORMAL.sqf"]; NORMAL _playerGrp = Group player; _playerGrp forceWalk false; SLOW _playerGrp = Group player; _playerGrp forceWalk true;
-
Adding ForceWalk to Player Group AI
dazza replied to dazza's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Wait! Nvm solved it 😄 -
Adding ForceWalk to Player Group AI
dazza replied to dazza's topic in ARMA 3 - MISSION EDITING & SCRIPTING
That's amazing mate! I've already plugged it in and tested it. Totally works! Is there a way to forceWalk my AI teammates without the forceWalk affecting myself (player)? Really appreciate your help and reply -
Antoine Flemming's Mediterranean Operations (NATOSOC + SCOJFC bundle)
dazza replied to antoineflemming's topic in ARMA 3 - ADDONS & MODS: COMPLETE
http://imageshack.com/a/img35/6273/dzxh.jpg Im assuming this is something like Tier 1 Operator or CIA SAD right? Any chance we can expect a similar loadout except this time with the Iranian faces? e.g. Middle Eastern Insurgent and/or Afghan Taliban? ;) -
(How to) create an ultra simple mod for AI "sneaking" movement
dazza replied to dazza's topic in ARMA 3 - MISSION EDITING & SCRIPTING
All good now! :D so bloody happy I finally made it -
(How to) create an ultra simple mod for AI "sneaking" movement
dazza posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
Hi all, I am looking to make an ultra simple .pbo mod which I want to just throw into my addons folder, without having to constantly script something in my mission folder everytime. The idea is simple. Everytime I spawn, I have two actions in my menu: - SLOW APPROACH - RETURN TO NORMAL When clicking on the "SLOW APPROACH", my AI group members will (this setSpeedMode "LIMITED";). This means when I give them a movement command to go somewhere, they will sneak/move cautiously and slowly to the location - as oppose to jogging there (in vanilla). I've already experimented with this by adding a couple triggers, assigning my group to setSpeedMode "LIMITED", and putting them in "stealth" or "aware" and I've noticed a huge improvement in the way they react to surprise 'contact' much better - as if they are more alert and ready for combat. I have the concept down, which is "this setSpeedMode "LIMITED";" but unfortunately I don't know how to write a script that will immediately initiate whenever I start a mission, nor making it an option in my action menu, nor knowing how to compile it into a .pbo addon. Can someone please help? Surely this cannot be too complex to make. All I need is some help coz I don't have any knowledge on how to make a .pbo. Thank you so much to whomever can help. Cheers! Daz -
(How to) create an ultra simple mod for AI "sneaking" movement
dazza replied to dazza's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Sorry guys, I've tried to make my own .pbo addon but I am completely lost. I managed to get as far as making sqf files (_playerGrp = Group player; _playerGrp setSpeedMode "LIMITED";) , and wrote in the player init "player addAction ["SLOW", "slow.sqf"]; player addAction ["NORMAL", "normal.sqf"]; and it works beautifully. However, now i am stuck as to how to get it to preinit without needing to write anything in the player init. And I am also stuck knowing how to make it into a pbo. Aside from that though, Ive used the limited movement in afew test missions and it completely changed my group's survival rate in a firefight. My group would be able to move very tactically and slowly - and when coming in contact - can react immediately and directly. An absolute charm when clearing out urban environments. 9/10 times, my group would clear an entire compound - which had a squad of enemy - and survive without a single casualty. When getting them to move naturally in vanilla, my group would sustain an average of 4 out of 10 men dying. Please help >.< Thanks! -
(How to) create an ultra simple mod for AI "sneaking" movement
dazza replied to dazza's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Sweet! Thanks for pointing me in the right direction atleast. I'll give it a shot and report back if I am stuck with anything I don't understand. Cheers! -
WW AIMenu (complimentary commands)
dazza replied to Windwalking's topic in ARMA 3 - ADDONS & MODS: COMPLETE
Bugger, sucks to hear :( Could it not be as simple as using the "setspeedmode" http://community.bistudio.com/wiki/setSpeedMode on the player's group? I dont have any experience in coding, but if it anything like commanding units in commander mode, or with waypoints, then the principle of ordering your group to move "tactically and silently" will work the same way. Unless your ideas are more ambitious? lol Keep up the great work anyways :) Just thought I might check if my idea was scrapped completely, or if it might still be WIP. Thanks! p.s. on a side note, if this works, maybe a setspeedmode to "FULL", and a command such as "Fall Back" might be fun to try impliment in the future too :P you know, a sudden "retreat" command. Anyhoo see what u think -
WW AIMenu (complimentary commands)
dazza replied to Windwalking's topic in ARMA 3 - ADDONS & MODS: COMPLETE
Awesome! Loving the mod mate :) Really sorry to bring this up again, but can you please include the "force limited speed" on infantry units? Coz when you get them to move to a location, they are able to sneak and cautiously approach it (rather than running there). Getting them to go "silent" doesnt get them to move slowly. -
WW AIMenu (complimentary commands)
dazza replied to Windwalking's topic in ARMA 3 - ADDONS & MODS: COMPLETE
Loving the mod. Can I ask if you could be able to include a small option too? I would love to see a mod where I can tell my team to set to "limited" speed whenever I want. The reason being that when I want them to enter an area slowly, or silently, they tend to run instead. When the fighting kicks off, then I can set them back to "normal" speed. But for when I want them to infiltrate, a limited option would be really appreciated. Hope others would agree as well. Thanks! -
that's what i mean; modelling the glasses as part of the balaclava. It's complicated, i know. Just seeing if that was a possibility was all
-
ARMA 3 Addon Request Thread
dazza replied to max power's topic in ARMA 3 - ADDONS & MODS: DISCUSSION
I have a simple request, and I hope some people might agree to this. Is there a way to create a small mod in which the time it takes to heal either yourself or a teammate is extended? It helps with realism as it takes a lot longer than 10 seconds to take a med kit from your backpack, tie a tourniquet or bandage around the wound etc. The time it even takes to heal a teammate who may have taken more serious damage will be much longer. Maybe something like 30-45 seconds to heal yourself, and 5-10 minutes to heal a downed teammate who has been incapacitated? I hope people would agree that this will totally reshape the realism experience and gaming experience, as you now have to take into consideration that you must secure a safe area to treat the wounded, and to ensure that it may take a long time for the medic to do his work (as in real life). Maybe this can be done? Im sure it cant take too long to script a repeating animation and extend the healing time for an incapacitated unit. Cheers! -
Awesome to hear :) I was curious, would the solution be that someone can mod a "glasses" item which appears as both glasses + balaclava? would that be possible? Keep up the amazing work btw, should have said that earlier
-
Are u going to default them with balaclavas as well?
-
Hi, curious question: is there a way to force your own team units' movements to limited speed (like you can do when setting waypoints in the editor)? My situation is that I would like my team to crouch sneak into position sometimes. But when I give them a position to move, then tend to shuffle and run up there, instead of slowly crouch walking up there. Is there a way I can toggle it on and off via the radio command menu? Cheers!
-
Do u think its possible to make bushy manly beards as well? :P
-
All in Arma (AiA) - TKOH/OA/A2/A1 merge with A3
dazza replied to .kju's topic in ARMA 3 - ADDONS & MODS: COMPLETE
Hi sorry I am alittle lost on how to get this mod to work. Does this require previous Arma2 game files in order to work, or only Arma3? And if it is just Arma3, where/how do I import Arma 2 custom islands? Cheers Thanks -
All in Arma (AiA) - TKOH/OA/A2/A1 merge with A3
dazza replied to .kju's topic in ARMA 3 - ADDONS & MODS: COMPLETE
I personally SO CANT WAIT for the Takistani Militia units models to be ported to Arma 3, along with islands like Razani and Helmand Province with Arma 3's enhanced lighting. Awesome work! Thanks for bringing that one step closer to happening :D Cant wait to fight back in Afghanistan (so to speak) -
How to make civilians as enemies, and equip them with weapons, some of the gear?
dazza replied to NeuroFunker's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Holy CRAP! THIS IS GENIUS! I just tested it out and it works like a charm. Exactly how I always wanted it to be. thank you so so much my friend! -
How to make civilians as enemies, and equip them with weapons, some of the gear?
dazza replied to NeuroFunker's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I was thinking about this. Is there a way that we can create a script, whereby we can list every Civilian clothing model, but attach a randomiser coding to it. Same goes with vests (e.g. plate carrier, Opfor rig, etc). Something like a probability code. So instead of making individual scripts per unit, we can just spawn an Opfor group, and let the coding randomise their kit everytime so no two Opfor will have the same clothing + vest + hat (optional). Surely this must be possible in the scripting. Can this be done? Opfor is spawned, has 1 in 7 chance of getting one of the Civie clothing, then has 1 in 5 chance of different vests, and then has 1 in 2 chance of getting a hat or not.