Jump to content

pazuzu

Member
  • Content Count

    306
  • Joined

  • Last visited

  • Medals

Everything posted by pazuzu

  1. Not sure what I did wrong but I got it working now. Thanks for the update.
  2. Yes I uploaded mod folder and added key to server. I also made new mod folder in my root arma 3 folder and selected it in launcher. When I try to join my server it says I don't have proper key. I'll try it again today and see if I may have forgotten something.
  3. Is this update working for you guys? I installed it but the key is not accepted when I try to join server. Thanks.
  4. pazuzu

    you need supercomputer to play this game

    Check out AI Facts & Myths Compilation List "AI cannot see you in dense fog - TRUE Fog will pretty much reduce / affect A.I. unit(s) enemy knowledge and visibility." They also can't see you in bushes, but if they spot you heading behind a bush they will fire into it. They can also shoot through walls of houses. Setting graphics on low settings doesn't help. Some settings work better on high and put the work on GPU instead of CPU. Best to find a guide on youtube or somewhere online to get your settings right.
  5. This is a DCON problem and a few of us have let him know on his steam page. He's looking into it. He's already said there will be updates.
  6. pazuzu

    Smarter tanks script

    Does this script still work?
  7. Can this be run Globally so it works for all players on a server?
  8. pazuzu

    [MP] co40 Domination!

    Thank you, xeno.
  9. pazuzu

    COOP 30 Carrier Ops Day 3

    No prob. I'm still hoping to play this mission 😉 Thanks for the support.
  10. pazuzu

    COOP 30 Carrier Ops Day 3

    Yes I resubscribed and also tried installing manually for single player and multi. I also ran it on my server. It starts ok but after a few minutes starts getting choppy then freezes and ends up crashing. Are a lot of AI being spawned? Thanks for the reply.
  11. Well, I must be doing something wrong so I'll just keep working on it. Thanks for the help.
  12. Ok, I tested again with this command line: 0 = [[veh1,veh2],["startpos","startpos"],10,true,false] spawn MGI_fnc_VehicleRespawn; I tested in editor and on my server. When I blow stationary Sentinel it respawns with same skin and loadout but the dynamic loadout script does not work. I get option in action menu but loadout menu does not work (shows no selection). Also, when I scroll through action menu the highlighted part disappears as though it's selecting an invisible option...if that makes sense...) If I fly the Sentinal and crash it, it respawns in original position but is traveling fast and just crashes at other side of carrier and keeps doing that. I'm going to try to find out what dynamic loadout script xeno uses (it may be his own), I know it's not GOM but maybe that will help to figure that part out.
  13. So for every vehicle added I have to add "startpos" to the string line to get every vehicle to respawn at start position? I'll test it again and let you know how it goes. Thanks.
  14. Thank you, pierremgi. I tested it on a Sentinel I have on carrier. The Sentinel respawned on deck but did not have same loadout, skin or option to use dynamic loadout addaction. I used the 2nd script with this command line: 0 = [[veh1,veh2],["startpos"],10,true,false] spawn MGI_fnc_VehicleRespawn; veh1 is a tank I have for defense at base and respawns perfectly with crew and same skin. veh2 is the Sentinel. startpos is the start position string I changed from "start" in 2 lines of the script: if (_position == 'startpos' or (_x getVariable ['emptyVeh',false])) exitWith {_pos = getPosASL _veh}; if (_position != "startpos" && !(_x getVariable ["emptyVeh",false])) then { Not sure how this command line is supposed to work: 0 = [vehicles,vehicles apply {"start"},10,true,false] spawn MGI_fnc_VehicleRespawn // here start position applies on each vehicle. I appreciate your hard work.
  15. Ahh, there's an issue with spawn height? I've gotten my UAV to spawn in original position on carrier deck but not at right height. I tested spawning on land and everything else seems to work fine like having same skin and loadout...
  16. Just realized I did what you suggested wrong. I changed the script line to: if (_position == 'startVeh' or (_x getVariable ['emptyVeh',false])) exitWith {_pos = getPos _veh}; "change my script (command line included) to read "startVeh" as string anytime you read "start". I'm a little confused about what you say here. Am I to change command line too? My command line now is like this: 0 = [[veh1],["veh1Start"],10,true,false] spawn MGI_fnc_VehicleRespawn; veh1Start is marker name placed at UAV position. Or should I be using startVeh? Thanks.
  17. Ok, I changed the script line to: if (_position == 'veh1Start' or (_x getVariable ['emptyVeh',false])) exitWith {_pos = getPos _veh}; And: 0 = [[veh1],["veh1Start"],10,true,false] spawn MGI_fnc_VehicleRespawn; I created a marker where the UAV is located on the carrier and it did respawn there but on the water. I tried changing the z value of the marker in the mission.sqm but it did not work. I googled the problem and found that I needed to define the marker in my init.sqf I tried these 2 examples: _veh1Start = getMarkerPos "respawn_"; "respawn_" setMarkerPosLocal [_veh1Start select 0, _veh1Start select 1, 160.01]; "veh1Start" setMarkerPosLocal [markerPos "veh1Start" select 0, markerPos "veh1Start" select 1, 160.01]; But the UAV is still spawning on the water. How do I get it to spawn at the proper height? Thank you.
  18. Thank you. This looks nice. I'll be testing it this weekend.
  19. Ok, I've been reading through the entire thread and I'm starting to figure it out. Been testing on a Greyhawk I have on the USS Freedom carrier. The Greyhawk respawns but at a Marker named "Start" which was placed by xeno. Last line of script: 0 = [[veh1],["start"],10,true,false] spawn MGI_fnc_VehicleRespawn; I don't think I can remove that Start marker so I'm wondering how to get it to spawn back on carrier... Thanks for the reply.
  20. Does this mod run as servermod? Will running this mod server side force players to run it client side in order to join my server? Also what is required to just use the script version? Thank you.
  21. I wanted to try the 2nd script but I have no clue how to run it. Do I have to create an sqf file for my mission folder? Or can I run it in the expression field in respawn module? Thank you.
  22. Will this script work for UAV such as the Greyhawk? I'm running a Domination server and am using the vehicle respawn module to respawn all UAV but when they respawn they no longer have dynamic loadout option. Thanks.
×