saltatormortis
Member-
Content Count
205 -
Joined
-
Last visited
-
Medals
-
Medals
Community Reputation
12 GoodAbout saltatormortis
-
Rank
Staff Sergeant
Profile Information
-
Gender
Not Telling
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Barrel not destroying after being blown up
saltatormortis replied to [evo] dan's topic in ARMA 3 - ADDONS - CONFIGS & SCRIPTING
you need to define the class DestructionEffects too find a good example inside the Mondkalb's Addon Tutorial: https://community.bistudio.com/wiki/Mondkalb's_Addon_Tutorial#Config.cpp -
mabe you need to simplify your road controll, in our video it looked like you use toomany subdivisions. compare the point density with the working roads
-
you mistranslated the clipboard in german its called Klemmbrett
-
Make ALL players/objects appear in zeus?
saltatormortis replied to psrkallez06's topic in ARMA 3 - EDEN EDITOR
sorry the solution wasnt as simple as ive written before this edit at this moment zeus cant place triggers or gamelogics you need to edit the mission with a gamemodule with this content: if (isServer) then { { _x addCuratorEditableObjects [allUnits,true]; _x addCuratorEditableObjects [vehicles,true]; } forEach allCurators; }; for a multi zeus setup you need to add this inside the gamelogic: if (isServer) then { [] spawn { while {true} do { { _x addCuratorEditableObjects [allUnits, true]; _x addCuratorEditableObjects [vehicles, true]; sleep 60; } forEach allCurators; }; }; }; -
Make ALL players/objects appear in zeus?
saltatormortis replied to psrkallez06's topic in ARMA 3 - EDEN EDITOR
addCuratorEditableObjects is the magic command you search.. CURATORmodule addCuratorEditableObjects [[OBJECTname],true]; ie: place trigger above preplaced unit withthis onAct: {Curator addCuratorEditableObjects [[_x],true]} forEach thislist; other scripted solutions are simply found inside this forum MFG -
My custom model is not receiving shadows / bright indoors.
saltatormortis replied to zooloo75's topic in ARMA 3 - MODELLING - (O2)
do you want your blood too shine? if not why you have a 1 inside the emmisive value? mfg ps havnt played myself with the emmisive values so its only a guess -
Custom Car issues (Bulletproof and other stuff)
saltatormortis replied to UrbanizedGamerz's topic in ARMA 3 - MODELLING - (O2)
did you have a peek inside other persons models? take for example the arma 3 Samples libary: http://store.steampowered.com/app/390500/ basicly some parts you need a EXACT copy of modelpart names(ie on weappons the muzzle need to be named zalesh) -
Arma 2: Operation Arrowhead Beta (Obsolete)
saltatormortis replied to bobbobbob's topic in ARMA 2 & OA - QUESTIONS & ANSWERS
the only way to remove the games is via steam support... but the hiding thing is faster and easyer -
Arma 2: Operation Arrowhead Beta (Obsolete)
saltatormortis replied to bobbobbob's topic in ARMA 2 & OA - QUESTIONS & ANSWERS
rightklick on game-> Set Categories >>> check"Hide this game in my library" -
(optional)i place a gamelogic with this code: nopop = true; lane01 = synchronizedObjects this; {_x setDamage 1; _x animate["terc", 1]} forEach lane01; to pop the lane up: (u can use named targets to pop a single one) lane01 setDamage 0; lane01 animate["terc", 0]; to pop a single random target Up = lane01 call BIS_fnc_selectRandom; Up setDamage 0; Up animate["terc", 0]; the rest get creative and write you own code
-
very simple Mondkalb has written a nice tut for this: https://community.bistudio.com/wiki/Mondkalb%27s_Addon_Tutorial ps the name of the doors should be a specific one. because of the "open door Module" atm i dont know the name but maybe you should look inside the arma 3 config viewer in the editor
-
i think you are searching for this command; curatorObj addCuratorEditableObjects [[objects],addCrew]
-
Have a model that needs rigging
saltatormortis replied to linuxmaster9's topic in ARMA 3 - MODELLING - (O2)
have you looked for the examplemodels? in your case the especially the model for the plane is interesting -
EndMission Trigger for all alive playable units
saltatormortis replied to Ion_Tychi's topic in ARMA 3 - MISSION EDITING & SCRIPTING
i think it should be this: (cant test atm) {_x in thisList} count playableUnits == {alive _x} count units playableUnits for editor testing you need to use switchableUnits (editor) -
my guess you are displaying the normalmap as a texture.. maybe take another look on the tutorial where he sets the normalmap up.. or your uv unrap has some overlays if this helps not maybe a screenshot/blend will do