Jump to content

Doodle

Member
  • Content Count

    212
  • Joined

  • Last visited

  • Medals

Everything posted by Doodle

  1. For anyone who is intrested this worked perfectly on MP dedi server - Thanks for your help! ---------- Post added at 05:16 PM ---------- Previous post was at 04:30 PM ---------- Does anyone know if this works on a dedi server?
  2. Thanks for your help - WIll test on dedi andreport back
  3. Sorry to bring up an old thread but did we get an answer to this. I am using Norrins SUPERB script on a dedi server -10 man Mulit player CO-OP mission. The only playable side is Bluefor and there are no Blufor ai. I would really like it if when a teammate is lying on the ground waiting to be revived he automatically pops smoke to help his team mates locate him. I can get it working in a test mission with a simple !alive check but when I use the revive script I cant. I think it may have something to do with when a player is waiting to be revived he is not actually "dead" as far as the game is concerned but I maybe completely wrong. And my scripting knowledge is very limited. I can see there is a part of the revive script that allows custon sqf NORRNCustomExec1 =""; // Exec1 occurs following being revived NORRNCustomExec2 =""; // Exec2 occurs when you team kill NORRNCustomExec3 =""; // Exec3 occurs when you spawn at base NORRNCustomExec4 =""; // Exec4 occurs when you try and spawn at base but it is still occupied NORRNCustomExec5 =""; // Must use variables: MAP_r_rejoin (false - first time, // true - rejoining the server, and // MAP_r_no_lives - number of lives if you rejoin server) But I cant see something for "waiting to be revived" Any help would be greatly appreciated D
  4. Try different settings in your ARMA Gfx settings - try redecing the HDR settings or something like that
  5. I am using tophes vehicle respawn script and Mikes IED script which enable vehicles to detect IEDs I am trying to get vehicles that respawn to be capable of detecting IEDs If I put both lines in the vehicle it works first time but as soon as vehicle respawns it loses its IED detecting capabilities iedid = [this] execVM "FOCK_ied\Fock_iedveh.sqf"; 0 = [this, 999, 900] execVM "scripts\vehicle.sqf"; I guess my question is how can I get the IED script to run within the vehicle respawn script? Thanks in advance
  6. I have searched high and low and I cant quite find what I am looking for so any help greatly appreciated. I am trying to have a trigger that is only activated by any blufor land vehicles The idea being that soldiers can walk through the trigger and wont set it off but land vehicles will (think pressure plate) I have got as far as specifying a particular vehicle to activate the trigger with this code {vehicle _x iskindof "BAF_Jackal2_GMG_W"} count thislist > 0; What I need is something like {vehicle _x iskindof "ANY BLUFOR VEHICLE"} count thislist > 0; Thanks in advance
  7. Doodle

    Esbekistan Map v.1.0 20x20

    Must congratulate you on such a nice looking map up there with maps such as Lingor and Isla Duala. One thing you may want to look at is the the road that goes North from Zregurat to Kamir. Some parts are very narrow with steep sides. The ai vehicles have difficulty navigating it often slide down the hill and are unable to get back up. Dont know how easy that would be to fix but it might be worth looking at and maybe give that road a slightly wider area either side to componsate for the erm..."ai driving abilities". Just a thought.
  8. Doodle

    [FOCK]ers IED

    Weird thing is the satchel charge in ACE is called "pipebomb" so there is no difference in name - tried with a few other munitions but same result - To use in an ACE mission I have to comment out the handledamage eventhandler.tp be able to blow the factoory. Also Am I correct in thinking that once the IED factory is destroyed then no more IED's are spawned? Thanks
  9. Doodle

    [FOCK]ers IED

    Mikie Boy: Just to let you know I commented out the //IEDFactory addEventHandler ["HandleDamage",{(_this select 4) == "PipeBomb"}]; and it now works perfect. Probably a better way of doing it but this cheap and dirty way solved my problem. Thanks
  10. Doodle

    [FOCK]ers IED

    Great script has really added to our missions All working great on dedi with the exception of one issue - we cant seem to destroy the IED factory when we find it. Should the factory be destroyable? Once the factory is destroyed does it stop producing IEDs or do we just have to kill the bomb maker to halt the production of IED's? Thanks in advance EDIT: Tested without ACE and it worked fine - Tested with ACE and the factory becomes indestructable. Any ideas?
  11. Doodle

    ACE for OA 1.13

    I wonder if anyone can help. I need to either a) Disable the ACE logistics (towing/cargo etc) completely or b)specify particular vehicles so that they can not tow other vehicles thanks in advance
  12. Where would I need to put this code to make it work keeping in mind it would be on a dedicated server - can I just paste it into the init.sqf? {if (({alive _x} count units _x) == 0) then {deleteGroup _x}} foreach allGroups; Cheers in advance
  13. I was wondering the same thing re spawning and limits. I have a script that spawns 2 groups of about 50 enemy. 25 per group This then moves the enemy into static weapon positions within a 3500m radius of the spawn points scattered throughout the map. The problem I am having is when I test from the editor everything works fine and the enemy sapwn then almost instanly are moved to the statics. But when I come to run it on the dedicated the enemy spawn but they dont move into the statics and just stand about in one big group. Setting myself to allowdamage false I can walk though them and it is only the squad leader who seems to be aware of me. I need the static positions to be populated at the start of the mission and looking through various init.sqf I can see several ways of running an sqf including server execVM "scriptname.sqf"; execVM "scriptname.sqf"; [] execVM "scriptname.sqf"; null=[] execVM "scriptname.sqf"; Anyone any idea what would be the correct way to execute this script from the init.sf so that it works on a dedicated server. Or is there a better way to do this - the important thing is it has to work on a dedicated server and needs to be JIP compatable. ie if someone joins after the mission has started it cant spawn the enmey again Thanks in advance
  14. try setting it to Vetran mode - I think that should remove the icon
  15. Dont know if this is much help but when I get a unit in the bottom left corner I usually find its something to do with my markers being either named wrongly or missing completely
  16. I know I have seen this somewhere but although I have searched I cannot find it again so I was wondering if anyone here can help me out. I have an area that switches when all OPFOR are killed (opfor & not present) in trigger options that works fine but what I need to happen is the trigger to activate if there are say 5 or less opfor present. This way the attacking force do not need to kill every enemy to succede the objective I am sure it is something like "if enemycount <5" Thanks for help in advance.
  17. It was really a NON ACE version I was after. Thanks though as this may come in handy at a later date
  18. stro = "IRStrobe" createVehicle [getpos this select 0,getpos this select 1,0];stro attachto [this,[0.12,0,1.56]] I tried this and it created the IR but when the player moved the IR did not. Any ideas what I am doing wrong? thanks in advance
  19. You could try something with these this EnableIRLasers true; (in a squad members init) group this EnableIRLasers true; (in a squad leaders init) and then maybe this setBehaviour aware; and/or this setCombatMode "red"; I am no expert though...and there is probably a better way of doing it but it works for me
  20. Not sure if this is of any use to you but I did a similar sort of thing here where the mines could be detected by vehicles only and could only be avoided if you were going slow enough. Basically a sort of vechile/minesweeper. Anyhow there maybe of something of help to you here http://forums.bistudio.com/showthread.php?t=107650
  21. Doodle

    Patch 1.55 Issues

    An issue we were having last night on our dedicated server was the player freezing up when they came out of looking at thier map. Anyone else got this one? Aslo seem to be getting "invisible" elements problem too - I noticed that even though under my cursor it said "SNIPER 5M" in front of me he was simply not showing up in game.
  22. probably not the best way of doing this but maybe something along the lines of Set the trigger to be a SWITCH trigger and in the onact put !alive helicopter; this way it will set the trigger off the moment the chopper is destroyed.
  23. Just to let anyone know who might be interested this all worked fine on the dedi server Thanks for your help! EDIT - Just to let peeps know after some testing this doesnt seem to work on a dedi server - It will spawn an ammobox the first time you deploy but not after that...any iseads anyone? Many thanks
  24. EDIT - Seems to work fine - one small problem is when you deploy the mobile respawn sometimes the ammobox gets spawned under the vehicle, a Jackal in this case. Not a game breaker by any means. Going to test on dei now..... Thanks for your help Thanks for the reply - Will go and try and let peeps know if this worked - Out of interest did you have this working on a dedi server?
×