Jump to content

Bacardi_

Member
  • Content Count

    3
  • Joined

  • Last visited

  • Medals

Community Reputation

0 Neutral

About Bacardi_

  • Rank
    Rookie
  1. Some things, I noticed when I got problem using this event with revive mode ("reviveMode = 1"). There is kind of "treshold" float value when player enter in incapacitation/unconscious state, it is near above 0.4165; So if you set return float value 0.410; or less to end of event code scope as return value, and mission have reviveMode enabled, player is hurt but invincible. When return float value 0.47; player start go incapacitation/unconscious state, and bleedout. But can still survive from vehicle crash alive. When return float value 0.5; player go incapacitation/unconscious state also in crashed vehicles, player unmount automatically. Around 0.7; and above player bleedout faster after vehicle crash. I have not tested this much. Of course value 1.0; and above destroy player. When you return value nil; event handle not change original damage, everything works normally.
  2. Example how you add location, into spectator locations tab. This is location in map Altis, under water. ["AddLocation", ["loc1", "Location Name", "Location decription", "\A3\Ui_f\data\GUI\Rsc\RscDisplayArsenal\gps_ca.paa", [[15010,6850,-115], [0,0,1], [-0.5,-0.5,-0.3], [0,false]]]] call BIS_fnc_EGSpectator; Adding location using alive player eye position and direction (not spectator view) ["AddLocation", ["loc2", "Location Name", "Location decription", "\A3\Ui_f\data\GUI\Rsc\RscDisplayArsenal\gps_ca.paa", [eyePos player, [0,0,1], eyeDirection player, [90,false]]]] call BIS_fnc_EGSpectator; Using last override parameter, you can rotate simple way view direction, it will always look straight horizontally. ... , [90,true]]]] call BIS_fnc_EGSpectator; When not enabling override and setting two previous array to zero, player view not change when teleport to the location. ... , [0,0,0], [0,0,0], [90,false]]]] call BIS_fnc_EGSpectator; If you call ["GetLocations"] call BIS_fnc_EGSpectator; you get list of all locations what have been added. - But notice that, it have one extra parameter at the end. I have not found any useful for that. You may include that parameter in your scripting but it doesn't do anything. [["loc3","Location Name","Location decription","\A3\Ui_f\data\GUI\Rsc\RscDisplayArsenal\gps_ca.paa",[[15010,6850,-115],[0,0,1],[-0.5,-0.5,-0.3],[0,false]],[0,false]]]
  3. I had similiar problem. But I also figured out. -autoInit https://community.bistudio.com/wiki/Arma_3_Startup_Parameters#Server_Options
×