Jump to content

ollem

Member
  • Content Count

    453
  • Joined

  • Last visited

  • Medals

  • Medals

Everything posted by ollem

  1. Any feedback on v5.51? Does it work with ArmA 2?
  2. Does not work at all or not with HC? If it does not work at all could you please share some (error) log messages?
  3. I updated same link above with the skill accuracy fix (so still v 5.51): https://dl.dropboxusercontent.com/u/96469595/tpwcas5.51/tpwcas5.51.zip
  4. Okay - this is a new error I do recognize from the A3 version and I can use that same file to fix it
  5. Limited time - Quick fix - untested though..: https://dl.dropboxusercontent.com/u/96469595/tpwcas5.51/tpwcas5.51.zip Please let me know if this solves the error.
  6. Thanks for the feedback - I'll release fixed release asap/soon :p ---------- Post added at 13:25 ---------- Previous post was at 13:19 ---------- I'll have a look at HC again, though HC has issues in general. The logic I use to determine the HC target is based on 'player', but I think I noticed that HC in some cases doesn't have a local 'player' object anymore. Depends on the way the HC connects, and there things are not straightforward either. The above is applicable for ArmA3. do you have this issues with ArmA 2? (HC for A2 used to work. I'm afraid I'm no longer able to support A2 HC due to lack of A2 environment, but I'm open for suggestions)
  7. This behavior was reported exactly one year ago by a few people, but after that I never heard anyone complain about it. It's very likely linked to embedded TPWLOS indeed. I had a look in the previous TPWCAS thread and found my own post telling I finally had seen it and thought I had it fixed. However, we usually have it disabled when we played A2 and have moved to A3 now. So therefore I'm sorry but I'm afraid it will be a very low priority issue for me :-/ If you increase difficulty it seems to go away. If that is no option I recommend to use the 'original' TPWLOS for SP.
  8. I'm happy I didn't specify which weekend :p Here updated ArmA2 version which should work with latest A2 patch: tpwcas_arma2_v5.5.zip (please let me know if it works - I haven't had the chance to test it...)
  9. It's right the mod is running on both server and HC in case of tpwcas_mode = 3. (in case of tpwcas_mode = 2 it will run by default on all systems, including server and HC) It needs to run on both while in case of tpwcas_mode = 3 only AI local to the system will be monitored. So if AI si spawned at the HC, tpwcas needs to be active at the HC to be able to monitor those AI. In case of mod usage with tpwcas_mode = 3, please make sure the mod is active on both server and HC. About CBA: Most CBA calls are already replaced by BIS commands. For SP the 'CBA per frame Eventhandler' is still used, but I could consider to use the MP code for that too. I just noticed I missed one CBA call in the civilian 'run for it' code. I will change these for next release and then CBA is no longer a requirement at all.
  10. ollem

    Headless client enquiry

    HC currently is broken for me too - just like for others: http://feedback.arma3.com/view.php?id=14814
  11. TPWLOS has been embedded in TPWCAS for quite a while already. However, the embedded version is a modified version for Mulitplayer compatibiliy. For Single player if you like TPWLOS I do recommend to use TPWLOS from TPWMOD.
  12. I'll fix - wrap - sign the addon asap - too busy now but I aim to release before the weekend..
  13. Nice work! Might be useful for debugging: track.sqf A few weeks ago I also updated Kronzky's track script for A3 personal use. May help you - though I guess I better quickly ask him if he minds sharing this version here.. usage: Put the following in the init of single unit to track single unit: [this, "WP"] execVm format ["track.sqf"]; Put the following in the init of leader of group to track group leader and all group members individually: [this, "GROUP","WP"] execVm format ["track.sqf"]; (Group members will have a limited length white trace) Note: for group member tracking the script calls itself at line 157 - adjust path if not placed in root. (Should have made/used a function here...) Updated Kegetys' script with 'auto action focus' option: updated Kegtys' Spectator script
  14. Updated to version 3.5 Added Auto Action focus - see start post
  15. ollem

    UPSMON for arma3

    Sorry for the confusion: tpw used it in his mod and i use it in tpwcas. For upsmon it might be option to trigger crouched position by setting bahavior to aware in stead of setunitpos "middle"
  16. ollem

    UPSMON for arma3

    This behavior is related to forcing an AI unit in "MIDDLE" position and back to UP/AUTO again. For some unknown reason they get stuck in the raising/lowering sequence. tpw found a workaround we could use.
  17. I indeed removed the road check a while ago while we already checking measurements/heights, but we will add it back in asap :-) Thank you all for contibution to this thread. @Gagi: I will check your 'admin' check related to HC.
  18. Toggle option would be nice. Easier solution is a hybrid solution by reducing the satellite image saturation. To improve visibility of altitude lines etc modify in file "mcc_dialogs.hpp" line 368 from: maxSatelliteAlpha = 0.85; to: maxSatelliteAlpha = 0.35;
  19. I actually referred to my post Nov 15 2013, 17:21 #173 but I've updated start post as well now :-) ---------- Post added at 22:43 ---------- Previous post was at 22:39 ---------- Are you sure AI is actually spawned at HC? HC no longer worked properly for me in case HC automatically picks the first available player slot. forceHeadlessClient=1; doesn't work at all for me currently, so a bit hard to verify and/or chase potential bugs. If HC is working for you, when HC picks a player slot does it disappear for you or stays visible? In cases it disappears I think I noticed the funtion I used to determine if the system is an HC no longer works properly.
  20. Some more info about Bis default zone restriction module: http://community.bistudio.com/wiki/Zone_Restriction
  21. For temporary workaround please remove the mags entry completely from the .hpp file. I will check later today. -----update ----- I believe the error is caused by the space in between tpwcas_mags and []. So should be tpwcas_mags[] = { etc,etc... }; Updated .hpp in zip file link above
  22. Oops - missed that one - updated the link with fixed userconfig .hpp file as mentioned by Lordprimate fix is to replace [] by {} : tpwcas_mags = [ "B_9x21_Ball", "B_9x21_Ball_Tracer_Green", "B_556x45_dual" ]; tpwcas_mags[] = { "B_9x21_Ball", "B_9x21_Ball_Tracer_Green", "B_556x45_dual" };
  23. Hi Lordprimate - you didn't mess up - I did. I replaced the CBA based MP debug trigger by a BIS default BIS_fnc_MP call, but forgot to include quotes around the function name: To call the debug ball color change locally use: [_x, _cas_ball, 3] spawn tpwcas_fnc_client_debug; //yellow but for remote calls it should be [[_x, _cas_ball, 3],"tpwcas_fnc_client_debug",true,false] spawn BIS_fnc_MP; About the BIS_fnd_instring issue: maybe it helps to convert the found objects to strings explicitly by using (str _x) instead of (_x) ? ------update: did some test --------------- The code syntax seems to be okay.. are you sure the filter doesn't work? diag_log str [(nearestObjects [player, ['All'], 30])]; tpwcas_fnc_cover_filter = { if (["empty", (format ["%1", _this])] call BIS_fnc_inString) exitWith { diag_log str [_this]; false }; true }; _objects = [ (nearestObjects [player, ["All"], 30]), { _x call tpwcas_fnc_cover_filter } ] call BIS_fnc_conditionalSelect; diag_log "-- READY --"; diag_log str [_objects]; result in log: "[[b Platoon Lead:1 (Ollem2),2770c800# 1806216: empty.p3d,46e64100# 1806212: empty.p3d,2770f900# 1806214: empty.p3d,4dc45600# 1806218: empty.p3d,2770cf00# 1806217: empty.p3d,4dc44100# 1806219: empty.p3d,2770c100# 1806215: empty.p3d,46e64800# 1806211: empty.p3d,2770d600# 1806213: empty.p3d,Agent 0x58d92080,4db40100# 1806185: hbarrier_5_f.p3d,4db40800# 1806184: hbarrier_5_f.p3d,4db37900# 1806186: hbarrier_5_f.p3d]]" "[2770c800# 1806216: empty.p3d]" "[46e64100# 1806212: empty.p3d]" "[2770f900# 1806214: empty.p3d]" "[4dc45600# 1806218: empty.p3d]" "[2770cf00# 1806217: empty.p3d]" "[4dc44100# 1806219: empty.p3d]" "[2770c100# 1806215: empty.p3d]" "[46e64800# 1806211: empty.p3d]" "[2770d600# 1806213: empty.p3d]" "-- READY --" "[[b Platoon Lead:1 (Ollem2),Agent 0x58d92080,4db40100# 1806185: hbarrier_5_f.p3d,4db40800# 1806184: hbarrier_5_f.p3d,4db37900# 1806186: hbarrier_5_f.p3d]]" I ran the following command (so without overwriting the filter call - note: do this after restart :-) ): diag_log str [(nearestObjects [player, ['All'], 30])]; _objects = [ (nearestObjects [player, ["All"], 30]), { _x call tpwcas_fnc_cover_filter } ] call BIS_fnc_conditionalSelect; diag_log "-- READY --"; diag_log str [_objects]; "[[2770c800# 1806216: empty.p3d,46e64100# 1806212: empty.p3d,2770f900# 1806214: empty.p3d,4dc45600# 1806218: empty.p3d,4dc44100# 1806219: empty.p3d,25c42b00# 499148: cargo_house_v1_f.p3d,25c43900# 499071: u_addon_02_v1_f.p3d,25c5ab00# 499143: spp_transformer_f.p3d,25c59600# 499147: cargo_house_v1_f.p3d,25c43200# 499053: cargo_house_v1_f.p3d,25c3c100# 498948: shed_small_f.p3d]]" so the tpwcas_fnc_cover_filter function seems to work?
  24. Fixed debug issue + some minor bit and pieces: script only: tpwcas_A3_script_v5.3.zip Mod + script Packaged: tpwcas_A3_v5.3.zip HC seems to have an issue with other mods for me too (The method I used to trigger scripts/functions on HC does not seem to work anymore, i.E. the way to determine the HC target.) I had the issue with MCC and I checked and noticed VTS is using the same method Issue is related to spawning units on HC, not tpwcas - I still think that should be okay in combination with HC. needs some further investigation...
×