Jump to content

groshnak

Member
  • Content Count

    100
  • Joined

  • Last visited

  • Medals

Everything posted by groshnak

  1. Hey. I've been trying to figure this out for a week now with no luck. I want to use my custom 2D reticle for a scope, i dont care about the 3D model. So far i managed to get the scope from arma3 sample files in to the game and do the config files, but getting a custom reticle to work needs some magic with object builder and that program is not very intuitive to use. Could anyone point me to a tutorial or give pointers what exactly do i need to do in object builder to get my custom reticle file working?
  2. Hey! Could someone tell me how they are named? I need to hide some of them because they clutter the map so much when placed over towns. Thank you!
  3. I've been trying to figure out how to trigger something when player is being revealed by a flare in a night mission. AI vision does not seem to improve no matter how many flares i make them shoot. Flashlights and lamp posts and such do reveal the player like expected, but not flares.
  4. I'm having troble getting this "spawn BIS_fnc_typeText2" command to show globally - im running it from a script that is local to the player and i would like all other players to see it too. Using triggers for it is a bit clumsy, is there any way to use it from a script so that everyone would see it? I know i could use remoteExec ["hint"] and that works, but i like the way i can format typetext.
  5. Thanks guys, got it working. Sometimes simple things like this have just too many ways to do them to find out the one that works. In case someone is struggling with the same thing this is the complete command i used to make it work with some formatting in it: _any =[[["Time left:","align = 'center' size = '0.7' font='PuristaBold'"],[" ","align = 'center' size = '0.7'","#aaaaaa"],["","<br/>"],[str (timeleft),"align = 'center' size = '0.7'"]]] remoteExec ["BIS_fnc_typeText2"];
  6. Hey guys, a bit of a puzzle here. I'm trying to create a trigger that opens a one way gate. Tigger has following conditions: Player present inside trigger. No OpFor within trigger. Gate is alive. Gatekeeper is alive. Players vehicle is facing correct direction. I managed to get everything except the direction so far with this: Activated by player present - this and (alive gatekeeper) and (alive gate02) and (east countside thislist) == 0 However i'm having hard time implementing getdir in to the condition. I managed to get getdir working like this: if (direction (vehicle player) >200) then {hint "Going out"} if (direction (vehicle player) <200) then {hint "Going in"} But how would i make this into a trigger condition? Somehow with _x thislist i would assume..? It's for multiplayer so i can't use command "player" in the trigger. How do you refer to the unit that is inside the tigger instead of "player"?
  7. Cheers guys! For some reason getDir on of the trigger didnt work, but i made it check the direction of the gate. Works perfectly. One of many uses for this that i needed was a race track kind of thing, prevents players from accidentally entering the circuit going wrong way, and OpFor trackmarshall can prevent entering the track by standing near the gate so it wont open until he moves aside. And if players run over the guy operating the gate it also wont open anymore. This is what the trigger condition looks like if someone else needs something similiar: Player present, condition: this and (alive gatekeeper01) and (alive gate01) and (east countside thislist) == 0 and (count thisList > 0 && { getDir vehicle (thisList select 0) < (getDir gate01 + 60)%360 && getDir vehicle (thisList select 0) > (getDir gate01 - 30)%360})
  8. If i dont extend it to the other side the gate will close and crash with some long vehicles because driver is out of trigger area but rear of the truck is not. Now that i think of it, i guess you are correct about player working in MP, I'll try with that.
  9. groshnak

    UPSMON Updated to ArmaIII

    Thanks! Also to fix a recompile error at the beginning of mission one should remove "Recompile=1" lines from a bunch of files. Searching the UPSMon folder for "Recompile=1" will show a list of files that includes this line. Any other fixes floating around?
  10. Edit: Apparently my problem was defining eventhandlers in my units config, that breaks ace functionality. Any help on adding an eventhandler to my units config without removing the ones added earlier higher up in the tree?
  11. Not sure where to ask this but what gives units the ACE interaction menu? Some addon-units cant be healed or interacted in any way and while making my own unit addon i have the same problem. As if ACE doesn't recognize them as units? Is it because of inheritance or something else? I'm using MyUnit:SoldierGB:CAManBase:Man
  12. groshnak

    Suicide Bomber Script

    Would love to get this working but the bomber actually keeps running away from the target and never blows up even if i catch up to him?
  13. So given the very, very buggy and dangerous collision and falldamage detection (atleast on older maps) i tried to make en eventhandler that removes all environmental damage from players as long as they are not moving too fast. So basically this works fine: this addEventHandler ["HandleDamage", {if ((_this select 4) == "") then {0} else {_this select 2};}]; However, if i try to add second condition, i can't get it to work, no matter which format i try, for example: player addEventHandler ["HandleDamage", {if ((_this select 4) == "") and (speed player <10) then {0} else {_this select 2};}]; I've tried it with million different formats, no joy, the unit always dies regardless of speed. Also bonus question: ACE3 seems to make the unit faint even it takes no damage with this eventhandler, any way to disable this OR any way to disable the whole ACE medical system?
  14. Nevermind, most of my problems happened in SP editor, those errors don't happen in MP However the speaker isn't working with that command nor giving any errors. Anyone have an example mission with working speaker on a vehicle at mission start?
  15. I have a car named "radiocar" and i put this in the init of the car: [radiocar, "driver_radio_settings"] call TFAR_fnc_setLrSpeakers No joy, i have to get in to the car and put the radio on speakers manually.
  16. Well you obviously missed the whole post that i was quoting. I never said dayz players or such would have any need for this mod, realism unit etc.
  17. I don't think people bother with SP or playing with AI as team mates much if they are looking for even remotely realistic experience. ACRE/TFAR mod in a multiplayer game with 50-100 other guys from a serious realism unit is where it's at. And you can't hear a damn thing if theres a serious gunfight going on :p ** There are IR Strobes and IR Flares.
  18. How do i use this to turn a radio of an empty car on to a speaker? [(call TFAR_fnc_activeLrRadio) select 0, (call TFAR_fnc_activeLrRadio) select 1] call TFAR_fnc_setLrSpeakers;
  19. 1: How to make a condition for unit being unconscious? 2: How to bring unconscious unit back to normal? I need to bring unconscious unit back to life if it has not taken any damage (ACE knocks people unconscious even if they are scripted to not take any damage)
  20. Thanks! Had to alter a bit to get vertical speed, now the player wont die unless he falls from over 7-8 meters or so, should be enough to protect from buggy houses and falling off rocks etc. player addEventHandler ["HandleDamage", {if ((_this select 4) == "" && (velocity player select 2) > -7) then {0} else {_this select 2};}]; Adjust 7 with the desired negative speed to turn damage back on :bounce3: edit: apparantly the units are different here than what you get with hint format ["%1", _velocity], need to expirement with the number but otherwise works.
  21. groshnak

    ASOR Gear Selector

    Could you please add this type of thing for all the item slots so that mission makers can easily choose what rifles etc to give? ASORGS_explosives = []; But also add something like ASORGS_rifles = []; ASORGS_pistols = []; ASORGS_binoculars = []; ASORGS_hats = []; etc? Would also like an option to get weights in kg instead of oz :bounce3:
  22. groshnak

    Realistic repair script

    Cool script, but i think ACE3 removes repair trucks repairing ability so i guess thats why this script doesn't recognize that i'm near one? Would love to use this until they implement their own repair system. Any workarounds, maybe replace the "can repair" check with a classname check?
  23. Unable to disarm editor placed mines, only ones placed during missions. Intentional?
×