durobulo@gmail.com
Member-
Content Count
7 -
Joined
-
Last visited
-
Medals
Community Reputation
10 GoodAbout durobulo@gmail.com
-
Rank
Rookie
-
Building type
durobulo@gmail.com replied to durobulo@gmail.com's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I do not know whet he is :D but I am just working on some game mode (mission) inspired by battle royalle mod. Amount of loot, circle size etc is balanced to amount of players playing. But the loot spawn works differently - doesn't spawn in every object and can be really rare. Usually it takes 2km walk to get a weapon. It is common to loot system in Dayz SA. VIP players can set the amount of loot in round from low, normal to high. There are enemy NPC so you can play it as singleplayer as well. VIP players can double NPC volume or switch them off and play just versus other players. Now players demande to spawn the loot according to building type - so I needed some help here. Edit: also I am working on loot damage system, when hit in player means, some his loot will became ruined (unusable). -
Building type
durobulo@gmail.com replied to durobulo@gmail.com's topic in ARMA 3 - MISSION EDITING & SCRIPTING
This is just PERFECT - many thanks to both of you. -
Building type
durobulo@gmail.com replied to durobulo@gmail.com's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Yep its working. Only problem is that the results for example military bunker on Malden are "house", "non strategic" "housebase" "building". :D -
Building type
durobulo@gmail.com replied to durobulo@gmail.com's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Many thanks - thats it. I am not just sure about proper syntax. Would it be: _parentbuilding = [ str typeOf _nBuilding, true] call BIS_fnc_returnParents; Many thanks -
Building type
durobulo@gmail.com replied to durobulo@gmail.com's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Yep but I need this to be done by mission script itself. -
durobulo@gmail.com started following Building type
-
Hi, I would like to know, how to get information about building type - such as military, industrial, civilian etc. I can read the building class (name) - but is there any function that returns what type it is? Or is it coded in building name? _nBuilding = nearestBuilding player; hint str typeOf _nBuilding; thnx
-
Parachute and useractions - Cut Parachute?
durobulo@gmail.com replied to deltagamer's topic in ARMA 3 - ADDONS - CONFIGS & SCRIPTING
Try useraction f.e. User action 5 (have to bind it in controls) [] spawn { waitUntil {inputAction "User5" > 0}; hint "Cutting parachute"; // call your function to cut parachute here };