-
Content Count
2494 -
Joined
-
Last visited
-
Medals
Everything posted by sarogahtyp
-
https://community.bistudio.com/wiki/animationPhase
-
Here is a half hour tutorial which shows how to build a simple Singleplayer mission: There is nothing more needed to get started with mission building. Yes, it's not as easy as with Eden but it's not that hard as some people may think here. Also I saw the first map portet from Arma 3 in workshop. Its Stratis. I didn't view it upto now but for me its impressive to have it some days after launch. This confirms my assumption that we 'll have much more content in a few month.
- 90 replies
-
- 5
-
- arma4
- armareforger
-
(and 3 more)
Tagged with:
-
THIS!
- 90 replies
-
- 2
-
- arma4
- armareforger
-
(and 3 more)
Tagged with:
-
[solved] Hey guys, I've a problem using reforger world editor. If I select any object in world editor I should be able to see and edit its properties on the Object Properties window. I know that this was the case as I used the world editor yesterday. But now I can't see any of those object properties: any help for unhiding those properties would be much appreciated... Edit: Even if I start from scratch by beginning a new project I cant see those object properties... Edit: I solved it. The object properties window has 2 columns and the right one was just two small to be viewed.
- 90 replies
-
- 1
-
- arma4
- armareforger
-
(and 3 more)
Tagged with:
-
I want to prevent users from riding certain vehicles on my server
sarogahtyp replied to b2020b's topic in ARMA 3 - MISSION EDITING & SCRIPTING
@b2020b just to clarify this answer is as good as it is possible for ur question: My advice is to get much more specific. -
Im very happy to have it bought. Yes the content now is very little BUT the reforger tools tool is a beast and will the community make create so much high quality content never seen before. All the things which players want to have will get created. The creators are on the track right now. In 2 month i guess you ll have so much more content. Yeah im happy with it 🙂
-
I want to show this option only when riding in vehicle
sarogahtyp replied to b2020b's topic in ARMA 3 - MISSION EDITING & SCRIPTING
D3l3t3d my own nons3ns3... -
How to force eventHandler to run only once?
sarogahtyp replied to SlovakianLynx's topic in ARMA 3 - MISSION EDITING & SCRIPTING
this addEventHandler["hitPart", { private _target = (_this select 0 select 0); _target removeEventHandler [_thisEvent, _thisEventHandler]; [_target] execVM "trafeny.sqf"; }]; private _target = _this select 0; _target setDamage 0.8; _target setFuel 0; sleep 0.5; playSound "Ot013"; _target sideChat "FUCK, WE'VE BEEN HIT! WE ARE GOING DOWN!"; not tested. -
So I’ve put 3 AIs in my trunk..
sarogahtyp replied to VSTRONAVT's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Forbidding a specific action for a player with inGameUISetEventHandler: 1. Detect the engine based name of the desired action using this in debug console and then executing those action: inGameUISetEventHandler ["Action", "hint str (_this select 3); false"]; Now changing to a passenger seat will hint "MoveToCargo". This is the engine based name. 2. forbid that action to get executed: inGameUISetEventHandler ["Action", " if ( _this select 3 isEqualTo 'MoveToCargo' ) then { hint 'currently forbidden'; true } "]; 3. allow the action again: inGameUISetEventHandler ["Action", ""]; But always pay attention to those special notes in the wiki: -
on my end the Reforger Tools are crashing to desktop instantly after double clicking on CAH_BaseWorld.ent 😞
- 90 replies
-
- arma4
- armareforger
-
(and 3 more)
Tagged with:
-
Should not be a problem. I guess if you lower the viewdistance to bout 5k-6k then u should be able to play with highest video settings with 30-40 fps. I use the same but not mobile gtx 1660 super and my cpu has a similar boost frequency: https://versus.com/de/amd-ryzen-9-5950x-vs-intel-core-i7-9750h I get 50 fps with 7k viewdistance. The only problem could be to have your laptop cold enough for not getting your cpu throttle down the boost frequency... But you are always able to lower video settings to get better fps.
-
inidbi2 - Windows 10 Compatibility Question
sarogahtyp replied to pliskin124's topic in ARMA 3 - SERVERS & ADMINISTRATION
This guy had the same (or similar) problem and it was solved there: https://forums.bohemia.net/forums/topic/186131-inidbi2-save-and-load-data-to-the-server-or-your-local-computer-without-databases/?do=findComment&comment=3378252 -
Disabling Escape Button Options
sarogahtyp replied to pliskin124's topic in ARMA 3 - MISSION EDITING & SCRIPTING
idk what you think what you tested but this works flawlessly in debug console: [] spawn { interrupt_EH_index = [ missionNamespace, "OnGameInterrupt", { _this # 0 closeDisplay 2; } ] call BIS_fnc_addScriptedEventHandler; hint "menu allowed in 6"; sleep 2; hint "menu allowed in 4"; sleep 2; hint "menu alowed in 2"; sleep 2; [ missionNamespace, "OnGameInterrupt", interrupt_EH_index ] call BIS_fnc_removeScriptedEventHandler; hint "menu allowed now"; }; -
Disabling Escape Button Options
sarogahtyp replied to pliskin124's topic in ARMA 3 - MISSION EDITING & SCRIPTING
not tested now but I used something like this in the past to suppress pause menu: interrupt_EH_index = ( [ missionNamespace, "OnGameInterrupt", { _this # 0 closeDisplay 2; }] call BIS_fnc_addScriptedEventHandler ); here the code to allow it: [ missionNamespace, "OnGameInterrupt", interrupt_EH_index ] call BIS_fnc_removeScriptedEventHandler; -
Return position in sky relative to player cursor
sarogahtyp replied to sizraide's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Position format of eyepos player is ASL. You probably want to convert it to AGL using ASLToAGL. -
ESC > Options > Controls > Common > Use Selected Action > Middle Mouse Btn. > Delete > OK > OK > Continue
-
@Harzach provided the solution already. no need to use a mod here
-
Never Ending Story 2022!
-
Screenshots would be nice...
-
fired hit ratio for players
sarogahtyp replied to Tankbuster's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I think you should use Dammaged EH because it does'nt care bout locality and the projectile is returned as object as well. -
fired hit ratio for players
sarogahtyp replied to Tankbuster's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I guess there is another solution where an EH has to be added to units which are local only and not the shooter has to be local: The HandleDamage EH provides the same information and needs to get added on the machine where the victim is local only... Maybe this helps to get a simpler solution for you. Edit: Should also work using https://community.bistudio.com/wiki/Arma_3:_Event_Handlers#Dammaged as @Twiznak stated already. This one should work without worrying bout locality as it fires with global arguments if i read it correctly. -
fired hit ratio for players
sarogahtyp replied to Tankbuster's topic in ARMA 3 - MISSION EDITING & SCRIPTING
-2 would be the right target for a dedicated server environment -
Please, Could you at least just read your own topic carefully (not guessing anymore)? You quoted my answer to your fire mode problem and not that related to your current controls problem...