Doodle
Member-
Content Count
212 -
Joined
-
Last visited
-
Medals
-
wobbleyheadedbob started following Doodle
-
Gotta be the IA driving - 21st century tanks owned by a shed
-
Make a specific side trigger mines
Doodle replied to npk's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I dont think it does or didnt last time I treid it. -
[Release] Additional Features For User-Placed Markers
Doodle replied to conroy's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Looks intresting - if you can get this working on dedi with JIP then could be a great script - better than just seeing the usual x markers -
Spawn object facing specific direction?
Doodle replied to revv's topic in ARMA 3 - MISSION EDITING & SCRIPTING
thanks a lot -
Spawn object facing specific direction?
Doodle replied to revv's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Just came here about to post almost the same question. I have a script for a player (s3) to spawn a static weapon works fine but I would like to static to spawn in the direction the player (s3) is facing rather than the setDir. I tried removing the setDir but then anything spawned will always face north. Thanks in advance -
MHQVehicleInit - Vehicle Respawn script
Doodle replied to king_richard's topic in ARMA 3 - MISSION EDITING & SCRIPTING
@ Kabs - Pretty sure the texture issue is not the script - have a look round for an answer as I have seen other people with this issue on servers - I think there might be a setObjectTextureglobal - Do let us know here if you do find a solutiuon for the textures on a server as its something I would be intrested in knowing, @King Richard Script working perfectly - Just a thought I notice the addactions are available when you are in the drivers / passenger seat. Might be a nice option to choose whether acctions are available when you are in the vehicle or you HAVE to be outside of the vehicle. -
I am using the following to move an object to a vehicle marker box1 setPos (getMarkerPos "car_marker"); this works fine BUT will place the box in the middle of the vehicle. - Anyone help how I could move it to "just off center of maker" I know I can use the below if I want to move the box to the side of the vehicle box1 setpos (car modelToWorld [4,2,0]); but for mission it needs to be a marker is there something that can do similar but for a marker rather than object thanks in advance
-
MHQVehicleInit - Vehicle Respawn script
Doodle replied to king_richard's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Glad to hear you got it working - I am no script wizzard and you may want to double check with someone who knows more but I am pretty sure that the change I made above is correct - and I notice your script still has the _veh - I am not saying that this will solve your problem but on our version that has been working perfectly on aour dedi for a couple of weeks we have _MHQ MHQ_vehAction1 = { _this addAction ["Prepare truck for weapon","support\scripts\truck_initv2.sqf", nil, 1, false, true, "", "alive _this && {speed _this == 0}"]; publicVariable "MHQ_vehAction1"; }; -
MHQVehicleInit - Vehicle Respawn script
Doodle replied to king_richard's topic in ARMA 3 - MISSION EDITING & SCRIPTING
@ KingRichard - All working fine on our dedi, I did notice the couple of typos and amended that at this end. Really like the script! - Though now I see an option for multiple vehicles it's got me thinking. @Kabs - cant help with the scripts running after the vehicle has respawned as we dont use that option. A couple of things in your code I "THINK" might be wrong are Change youe respawn time to at least 20 sec - 1 sec might be too short as the vehicle may just keep respawning and the getting destroyed as the od wreck has not had time to delete. Also I think that the below code should be MHQ_vehAction1 = { _this addAction ["Prepare truck for weapon","support\scripts\truck_initv2.sqf", nil, 1, false, true, "", "alive _this && {speed _this == 0}"]; publicVariable "VEH_vehAction1"; }; IN RED MHQ_vehAction1 = { _this addAction ["Prepare truck for weapon","support\scripts\truck_initv2.sqf", nil, 1, false, true, "", "alive _this && {speed _this == 0}"]; publicVariable "MHQ_vehAction1"; }; You dont need to name the vehicle in the script only name the vehilce in the editor - in the vehicles NAME field. Sorry I can tbe of more help -
Multiplayer Dedicate Message
Doodle replied to Doodle's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Just tried this on dedi Currently trigger COND is this Everything works perfectly. Items spawned - messages broadcast across network If I change the COND to vehicle player == s5 then nothing happens at all. Surely the script is dedi server friendly already as it works when the trigger is not limited to a specific player? Thanks (confused) in advance. -
trigger activation vehicle height
Doodle replied to Doodle's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Thanks for this - not quite following in the ---your code here--- bit. Is this a list of vehicles that I want to activate the trigger ca1 car2 etc? the vehicles that will be in the list are all "empty" editor placed vehicles - doesnt that make them "no side" so cant check for WEST? the route would be - helo13 flown by human players will lift damaged car2 and drop it on repair pad activates repair script. Then after a set time helo can pick up repaired empty vehicle The only way to get the vehicle to repair pad is by helo list -
Wonder if anyone can help - I have an editor placed trigger that I need to activate only if any of an editable array of vehicles enters it - eg car1 or tank5 or helo13 etc and also only when the vehicle touches the ground The idea being the damaged car1 gets dropped on repair pad by helo13 but I dont want helo 13 to set off the trigger when it is hovering above the repair pad dropping off car1. but if helo13 LANDS on the pad then it would trigger it, I think it might be something like "car1 in thislist OR tank5 in thislist" to count the vehilcles but not sure about the height check - I did see there was a new ARMA 3 command "touchingtheground" might be good thanks in advance
-
MHQVehicleInit - Vehicle Respawn script
Doodle replied to king_richard's topic in ARMA 3 - MISSION EDITING & SCRIPTING
@King Richard Script working very well on dedicated.! -
Multiplayer Dedicate Message
Doodle replied to Doodle's topic in ARMA 3 - MISSION EDITING & SCRIPTING
OK Guys Firstly thankyou for all the assistance at last we got there and now everyone can see the messages and I learnt a lot along the way - though some things I just cant get my head round I knew that it was locallity but for the life of me couldnt work it out. - of course as soon as one thing works then I discover something else that would be nice to change but not essential I do have another queery - not that its a major issue but I would like to know I have several radio triggers placed in the editor that anyone can access. So for example in the above player S5 can deploy a mortor by pressing 0 0 5 Radio Echo but also if player s3 activates the trigger it will deploy a mortor at S5's position I am guessing it is because triggers placed in editor are global? - If I limit the trigger condition to "isplayer and ==s5" so ONLY s5 can activate the trigger then we get no message and nothing spawned. does adding the "isplayer and ==s5" make the trigger local? its no big deal but it would be nice to limit the radio channels 1 per player player s1 - Radio Alpha player s2 - Radio Bravo etc etc Like I said no big deal but would be nice Thanks in advance -
Multiplayer Dedicate Message
Doodle replied to Doodle's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Still no joy exactly with any of these - the above version on dedi displays messag ok but does not spawn items - any idea? thanks in advance